:root {
  /* Colors - Premium Slate & Forest Green Theme */
  --bg-dark-1: #030a06;     /* Deep forest black */
  --bg-dark-2: #05160e;     /* Deep slate green */
  --bg-dark-3: #0b261b;     /* Muted dark forest */
  --bg-light-1: #f7faf6;    /* Crisp mint white */
  --bg-light-2: #eef3ef;    /* Soft grey-green */
  --bg-light-3: #ffffff;    /* Pure white */
  
  --primary: #10b981;       /* Vibrant emerald */
  --primary-hover: #34d399; /* Mint emerald */
  --primary-glow: rgba(16, 185, 129, 0.35);
  
  --text-light: #f1f5f3;    /* Light text on dark bg */
  --text-muted-light: #94b0a2;
  --text-dark: #0c1812;     /* Dark text on light bg */
  --text-muted-dark: #52675d;
  
  --line-light: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(12, 24, 18, 0.08);
  
  --gold: #f59e0b;          /* Star rating */
  
  /* Glassmorphism Configuration */
  --glass-bg-dark: rgba(5, 22, 14, 0.65);
  --glass-bg-light: rgba(255, 255, 255, 0.72);
  --glass-border-dark: rgba(255, 255, 255, 0.07);
  --glass-border-light: rgba(12, 24, 18, 0.05);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 34px rgba(6, 22, 14, 0.08);
  --shadow-lg: 0 24px 58px rgba(6, 22, 14, 0.14);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.45);
  
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --section-space: 90px;
  --eyebrow-title-gap: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--text-dark);
  background-color: var(--bg-light-1);
  font-family: var(--font-sans);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* Preloader with modern frosted glass look */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--text-light);
  background: radial-gradient(circle at 50% 50%, var(--bg-dark-2) 0%, var(--bg-dark-1) 100%);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), visibility 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  background: var(--glass-bg-dark);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px);
  animation: loaderFloat 2s ease-in-out infinite alternate;
}

.loader-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark-1) 100%);
  box-shadow: 0 0 30px var(--primary-glow);
}

.loader-mark span {
  width: 28px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  transform: skewX(-28deg);
}

.preloader strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 30%, var(--text-muted-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader small {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.loader-line {
  position: relative;
  width: 160px;
  height: 4px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-hover));
  animation: loaderLine 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.section-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Floating animated background blobs */
.bg-mesh-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
  animation: blobFloat 30s ease-in-out infinite alternate;
}

.bg-blob-1 {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
}

.bg-blob-2 {
  bottom: -10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(6, 95, 70, 0.3) 0%, transparent 75%);
  animation-delay: -7s;
}

.bg-blob-3 {
  top: 30%;
  left: 25%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18) 0%, transparent 68%);
  animation-delay: -15s;
}

/* Sticky Header with Premium Glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(3, 10, 6, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.site-header.is-scrolled {
  background: rgba(3, 10, 6, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)), var(--bg-dark-1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.brand-mark span {
  width: 22px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  transform: skewX(-28deg);
}

.brand-copy strong {
  display: block;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy small {
  display: block;
  color: var(--text-muted-light);
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
}

.nav-links a {
  color: var(--text-muted-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.primary-button,
.secondary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: var(--transition-smooth);
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 60%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.header-cta {
  height: 44px;
  padding: 0 20px;
  font-size: 0.88rem;
}

.primary-button {
  padding: 16px 28px;
  font-size: 1rem;
}

.secondary-button {
  padding: 16px 24px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.light-button {
  padding: 16px 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.header-cta:hover,
.primary-button:hover,
.light-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
  filter: brightness(1.05);
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.header-cta svg,
.primary-button svg,
.secondary-button svg,
.light-button svg,
.hero-note svg,
.trust-grid svg,
.service-card svg,
.pain-list svg,
.check-list svg,
.local-meta svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.25;
}

/* Premium Dark Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
  color: var(--text-light);
  background-color: var(--bg-dark-1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 14px;
  color: var(--primary-hover);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-dot,
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
  animation: pulse 2s infinite;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, var(--text-muted-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted-light);
  font-size: 0.85rem;
  margin-bottom: 36px;
}

.hero-note svg {
  color: var(--primary-hover);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-strip article {
  padding: 16px;
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.proof-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.05);
}

.proof-strip strong,
.proof-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}

.proof-strip span,
.proof-metrics span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Before/After Image Slider */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--glass-border-dark);
  user-select: none;
  cursor: ew-resize;
  aspect-ratio: 4 / 3;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.img-before {
  z-index: 10;
}

