/* ==========================================================================
   BLOOM CONSULTING — BRAND PALETTE (v2: Luxury Navy + Bold Gold)
   Derived from the real Bloom Consulting logo mark (navy → teal gradient,
   warm gold accent petal), pushed toward a private-banking / luxury-advisory
   register: near-black ink navy + gold as the true secondary color (not a
   sparing accent), with blue demoted to a minor tertiary link/UI color.

   --color-primary        #0A1B2E   near-black ink navy — headlines, header/footer bg
   --color-primary-dark   #050F1A   darkest ink         — footer base, deepest surfaces
   --color-navy-mid       #16324A   mid navy            — secondary surfaces on dark
   --color-gold           #C9962E   bold gold           — CTAs, dividers, numerals, icon fills
   --color-gold-light     #E8C778   light gold          — gradient partner for gold
   --color-gold-deep      #A87A1E   deep gold           — hover states, large/bold gold text only
   --color-accent         #1876A3   confident blue      — minor: links, focus rings, small UI
   --color-accent-bright  #2AA8DE   vivid sky-blue       — decorative only: tiny icon fills
   --color-bg             #FAF7F0   warm ivory           — page background
   --color-surface        #FFFFFF   card / surface background
   --color-ink            #1E1B16   body text (warm near-black)
   --color-ink-muted      #6B6255   secondary text (5.6:1 on ivory)
   --color-border         #E8E1D3   warm hairlines, dividers
   ========================================================================== */

* , *::before, *::after { box-sizing: border-box; }

:root {
  --color-primary: #0A1B2E;
  --color-primary-dark: #050F1A;
  --color-navy-mid: #16324A;
  --color-gold: #C9962E;
  --color-gold-light: #E8C778;
  --color-gold-deep: #A87A1E;
  --color-accent: #1876A3;
  --color-accent-bright: #2AA8DE;
  --color-bg: #FAF7F0;
  --color-surface: #FFFFFF;
  --color-ink: #1E1B16;
  --color-ink-muted: #6B6255;
  --color-border: #E8E1D3;

  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 6px -2px rgba(10, 27, 46, 0.14), 0 1px 2px rgba(10, 27, 46, 0.09);
  --shadow-md: 0 12px 24px -8px rgba(10, 27, 46, 0.20), 0 4px 8px -2px rgba(10, 27, 46, 0.12);
  --shadow-lg: 0 24px 48px -12px rgba(10, 27, 46, 0.32), 0 8px 16px -4px rgba(10, 27, 46, 0.16);
  --shadow-gold: 0 10px 24px -8px rgba(201, 150, 46, 0.45);

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * , *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2.5px solid var(--color-accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding: var(--space-9) 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 0 var(--space-3);
}

.eyebrow.center { text-align: center; }

.section-headline {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 42rem;
  padding-bottom: var(--space-5);
}
.section-headline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.section-headline.center { max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; }
.section-headline.center::after { left: 50%; transform: translateX(-50%); }

.section-lead {
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
  max-width: 38rem;
  margin: var(--space-4) 0 0;
}

.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.text-accent { color: var(--color-gold-deep); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring), background-color 0.25s var(--ease-spring);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(201, 150, 46, 0.55), var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-gold); }

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--color-primary-dark);
  color: #fff;
  text-align: center;
  padding: 0.55rem var(--space-4);
}
.announcement-bar p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.logo-link { flex-shrink: 0; display: flex; }
.logo-img { height: 36px; width: auto; }

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-left: var(--space-5);
  flex: 1;
}
.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  position: relative;
  padding: var(--space-2) 0;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.25s var(--ease-spring);
}
.site-nav a:hover { color: var(--color-primary); }
.site-nav a:hover::after { width: 100%; }

.header-cta { margin-left: auto; flex-shrink: 0; padding: 0.7rem 1.35rem; font-size: 0.875rem; }
.cta-text-short { display: inline; }
.cta-text-full { display: none; }
@media (min-width: 480px) {
  .cta-text-short { display: none; }
  .cta-text-full { display: inline; }
}