.img-after {
  z-index: 20;
  overflow: hidden;
  /* style="width: 50%" dynamic clip from JS */
}

/* Image label tags */
.image-label {
  position: absolute;
  bottom: 16px;
  z-index: 25;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.label-before {
  left: 16px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.label-after {
  right: 16px;
  color: var(--primary-hover);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Slider Handle Bar */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 30;
  width: 4px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--primary);
  display: grid;
  place-items: center;
  color: var(--bg-dark-1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.before-after-slider:hover .handle-button {
  transform: scale(1.1);
}

.handle-button svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Glassmorphic Plates Overlayed on Slider for Depth */
.brand-plate,
.rating-badge {
  position: absolute;
  z-index: 35;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-dark);
  pointer-events: none;
}

.brand-plate {
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-plate strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-light);
}

.brand-plate small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted-light);
}

.rating-badge {
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
}

.rating-badge svg {
  color: var(--gold);
  fill: var(--gold);
  width: 16px;
  height: 16px;
}

.rating-badge strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.rating-badge span {
  font-size: 0.72rem;
  color: var(--text-muted-light);
  font-weight: 600;
}

/* Trust Bar (Dark Accent Grid) */
.trust-bar {
  background-color: var(--bg-dark-2);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 24px 0;
  color: var(--text-muted-light);
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.trust-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.trust-grid svg {
  color: var(--primary-hover);
  flex: 0 0 auto;
}

/* Sections Global Styling */
.conversion-section,
.services-panel,
.proof-section,
.process-section,
.local-section,
.faq-section {
  padding: 90px 0;
  position: relative;
  z-index: 5;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 50px;
}

.section-heading.center {
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin-inline: auto;
}

.section-heading h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  max-width: 650px;
}

/* Keep every section label comfortably separated from its title. */
.eyebrow + h2 {
  margin-top: var(--eyebrow-title-gap);
}

.problem-grid .eyebrow {
  margin-bottom: 0;
}

.section-heading h2 + p {
  margin-top: 12px;
}

.eyebrow {
  margin-bottom: 0;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.eyebrow.light {
  color: var(--primary-hover);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Flow Grid / How It Works */
.flow-grid {
  display: grid;
  gap: 24px;
}

.flow-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.flow-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-glow);
}

.flow-grid article .step-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.06);
  line-height: 1;
}

.flow-grid article svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.06);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flow-grid h3,
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.flow-grid p,
.service-card p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services Section */
.services-panel {
  background-color: var(--bg-light-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.service-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-glow);
}

.service-card > svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.06);
  border-radius: var(--radius-md);
}

.service-feature {
  padding: 0;
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-feature:hover img {
  transform: scale(1.05);
}

.service-feature div {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-feature div svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.06);
  border-radius: var(--radius-md);
}

.service-cta {
  color: var(--text-light);
  background: radial-gradient(circle at 100% 0%, var(--bg-dark-3) 0%, var(--bg-dark-1) 100%);
  border: 1px solid var(--glass-border-dark);
}

.service-cta h3,
.service-cta p {
  color: var(--text-light);
}

.service-cta p {
  color: var(--text-muted-light);
}

.service-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-cta a svg {
  transition: transform 0.2s ease;
}

.service-cta a:hover svg {
  transform: translate(3px, -3px);
}

/* Specialty services */
.specialty-services {
  display: grid;
  gap: 32px;
}

.specialty-services > .section-heading {
  margin-bottom: 0;
}

.specialty-card {
  display: grid;
  overflow: hidden;
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.specialty-media {
  display: block;
  min-height: 340px;
  overflow: hidden;
  background: var(--bg-light-2);
}

.specialty-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.specialty-media:hover img,
.specialty-media:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.specialty-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.specialty-copy h3 {
  margin-top: var(--eyebrow-title-gap);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.specialty-copy > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.specialty-benefits {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.specialty-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.specialty-benefits svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--primary);
}

.specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 28px;
  color: var(--primary-hover);
  font-size: 0.94rem;
  font-weight: 800;
}

.specialty-link svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms ease;
}

.specialty-link:hover svg {
  transform: translate(3px, -3px);
}

@media (min-width: 900px) {
  .specialty-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 580px;
  }

  .specialty-card-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .specialty-card-reverse .specialty-media {
    order: 2;
  }

  .specialty-copy {
    padding: clamp(44px, 5vw, 72px);
  }
}