.nav-toggle {
  margin-left: auto;
  background: none;
  border: none;
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-spring), opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-5);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: var(--space-4);
    margin-left: 0;
  }
  .site-nav.is-open { display: flex; }
  .header-cta { order: 3; }
}
@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-8) 0 var(--space-9);
  background: var(--color-bg);
}

/* Dubai cityscape silhouette — brand asset, sits behind the hero copy.
   The artwork's buildings sit at the BOTTOM of its own canvas (ground level,
   empty sky above), so the box is anchored to the top of the hero with the
   artwork bottom-aligned inside it (preserveAspectRatio Y-Max) — that's what
   actually puts buildings in view instead of empty sky. The box height is a
   fixed value approximating half the hero's real content height (not vh,
   which is viewport-relative and drifts out of sync with the section).
   The scrim fades all the way to a fully solid background color by the very
   bottom of the box, so the box edge never shows as a hard seam. */
.hero-cityscape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  max-height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-cityscape svg { width: 100%; height: 100%; display: block; }
.hero-cityscape path { opacity: 0.2; }
.cityscape-stop-start { stop-color: var(--color-gold-light); }
.cityscape-stop-end { stop-color: var(--color-gold); }
.hero-cityscape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(250, 247, 240, 0.45) 55%, var(--color-bg) 92%, var(--color-bg) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

.hero-headline {
  font-size: clamp(2.1rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-4);
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  max-width: 34rem;
  margin: 0 0 var(--space-5);
}

.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-6);
}
.trust-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary);
}
.icon-check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-gold-deep);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(201, 150, 46, 0.14);
  border-radius: 50%;
  padding: 2px;
}

.hero-cta-row {
  margin-bottom: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
}

/* Mini trust bar — small avatar cluster + rating, sits beside the hero CTA */
.mini-trust-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.mini-trust-avatars { display: flex; }
.mini-trust-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-surface);
  box-shadow: var(--shadow-sm);
  margin-left: -10px;
}
.mini-trust-avatars img:first-child { margin-left: 0; }
.mini-trust-text { display: flex; flex-direction: column; gap: 2px; }
.mini-trust-stars { display: flex; gap: 1px; }
.mini-trust-stars svg { width: 13px; height: 13px; fill: var(--color-gold); }
.mini-trust-stars svg.star-half { opacity: 0.35; }
.mini-trust-text span { font-size: 0.8125rem; color: var(--color-ink-muted); line-height: 1.3; }
.mini-trust-text span strong { color: var(--color-primary); font-family: var(--font-display); font-size: 0.9375rem; }

.play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
  border: 4px solid rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-spring);
}
.play-button svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.play-button:hover { transform: translate(-50%, -50%) scale(1.08); }

.stars { display: flex; gap: 4px; }
.stars svg { width: 18px; height: 18px; fill: var(--color-gold); }

/* Hero lead card */
.hero-lead-card { position: relative; z-index: 1; }
.lead-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: sticky;
  top: 100px;
}
.lead-card h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}
.lead-card > p {
  color: var(--color-ink-muted);
  font-size: 0.9375rem;
  margin: 0 0 var(--space-5);
}

.lead-form .field { margin-bottom: var(--space-4); }
.lead-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.lead-form input, .lead-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-form input:hover, .lead-form select:hover { border-color: var(--color-accent-bright); }
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(24, 118, 163, 0.15);
}
.form-microcopy {
  font-size: 0.75rem;
  color: var(--color-ink-muted);
  text-align: center;
  margin: var(--space-3) 0 0;
}

.lead-form-success { text-align: center; padding: var(--space-4) 0; }
.lead-form-success svg {
  width: 52px; height: 52px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto var(--space-4);
  display: block;
}
.lead-form-success h3 { font-size: 1.125rem; margin-bottom: var(--space-2); }
.lead-form-success p { color: var(--color-ink-muted); font-size: 0.9375rem; }

/* ---------- Problem section ---------- */
.problem-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .problem-grid { grid-template-columns: repeat(4, 1fr); } }

.problem-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(232,199,120,0.22), rgba(201,150,46,0.12));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.problem-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--color-gold-deep);
  stroke-width: 1.8;
}
.problem-card h3 { font-size: 1.125rem; margin-bottom: var(--space-2); }
.problem-card p { color: var(--color-ink-muted); font-size: 0.9375rem; margin: 0; }

/* ---------- How it works ---------- */
.how-it-works { background: var(--color-surface); }
.how-it-works-grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 950px) { .how-it-works-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }

.steps-photo-card { position: relative; }
.steps-photo-card .video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.steps-photo-card .video-thumb,
.steps-photo-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.steps-overlay-card {
  position: relative;
  margin: -60px var(--space-5) 0;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
@media (min-width: 550px) {
  .steps-overlay-card { position: absolute; bottom: var(--space-5); left: var(--space-5); right: var(--space-5); margin: 0; }
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}
.steps-list strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--color-primary);
  display: block;
}
.steps-list p { margin: 2px 0 0; font-size: 0.8125rem; color: var(--color-ink-muted); }
.step-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.dot-1 { background: var(--color-accent-bright); }
.dot-2 { background: var(--color-accent); }
.dot-3 { background: var(--color-gold); }
.dot-4 { background: var(--color-primary); }

.stats-column { display: flex; flex-direction: column; gap: var(--space-3); }
.stat-circle {
  width: 176px; height: 176px;
  border-radius: 50%;
  border: 2.5px solid var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 0 auto;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,150,46,0.12), transparent 60%),
    repeating-linear-gradient(45deg, rgba(201,150,46,0.06) 0 2px, transparent 2px 14px);
}
.stat-circle-inner { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.stat-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  max-width: 20rem;
  margin: 0 auto var(--space-5);
}
.remote-note {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  margin-top: var(--space-3);
  border-left: 3px solid var(--color-gold);
}

/* ---------- Calculator ---------- */
.calculator-section { background: var(--color-bg); }
.calculator {
  margin-top: var(--space-8);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
@media (min-width: 900px) { .calculator { grid-template-columns: 1.3fr 1fr; } }

.calculator-inputs { padding: var(--space-7); display: flex; flex-direction: column; gap: var(--space-6); }
.calc-group-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.pill-toggle { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  transition: all 0.25s var(--ease-spring);
}
.pill:hover { border-color: var(--color-gold); color: var(--color-primary); }
.pill.active {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: transparent;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.stepper { display: flex; align-items: center; gap: var(--space-4); }
.stepper-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: all 0.2s ease;
}
.stepper-btn:hover { border-color: var(--color-gold); color: var(--color-gold-deep); }
#visaCount { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; min-width: 2ch; text-align: center; }

.calc-checks { display: flex; flex-direction: column; gap: var(--space-3); }
.checkbox-row {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-ink);
  cursor: pointer;
}
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--color-accent); }

.calculator-result {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-3);
}
.result-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
}
.result-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}
.result-dash { margin: 0 0.35em; opacity: 0.5; }
.result-disclaimer {
  display: block;
  width: 100%;
  max-width: 22rem;
  font-size: 0.75rem;
  opacity: 0.75;
  margin-bottom: var(--space-3);
}
.result-disclaimer strong { color: var(--color-gold-light); }

/* ---------- Why us ---------- */
.why-us-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .why-us-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}
.why-card h3 { font-size: 1.25rem; margin-bottom: var(--space-3); }
.why-card p { color: var(--color-ink-muted); margin: 0; }

/* ---------- Testimonials grid ---------- */
.testimonials { background: var(--color-surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-photo { position: relative; width: 64px; margin-bottom: var(--space-4); }
.testimonial-photo img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.play-button-sm {
  width: 30px; height: 30px;
  top: 50%; left: 50%;
  border-width: 2px;
}
.play-button-sm svg { width: 12px; height: 12px; margin-left: 1px; }
.testimonial-quote {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--space-3);
}
.testimonial-card > p:not(.testimonial-name) {
  color: var(--color-ink-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-4);
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-2);
}
.mini-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  color: var(--color-ink-muted);
}
.mini-rating span { color: var(--color-gold); letter-spacing: 1px; }