@media (max-width: 899px) {
  .specialty-media,
  .specialty-media img {
    min-height: 320px;
    max-height: 460px;
  }
}

@media (max-width: 520px) {
  .specialty-copy {
    padding: 28px 24px 32px;
  }

  .specialty-media,
  .specialty-media img {
    min-height: 300px;
    max-height: 380px;
  }
}

/* Why Us / Dores Reais (Premium Dark Band) */
.dark-band {
  position: relative;
  padding: 90px 0;
  color: var(--text-light);
  background-color: var(--bg-dark-1);
  overflow: hidden;
}

.problem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}

.problem-grid h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.problem-grid p {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pain-list {
  display: grid;
  gap: 16px;
}

.pain-list article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.pain-list article:hover {
  transform: translateX(6px);
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.05);
}

.pain-list svg {
  color: var(--primary-hover);
  flex-shrink: 0;
}

.pain-list span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
}

/* Proof Section */
.proof-section {
  padding-bottom: 48px;
}

.proof-card {
  display: grid;
  gap: 32px;
  padding: 40px;
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.proof-card h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.proof-card p {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
}

.proof-metrics {
  display: grid;
  gap: 16px;
}

.reviews-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.proof-metrics article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--bg-light-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.review-stars {
  margin-bottom: 10px;
  color: #f5a623;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.proof-metrics small {
  margin-top: 16px;
  color: var(--primary-hover);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 40, 27, 0.2);
  cursor: pointer;
  transition: width 300ms ease, background-color 300ms ease;
}

.reviews-dot.is-active {
  width: 24px;
  background: var(--primary);
}

.proof-metrics article:hover {
  transform: translateY(-4px);
  border-color: var(--primary-glow);
}

.proof-metrics strong {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.proof-metrics span {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.reviews-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-top: 24px;
  padding: 14px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.22);
  font-size: 0.9rem;
  font-weight: 800;
}

.reviews-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.32);
}

.reviews-button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .reviews-carousel .proof-metrics {
    display: grid;
  }

  .reviews-carousel .review-card {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
    pointer-events: none;
    transition: opacity 650ms ease, transform 650ms ease, visibility 650ms;
  }

  .reviews-carousel .review-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
}

@media (min-width: 768px) {
  .reviews-carousel .proof-metrics {
    display: flex;
    gap: 16px;
    transition: opacity 420ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reviews-carousel .review-card {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .reviews-carousel.is-changing .proof-metrics {
    opacity: 0.15;
    transform: translateX(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel .proof-metrics,
  .reviews-carousel .review-card,
  .reviews-dot {
    transition: none !important;
  }
}

/* Process Section */
.process-section {
  display: grid;
  gap: 40px;
}

.process-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-dark);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.check-list li:hover {
  transform: translateY(-2px);
  border-color: var(--primary-glow);
}

.check-list svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
}

.check-list span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Local Section Map */
.local-section {
  padding-top: 48px;
  padding-bottom: 90px;
}

.local-card {
  display: grid;
  gap: 32px;
  padding: 32px;
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.local-card h2 {
  margin-bottom: 16px;
}

.local-card .eyebrow {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.local-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.local-meta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.local-meta svg {
  color: var(--primary);
}

.local-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Instagram carousel */
.instagram-band {
  padding: 90px 0;
  color: var(--text-light);
  background: radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.16), transparent 32%), var(--bg-dark-2);
  overflow: hidden;
}

.instagram-inner {
  display: grid;
  gap: 36px;
}

.instagram-heading {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.instagram-heading h2 {
  max-width: 720px;
  margin: 16px 0;
  color: var(--text-light);
  font-size: 2.2rem;
}

.instagram-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--text-muted-light);
  font-size: 1.02rem;
}

.instagram-actions,
.carousel-controls {
  display: flex;
  align-items: center;
}

.instagram-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.carousel-controls {
  gap: 8px;
}

.carousel-button,
.instagram-profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid var(--glass-border-dark);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.carousel-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.carousel-button:hover,
.instagram-profile-button:hover {
  color: #ffffff;
  border-color: rgba(88, 211, 160, 0.55);
  background: rgba(16, 185, 129, 0.18);
}

.carousel-button svg,
.instagram-profile-button svg,
.instagram-post span svg {
  width: 18px;
  height: 18px;
}

.instagram-profile-button {
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
}

.instagram-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 26%);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(88, 211, 160, 0.55) rgba(255, 255, 255, 0.06);
}