/* ---------- Case study ---------- */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
@media (min-width: 900px) { .case-study-card { grid-template-columns: 0.85fr 1.15fr; } }
.case-study-media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.case-study-content { padding: var(--space-7) var(--space-6) var(--space-7) 0; }
@media (max-width: 899px) { .case-study-content { padding: 0 var(--space-6) var(--space-6); } }
.case-study-sub { font-weight: 500; color: var(--color-ink-muted); font-size: 1.125rem; }
.case-study-arc { margin: var(--space-6) 0; display: flex; flex-direction: column; gap: var(--space-5); }
.arc-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.arc-step p { margin: 0; color: var(--color-ink-muted); }
.arc-step-result { background: var(--color-surface); padding: var(--space-5); border-radius: var(--radius-md); border-left: 4px solid var(--color-gold); }
.arc-result { color: var(--color-primary) !important; font-size: 1.125rem; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 850px) { .faq-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); } }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: var(--color-primary);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-spring);
}
.faq-answer p { overflow: hidden; margin: 0; color: var(--color-ink-muted); font-size: 0.9375rem; }
.faq-answer > p { padding-bottom: 0; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-question[aria-expanded="true"] + .faq-answer p { padding-bottom: var(--space-5); }
.faq-answer { overflow: hidden; }
.faq-answer p { min-height: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  padding: var(--space-9) 0;
  text-align: center;
}
.final-cta-illustration {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.final-cta-illustration svg { width: 100%; height: 100%; }
.line-art { fill: none; stroke: var(--color-accent-bright); stroke-width: 2; opacity: 0.35; }
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 34rem;
  margin: 0 auto var(--space-4);
}
.final-cta p {
  color: rgba(255,255,255,0.78);
  max-width: 30rem;
  margin: 0 auto var(--space-6);
  font-size: 1.0625rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-9);
}
.footer-top {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-7);
}
@media (min-width: 750px) { .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); } }
@media (min-width: 1050px) { .footer-top { grid-template-columns: 1.4fr repeat(3, 0.8fr) 1.1fr; } }

.footer-logo { height: 40px; margin-bottom: var(--space-4); filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand > p { font-size: 0.9375rem; margin: 0 0 var(--space-3); }
.footer-stars { margin-bottom: var(--space-4); }
.footer-stars svg { fill: var(--color-gold); width: 16px; height: 16px; }
.social-icons { display: flex; gap: var(--space-3); }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s var(--ease-spring);
}
.social-icons a:hover { background: var(--color-accent); transform: translateY(-2px); }
.social-icons svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.6; }

.footer-col h3 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}
.footer-col a {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: var(--space-3);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }

.footer-newsletter p { font-size: 0.875rem; margin: 0 0 var(--space-4); }
.newsletter-form { display: flex; gap: var(--space-2); }
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--color-gold); }
.newsletter-form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring);
}
.newsletter-form button:hover { transform: scale(1.06); }

.footer-partners {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-5) var(--space-5);
  text-align: center;
}
.footer-partners-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-style: italic; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-5) var(--space-5) var(--space-7);
  text-align: center;
}
.footer-legal p { font-size: 0.8125rem; margin: 0 0 var(--space-2); }
.footer-legal a { text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform 0.3s var(--ease-spring);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-5);
}
.video-modal[hidden] { display: none; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 31, 48, 0.82);
}
.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16/9;
  background: var(--color-primary-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: max-width 0.25s ease;
}
.video-modal-content.is-vertical { max-width: 400px; aspect-ratio: 9/16; }
.video-modal-content iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-modal-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  padding: var(--space-5);
}
.video-modal-close {
  position: absolute;
  top: var(--space-3); right: var(--space-3);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}
.video-modal-close:hover { background: rgba(255,255,255,0.22); }