.instagram-post {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  background: var(--bg-dark-1);
  box-shadow: var(--shadow-dark);
  scroll-snap-align: start;
}

.instagram-post::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(3, 10, 6, 0.9));
  pointer-events: none;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-post span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.instagram-post:hover {
  border-color: rgba(88, 211, 160, 0.55);
  transform: translateY(-4px);
}

.instagram-post:hover img {
  transform: scale(1.035);
}

/* FAQ Accordion Section */
.faq-section {
  padding-top: 90px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list details {
  background: var(--bg-light-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-list details[open] {
  border-color: var(--primary-glow);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Final CTA Glow Banner */
.final-cta {
  position: relative;
  padding: 80px 0;
  color: var(--text-light);
  background-color: var(--bg-dark-1);
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
}

.final-cta h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  max-width: 600px;
}

/* Canonical section rhythm: every label and module follows the same scale. */
.eyebrow,
p.eyebrow,
.section-heading .eyebrow,
.problem-grid .eyebrow,
.local-card .eyebrow,
.instagram-heading .eyebrow,
.final-cta .eyebrow {
  margin: 0;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.conversion-section,
.services-panel,
.specialty-services,
.dark-band,
.proof-section,
.local-section,
.instagram-band,
.faq-section,
.final-cta {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* The two adjacent white cards share one gap instead of stacking two paddings. */
.proof-section {
  padding-bottom: 32px;
}

.local-section {
  padding-top: 0;
}

/* Footer Section */
.site-footer {
  padding: 32px 0;
  color: var(--text-muted-light);
  background: var(--bg-dark-1);
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: grid;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-inner a {
  color: var(--text-light);
  font-weight: 700;
}

.footer-inner a:hover {
  color: var(--primary-hover);
}

/* Floating WhatsApp Pulsing Button */
.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary), #059669);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  font-weight: 800;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: pulseButton 2s infinite;
}

/* Smooth Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for scroll reveals */
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="400"] { transition-delay: 400ms; }

/* Keyframes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.6), 0 0 0 10px rgba(16, 185, 129, 0.15);
  }
  100% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes loaderFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(4vw, 6vh) scale(1.15) rotate(180deg);
  }
  100% {
    transform: translate(-3vw, -4vh) scale(0.9) rotate(360deg);
  }
}

/* Responsiveness (Media Queries) */
@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
  
  .proof-strip {
    gap: 16px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  
  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pain-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .proof-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-inner {
    grid-template-columns: 1fr max-content;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0 80px;
  }
  
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: 50px;
  }
  
  .hero h1 {
    font-size: 3.4rem;
  }
  
  .hero-text {
    font-size: 1.15rem;
  }
  
  .before-after-slider {
    height: 380px;
  }
  
  .section-heading h2 {
    font-size: 2.8rem;
  }
  
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-feature {
    grid-row: span 2;
  }
  
  .service-feature img {
    height: 300px;
  }
  
  .problem-grid,
  .proof-card,
  .process-section,
  .local-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }
  
  .final-cta-inner {
    grid-template-columns: 1fr max-content;
    align-items: center;
    gap: 50px;
  }

  .instagram-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .instagram-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 20px 48px;
  }
  
  .site-header.is-scrolled {
    padding: 14px 48px;
  }
  
  .nav-links {
    display: flex;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .before-after-slider {
    height: 440px;
  }
}

@media (max-width: 575px) {
  :root {
    --section-space: 64px;
  }

  .instagram-carousel {
    grid-auto-columns: 78%;
  }

  .instagram-heading h2 {
    font-size: 1.8rem;
  }

  .site-header {
    padding: 12px 16px;
  }
  
  .brand-copy strong {
    font-size: 1rem;
  }
  
  .header-cta {
    min-width: 44px;
    padding: 0;
    width: 44px;
    justify-content: center;
  }
  
  .header-cta span {
    display: none;
  }
  
  .header-cta svg {
    margin: 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .before-after-slider {
    height: 260px;
  }
  
  .brand-plate {
    left: 8px;
    top: 8px;
    padding: 6px 10px;
  }
  
  .rating-badge {
    right: 8px;
    top: 8px;
    padding: 6px 10px;
  }
  
  .image-label {
    bottom: 8px;
  }
  
  .label-before { left: 8px; }
  .label-after { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  [data-reveal],
  .bg-blob,
  .preloader-inner {
    opacity: 1 !important;
    transform: none !important;
  }
}
