/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy:       #1B2B4B;
  --navy-deep:  #111E35;
  --navy-mid:   #243558;
  --gold:       #C49A3C;
  --gold-light: #D4AC52;
  --gold-pale:  rgba(196,154,60,0.12);
  --gold-glow:  rgba(196,154,60,0.30);
  --cream:      #F5EFE3;
  --cream-dark: #EDE4D3;
  --white:      #FFFFFF;
  --text-navy:  #1B2B4B;
  --text-body:  #4A5568;
  --text-muted: #8A9BB0;
}
html { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
body { overflow-x: hidden; background: var(--cream); }

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes lineReveal {
  0%   { opacity: 0; transform: translateY(36px) skewY(2deg); filter: blur(4px); }
  60%  { filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0)    skewY(0deg); filter: blur(0px); }
}
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
/* Orb float — each slightly different rhythm for organic feel */
@keyframes floatA {
  0%   { transform: translateY(0px);   }
  30%  { transform: translateY(-16px); }
  60%  { transform: translateY(-8px);  }
  100% { transform: translateY(0px);   }
}
@keyframes floatB {
  0%   { transform: translateY(0px);   }
  40%  { transform: translateY(-20px); }
  70%  { transform: translateY(-6px);  }
  100% { transform: translateY(0px);   }
}
/* Stat counter pop on scroll-in */
@keyframes statReveal {
  0%   { opacity:0; transform:translateY(20px) scale(0.96); }
  100% { opacity:1; transform:translateY(0px)  scale(1);    }
}
/* Gold shimmer on stat values */
@keyframes goldShimmer {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}
@keyframes shimmer  { 0%{ background-position: -200% center; } 100%{ background-position: 200% center; } }
@keyframes navIn    { from{ opacity:0; transform:translateY(-12px); } to{ opacity:1; transform:translateY(0); } }
@keyframes lineDraw { from{ width:0; } to{ width:40px; } }


/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid rgba(27,43,75,0.09);
  box-shadow: 0 2px 20px rgba(27,43,75,0.06);
  animation: navIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both;
  transition: box-shadow 0.35s ease;
}
.nav-wrap.scrolled {
  box-shadow: 0 4px 32px rgba(27,43,75,0.13);
}

/* hairline gold accent at very top */
.nav-topline {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 75%, transparent 100%);
}

nav {
  height: 110px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 72px;
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.02); opacity: 0.88; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500;
  color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  position: relative;
  transition: color 0.22s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 7px; left: 24px; right: 24px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── Services Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 6px;
}
.nav-dropdown-chevron {
  width: 10px; height: 10px; flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  margin-top: 1px;
}
.nav-dropdown:hover .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy);
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: 4px; min-width: 280px;
  padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 20px 56px rgba(0,0,0,0.22);
  z-index: 700;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(196,154,60,0.2);
}
.nav-dropdown-item {
  display: block; padding: 13px 22px;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,154,60,0.07);
  transition: background 0.18s;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { background: rgba(196,154,60,0.07); }
.nav-dropdown-item-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 5px;
}
.nav-dropdown-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600; color: #fff;
  display: block; line-height: 1.2;
}

/* ── Service Page Styles ── */
.svc-hero {
  background: var(--navy);
  padding: 160px 48px 80px;
  text-align: center;
}
.svc-hero .svc-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 20px;
}
.svc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 600; color: #fff;
  line-height: 1.15; max-width: 860px; margin: 0 auto 20px;
}
.svc-hero h1 em { color: var(--gold); font-style: italic; }
.svc-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}
.svc-cover {
  max-width: 900px; margin: 0 auto;
  padding: 0 48px;
}
.svc-cover img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3);
  margin-top: -40px; display: block;
}
.svc-pillars {
  background: var(--cream);
  padding: 72px 48px;
}
.svc-pillars-inner {
  max-width: 1100px; margin: 0 auto;
}
.svc-pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 48px;
}
.svc-pillar {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}
.svc-pillar-icon {
  width: 40px; height: 40px; margin-bottom: 16px;
  color: var(--gold);
}
.svc-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--navy);
  margin-bottom: 10px; line-height: 1.2;
}
.svc-pillar-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(27,43,75,0.65); line-height: 1.75;
}
.svc-body {
  max-width: 860px; margin: 0 auto;
  padding: 72px 48px 80px;
  background: var(--cream);
}
.svc-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600; color: var(--navy);
  line-height: 1.2; margin: 56px 0 20px;
}
.svc-body h2:first-child { margin-top: 0; }
.svc-body p {
  font-family: 'Inter', sans-serif;
  font-size: 24px; color: rgba(27,43,75,0.72);
  line-height: 1.9; margin-bottom: 20px;
}
.svc-body strong { color: var(--navy); font-weight: 600; }
.svc-body ul { margin: 0 0 20px; padding: 0; list-style: none; }
.svc-body ul li {
  font-family: 'Inter', sans-serif;
  font-size: 24px; color: rgba(27,43,75,0.72);
  line-height: 1.85; padding: 5px 0 5px 24px; position: relative;
}
.svc-body ul li::before {
  content: '—'; color: var(--gold);
  position: absolute; left: 0; font-weight: 700;
}
.svc-process {
  background: var(--cream);
  padding: 80px 48px;
}
.svc-process-inner { max-width: 1000px; margin: 0 auto; }
.svc-process h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600; color: var(--navy);
  text-align: center; margin-bottom: 56px;
}
.svc-process h2 em { color: var(--gold); font-style: italic; }
.svc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.svc-step {
  text-align: center; padding: 32px 20px;
  background: rgba(27,43,75,0.04);
  border: 1px solid rgba(196,154,60,0.25);
  border-radius: 4px;
  position: relative;
}
.svc-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600; color: rgba(196,154,60,0.35);
  line-height: 1; margin-bottom: 16px;
}
.svc-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; line-height: 1.25;
}
.svc-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(27,43,75,0.65); line-height: 1.75;
}
.svc-faq {
  background: var(--navy);
  padding: 72px 48px;
}
.svc-faq-inner { max-width: 780px; margin: 0 auto; }
.svc-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600; color: #fff;
  margin-bottom: 40px;
}
.svc-faq-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0;
}
.svc-faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.svc-faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; color: #fff; margin-bottom: 10px;
}
.svc-faq-a {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.85;
}
.svc-cta {
  background: var(--navy-deep);
  padding: 80px 48px; text-align: center;
}
.svc-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; color: #fff; margin-bottom: 16px;
}
.svc-cta h2 em { color: var(--gold); font-style: italic; }
.svc-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.6);
  max-width: 480px; margin: 0 auto 32px; line-height: 1.8;
}
@media (max-width: 768px) {
  .svc-hero { padding: 120px 24px 60px; }
  .svc-cover { display: none; }
  .svc-pillars { padding: 56px 24px; }
  .svc-pillars-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .svc-body { padding: 56px 24px 64px; }
  .svc-process { padding: 56px 24px; }
  .svc-steps { grid-template-columns: repeat(2,1fr); }
  .svc-faq { padding: 56px 24px; }
  .svc-cta { padding: 56px 24px; }
}
@media (max-width: 480px) {
  .svc-hero { padding: 100px 16px 48px; }
  .svc-cover { padding: 0 16px; }
  .svc-pillars { padding: 40px 16px; }
  .svc-pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-body { padding: 40px 16px 48px; }
  .svc-process { padding: 40px 16px; }
  .svc-steps { grid-template-columns: 1fr; }
  .svc-faq { padding: 40px 16px; }
  .svc-cta { padding: 40px 16px; }
}

/* CTA — outlined gold button */
.nav-cta {
  flex-shrink: 0;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border-radius: 1px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover { color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(196,154,60,0.30); }
.nav-cta:hover::before { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: var(--cream); flex-direction: column;
  padding: 28px 32px;
  transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  border-left: 3px solid var(--gold);
}
.mobile-menu.open { transform: translateX(0); display: flex; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px;
}
.mobile-menu-head img { height: 56px; }
.mobile-close {
  background: none; border: 1.5px solid rgba(27,43,75,0.22);
  color: var(--navy); width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu a {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--navy);
  text-decoration: none;
  padding: 20px 0; border-bottom: 1px solid rgba(27,43,75,0.07);
  letter-spacing: 0.04em; transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-cta {
  margin-top: 40px;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 16px; width: 100%;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.mobile-cta:hover { background: var(--gold); color: var(--navy); }
.mobile-services-group { border-bottom: 1px solid rgba(27,43,75,0.07); }
.mobile-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  color: var(--navy); letter-spacing: 0.04em;
  padding: 20px 0; text-align: left;
  transition: color 0.2s;
}
.mobile-services-toggle:hover { color: var(--gold); }
.mobile-services-chevron {
  width: 16px; height: 10px; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mobile-services-sub {
  display: none; flex-direction: column;
  background: rgba(27,43,75,0.04);
  margin: 0 -32px; padding: 0 32px;
}
.mobile-services-sub.open { display: flex; }
.mobile-services-sub a {
  font-size: 17px !important; padding: 14px 0 14px 16px !important;
  border-bottom: 1px solid rgba(27,43,75,0.05) !important;
  opacity: 0.85;
}
.mobile-services-sub a:last-child { border-bottom: none !important; }


/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 112px; /* clear fixed navbar (110px + 2px topline) */
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('last.jpg') center 70% / cover no-repeat;
  transform-origin: center center;
  animation: none;
  filter: brightness(1.12) contrast(1.04) saturate(1.08);
  overflow: hidden;
}

@media (max-width: 768px) {
  /* ── Background: brand plaque image on mobile ── */
  .hero-bg {
    background-image: url('se.jpg');
    background-color: var(--navy-deep);
    background-position: 78% center;
    background-size: cover;
    animation: none;
    filter: brightness(0.80) saturate(1.1);
  }
  .hero-bg::after { display: none; }

  /* ── Overlay: heavier on left for text readability, opens on right to reveal plaque ── */
  .hero-overlay {
    background:
      linear-gradient(to right,
        rgba(8, 14, 28, 0.82) 0%,
        rgba(8, 14, 28, 0.55) 55%,
        rgba(8, 14, 28, 0.25) 100%
      ),
      linear-gradient(to bottom,
        rgba(8, 14, 28, 0.50) 0%,
        rgba(8, 14, 28, 0.20) 50%,
        rgba(8, 14, 28, 0.65) 100%
      );
  }

  /* ── Layout: left-aligned column ── */
  .hero-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 110px 24px 48px 24px !important;
    gap: 0 !important;
    min-height: 100vh;
    text-align: left;
  }

  /* ── Copy block: constrained left, exposes nameplate right ── */
  .hero-copy {
    width: 52% !important;
    max-width: 52% !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    text-align: left;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex: unset !important;
    gap: 0;
  }

  /* ── Eyebrow tag: pinned top-left ── */
  .hero-eyebrow {
    position: absolute;
    top: 60px;
    left: 24px;
    transform: none;
    width: auto;
    max-width: calc(100vw - 48px);
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 4;
  }
  .hero-eyebrow-text {
    font-size: 32px;
    letter-spacing: 0.14em;
    white-space: normal;
    line-height: 1.55;
    color: var(--gold);
    text-align: left;
  }
  .hero-eyebrow-line { display: none; }

  /* ── Headline ── */
  .hero h1 {
    font-size: 38px !important;
    line-height: 1.9 !important;
    margin-bottom: 16px !important;
    text-align: left !important;
    letter-spacing: -0.01em !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  /* ── Decorative rule ── */
  .hero-rule { margin-bottom: 12px; width: 60%; margin-left: 0; margin-right: auto; }

  /* ── Sub-copy ── */
  .hero-sub {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    max-width: 100%;
    text-align: left !important;
    color: rgba(255,255,255,0.78) !important;
    gap: 4px !important;
  }

  .mob-br { display: inline; }

  /* ── Buttons: stacked, left-aligned ── */
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
    width: 100%;
    align-items: flex-start;
  }
  .btn-gold {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 16px 20px;
    letter-spacing: 0.12em;
  }
  .btn-ghost {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 16px 20px;
  }

  /* ── Luxury stat strip: 3 equal cards, compact ── */
  .lux-stat-strip {
    flex-direction: row;
    gap: 6px;
    max-width: 100%;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
  }
  .lux-strip-glow { display: none; }
  .lux-card {
    flex: 1;
    padding: 14px 4px 16px;
    border-radius: 16px;
    min-width: 0;
  }
  /* ROI card: wider + taller to match sibling cards */
  .lux-stat-strip > .lux-card:nth-child(2) { flex: 1.6; padding: 22px 6px 24px; }
  .lux-card--center {
    flex: 1.1;
    padding: 18px 4px 20px;
    transform: translateY(-4px);
  }
  .lux-icon { display: none; }
  .lux-num {
    font-size: 19px;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .lux-card--center .lux-num { font-size: 24px; }
  .lux-stat-strip > .lux-card:nth-child(2) .lux-num { font-size: 24px; }
  .lux-divider { width: 20px; margin: 2px auto; }
  .lux-label {
    font-size: 6.5px;
    letter-spacing: 0.14em;
  }
  .lux-card--center .lux-label { font-size: 7px; }

  /* ── Scroll hint: hide on mobile ── */
  .hero-scroll { display: none !important; }
}
@keyframes kenBurns {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.07); }
}

/* Overlay: left readable, right open so plaque glows through */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(108deg,
      rgba(10,18,34,0.86) 0%,
      rgba(10,18,34,0.74) 30%,
      rgba(10,18,34,0.28) 58%,
      rgba(10,18,34,0.04) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.04) 0%,
      rgba(0,0,0,0.20) 100%
    );
}

/* ambient gold orb */
.hero-glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,0.09) 0%, transparent 65%);
  top: -100px; left: -100px;
  animation: floatB 12s ease-in-out infinite;
}

/* ── HERO LAYOUT ── */
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 60px 56px 60px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Top group: eyebrow + headline + rule + sub */
.hero-top { display: flex; flex-direction: column; }

/* Bottom group: buttons + stats */
.hero-bottom { display: flex; flex-direction: column; gap: 0; }

/* ── LEFT: Copy ── */
.hero-copy {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.hero-eyebrow-line {
  flex: 0 0 36px; height: 1px; background: var(--gold);
  opacity: 0;
  animation: fadeIn 0.5s ease 0.55s forwards;
}
.hero-eyebrow-line.right {
  animation-delay: 0.65s;
}
.hero-eyebrow-text {
  font-size: 10.5px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero-eyebrow-text {
    font-size: 9px;
    letter-spacing: 0.14em;
    white-space: normal;
    line-height: 1.6;
  }
  .hero-eyebrow-line.right { display: none; }
  .hero-eyebrow { flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.2vw, 75px);
  font-weight: 600; color: var(--white);
  line-height: 1.06; margin-bottom: 20px;
  letter-spacing: -0.01em;
}
/* Typewriter lines */
.h-line { display: inline; }

/* Blinking cursor */
.tw-cursor {
  display: inline-block;
  width: 2px; height: 0.85em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: middle;
  animation: cursorBlink 0.75s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero h1 .h-gold {
  color: var(--gold);
  font-style: italic; font-weight: 400;
}
.hero h1 .h-thin { font-weight: 300; }
.hero h1 .h-accent {
  color: var(--gold); font-style: italic; font-weight: 600;
}

/* Decorative rule under headline */
.hero-rule {
  width: 100%; height: 1.5px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(196,154,60,0.25) 100%);
  margin-bottom: 22px;
  border-radius: 2px;
  animation: fadeIn 0.7s ease 0.7s both;
}
.hero-rule-gem { display: none; }

.hero-sub {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.70);
  line-height: 1.75; max-width: 500px; margin-bottom: 32px;
  animation: fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.6s both;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-sub-line { margin: 0; }
.mob-br { display: none; }
.hero-sub--mobile { display: none; }
.mob-h4 { display: inline; }
.mob-br--h4 { display: inline; }
.mob-h5 { display: none; }
.mob-br--h5 { display: none; }
.mob-br--eyebrow { display: none; }
.mob-only-text { display: none; }
.desktop-only-text { display: inline; }
/* Brand names — white bold */
.hs-brand {
  color: #ffffff;
  font-weight: 600;
}
/* ₹0 Upfront Fees — white bold, same size as body */
.hs-zero {
  color: #ffffff;
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  letter-spacing: 0.01em;
}

/* CTA row */
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 0;
  animation: fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.72s both;
}
.btn-gold {
  position: relative; overflow: hidden;
  background: var(--gold); color: var(--navy-deep); border: none;
  padding: 16px 36px; font-family: 'Inter', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  box-shadow: 0 4px 24px rgba(196,154,60,0.40);
  transition: background 0.25s, box-shadow 0.35s, transform 0.2s;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(196,154,60,0.55);
}
.btn-ghost {
  display: flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 16px 32px; font-family: 'Inter', sans-serif;
  font-size: 11.5px; font-weight: 400; letter-spacing: 0.10em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(196,154,60,0.06);
}
.play-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color 0.25s;
}
.btn-ghost:hover .play-icon { border-color: var(--gold); }
.play-icon::after {
  content: '';
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(255,255,255,0.80);
  margin-left: 3px; transition: border-left-color 0.25s;
}
.btn-ghost:hover .play-icon::after { border-left-color: var(--gold); }

/* Trust row */
.hero-trust {
  display: flex; align-items: center; gap: 18px;
  animation: fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.85s both;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
}
.trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.trust-text { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 0.05em; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.10); }


/* ── OLD HERO STATS (keep hidden) ── */
.hero-stats { display: none; }

/* ════════════════════════════════════
   LUXURY STAT STRIP — glassmorphism
════════════════════════════════════ */
@keyframes goldBorderSweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes luxCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
@keyframes luxCenterIn {
  from { opacity: 0; transform: translateY(22px) scale(0.95); }
  to   { opacity: 1; transform: translateY(-6px) scale(1);    }
}
@keyframes iconPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.08); }
}

/* Strip wrapper */
.lux-stat-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 580px;
  margin-top: 36px;
  position: relative;
}

/* Ambient backdrop glow across the whole strip */
.lux-strip-glow {
  position: absolute;
  inset: -40px -24px;
  background: radial-gradient(ellipse at 50% 60%, rgba(196,154,60,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── Base card ── */
.lux-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 24px;
  border-radius: 24px;
  /* Deep glass fill */
  background: linear-gradient(
    160deg,
    rgba(14, 20, 38, 0.72) 0%,
    rgba(6,  10, 22, 0.82) 100%
  );
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  overflow: hidden;
  cursor: default;
  z-index: 1;
  /* Layered depth shadows */
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0  4px 12px rgba(0, 0, 0, 0.35),
    0  0  0  1px rgba(196,154,60,0.06),
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.38s ease;
  animation: luxCardIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.9s both;
}
.lux-card:nth-child(2) { animation-delay: 1.05s; }
.lux-card:nth-child(3) { animation-delay: 0.95s; }

.lux-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.60),
    0  6px 18px rgba(0, 0, 0, 0.38),
    0  0   0  1px rgba(196,154,60,0.10),
    0  0  24px rgba(196,154,60,0.06),
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}

/* Metallic gold gradient border */
.lux-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(196,154,60,0.08)  0%,
    rgba(196,154,60,0.55) 25%,
    rgba(240,203,106,0.90) 50%,
    rgba(196,154,60,0.55) 75%,
    rgba(196,154,60,0.08) 100%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: goldBorderSweep 5s linear infinite;
  pointer-events: none;
}

/* Cinematic top-highlight reflection */
.lux-card::after {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(240,203,106,0.65) 40%,
    rgba(255,230,140,0.90) 50%,
    rgba(240,203,106,0.65) 60%,
    transparent 100%
  );
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

/* Inner ambient glow (top-center bloom) */
.lux-card-glow {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 75%; height: 55px;
  background: radial-gradient(ellipse at center top,
    rgba(196,154,60,0.20) 0%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Center card — elevated hero position ── */
.lux-card--center {
  flex: 1.22;
  padding: 28px 20px 30px;
  transform: translateY(-6px);
  background: linear-gradient(
    155deg,
    rgba(18, 26, 50, 0.80) 0%,
    rgba(8,  13, 28, 0.90) 100%
  );
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.65),
    0  6px 20px rgba(0, 0, 0, 0.40),
    0  0  48px rgba(196,154,60,0.10),
    0  0   0  1px rgba(196,154,60,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.30);
  animation: luxCenterIn 0.75s cubic-bezier(0.22,1,0.36,1) 1.0s both;
}
.lux-card--center:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.70),
    0  8px 24px rgba(0, 0, 0, 0.42),
    0  0  56px rgba(196,154,60,0.14),
    0  0   0  1px rgba(196,154,60,0.12),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.30);
}
.lux-card--center .lux-card-glow {
  width: 88%; height: 72px;
  background: radial-gradient(ellipse at center top,
    rgba(196,154,60,0.28) 0%,
    transparent 70%
  );
}

/* ── Inner content wrapper ── */
.lux-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

/* ── Tiny luxury icon ── */
.lux-icon {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  opacity: 0.60;
  animation: iconPulse 3.5s ease-in-out infinite;
}
.lux-card--center .lux-icon { opacity: 0.72; animation-duration: 4s; }
.lux-icon svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Number — serif gold shimmer ── */
.lux-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(
    135deg,
    #C8993A 0%,
    #D4AC52 30%,
    #F0CB6A 52%,
    #D4AC52 72%,
    #C49A3C 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s linear infinite;
}
.lux-card--center .lux-num {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* ── Hair divider ── */
.lux-divider {
  width: 26px; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(196,154,60,0.50),
    transparent
  );
  margin: 3px 0 2px;
}
.lux-card--center .lux-divider { width: 36px; }

/* ── Label — uppercase tracking ── */
.lux-label {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  line-height: 1;
}
.lux-card--center .lux-label {
  font-size: 8.5px;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.24em;
}

/* ── SCROLL HINT ── */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-label { font-size: 9px; color: rgba(255,255,255,0.28); letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(196,154,60,0.65), transparent);
  animation: floatA 2s ease-in-out infinite;
}

/* ════════════════════════════════════
   CARD SLIDER — overlaps hero bottom
════════════════════════════════════ */

/* Wrapper lifts the card up over the hero */
.slider-section {
  position: relative;
  z-index: 20;
  padding: 0 52px;
  margin-top: -50px;         /* overlap amount */
  padding-bottom: 0;
  background: transparent;
  line-height: 1;
}

/* The card itself — decoration layer (shadow, radius, background) */
.slider-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.28),
    0  8px 24px rgba(0,0,0,0.14),
    0  0  0 1px rgba(196,154,60,0.12);
  /* Force a GPU compositing layer on the card BEFORE the track's layer.
     This guarantees overflow:hidden fires in the correct paint order
     and prevents any GPU-composited child from bleeding outside. */
  transform: translateZ(0);
  isolation: isolate;
}

/* Dedicated clip viewport — completely separate from card decoration.
   Owns the overflow clip so border-radius never interferes with it. */
.slider-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  clip-path: inset(0);
}

/* Thin gold progress line at the very top of the card */
.slider-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; width: 0%;
  background: var(--gold);
  z-index: 30;
  border-radius: 2px;
  transition: width linear;
  opacity: 0.90;
}

/* ── Slide track ── */
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.82s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
}

/* Each slide: independent self-contained unit */
.slide {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  height: 340px;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  box-sizing: border-box;
}

/* ── LEFT: text panel ── */
.slide-info {
  width: 46%;
  height: 100%;
  flex-shrink: 0;
  background: var(--cream);
  padding: 40px 36px 56px 40px;
  display: grid;
  grid-template-rows:
    auto   /* category */
    auto   /* title */
    auto   /* subtitle */
    1fr    /* flexible desc area */
    auto;  /* tag */
  row-gap: 10px;
  justify-items: start;
  align-content: start;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(196,154,60,0.18);
  text-align: left;
}
.slide-info::after { display: none; }

.slide-category {
  display: flex; align-items: center; gap: 9px;
  font-size: 9px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 0;
}
.slide-category::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 8px;
  width: 100%;
  margin-left: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slide-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0;
}
.slide-subtitle:empty {
  display: none;
}

.slide-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 310px;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .slide-desc { font-size: 17px; max-width: 100%; }
  .slide-info { width: 55%; }
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0;
}
.slide-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── RIGHT: image frame — absolutely anchored inside its own slide ── */
.slide-img {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 54%;
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0 18px 18px 0;
  transform: scale(1.05);
  transition: transform 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide.active .slide-img img { transform: scale(1); }

/* Hide the image frame on every non-active slide.
   visibility:hidden preserves layout but stops all painting —
   nothing left to bleed into the adjacent slide area. */
.slide:not(.active) .slide-img { visibility: hidden; }

/* ── Controls (live inside card, bottom-left of info panel) ── */
.slider-controls {
  position: absolute;
  bottom: 22px; left: 40px;
  display: flex; align-items: center; gap: 10px; z-index: 10;
}

.slider-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(27,43,75,0.08);
  border: 1px solid rgba(196,154,60,0.32);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; flex-shrink: 0;
}
.slider-arrow:hover {
  background: var(--gold); border-color: var(--gold);
}
.slider-arrow:hover svg { stroke: var(--white); }
.slider-arrow svg { width: 13px; height: 13px; stroke: var(--navy); stroke-width: 2.5; fill: none; }

.slider-dots {
  display: flex; align-items: center; gap: 7px;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(27,43,75,0.18);
  border: 1px solid rgba(27,43,75,0.12);
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
}
.slider-dot.active {
  background: var(--gold); border-color: var(--gold);
  width: 22px; border-radius: 3.5px;
  box-shadow: 0 0 8px rgba(196,154,60,0.45);
}

.slider-counter {
  position: absolute;
  bottom: 26px; right: 28px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72); z-index: 10;
}
.slider-counter span { color: rgba(255,255,255,0.95); font-weight: 600; }

/* ── Responsive ── */
/* ════════════════════════════════════
   RESPONSIVE — TABLET + MOBILE
════════════════════════════════════ */

/* ── Large desktop: scale down slightly on narrower windows ── */
@media (max-width: 1400px) {
  nav { padding: 0 48px; }
  .nav-links a { padding: 14px 18px; font-size: 15px; }
}
@media (max-width: 1200px) {
  nav { padding: 0 36px; height: 100px; }
  .nav-links a { padding: 12px 14px; font-size: 13px; letter-spacing: 0.06em; }
  .nav-logo img { height: 76px; }
  .nav-cta { padding: 14px 26px; font-size: 13px; }
}

/* ── Tablet landscape (≤1024px) ── */
@media (max-width: 1024px) {
  /* Hero */
  .hero-copy  { max-width: 680px; }
  .hero h1    { font-size: clamp(40px, 6vw, 72px); }
  /* Stats pill on tablet */
  .hero-stats { max-width: 100%; margin-top: 28px; }
  .stat-card { padding: 16px 14px; }
  .stat-number { font-size: 28px; }

  /* Slider — tablet keeps absolute image, just tighter */
  .slider-section { padding: 0 32px; margin-top: -60px; }
  .slide { height: 300px; }
  .slide-info { width: 50%; padding: 28px 28px 44px 36px; }
  .slide-img { width: 50%; }
}

/* ── Tablet portrait (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 28px; height: 84px; }
  .nav-logo img { height: 68px; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; margin-left: auto; }
  .hero { padding-top: 86px; }

  /* Hero */
  .hero-inner { padding: 40px 24px 60px; }
  .hero h1    { font-size: 38px; }
  .hero-sub   { font-size: 14px; max-width: 100%; }
  /* Stats pill on mobile */
  .hero-stats { margin-top: 20px; }
  .stat-card  { padding: 14px 10px; }
  .stat-number { font-size: 22px; }
  .stat-label  { font-size: 8.5px; }

  /* Hero mobile line-break elements */
  .mob-br { display: inline; }
  .mob-h4 { display: inline; }
  .mob-br--h4 { display: inline; }
  .mob-h5 { display: inline; }
  .mob-br--h5 { display: inline; }
  .mob-br--eyebrow { display: inline; }
  .mob-only-text { display: inline; }
  .desktop-only-text { display: none; }
  .hero-sub--desktop { display: none; }
  .hero-sub--mobile { display: none; }

  /* Slider */
  .slider-section { padding: 0 16px; margin-top: -36px; }
  .slider-card { border-radius: 14px; overflow: hidden; }
  .slider-viewport { overflow: hidden; clip-path: inset(0); width: 100%; }
  .slider-track { width: 100%; }
  .slide {
    flex-direction: column;
    height: 480px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  .slide-info {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 24px 20px 12px;
    position: relative;
    overflow: hidden;
  }
  .slide-info::after { display: none; }
  .slide-img {
    position: relative !important;
    top: auto !important; right: auto !important; bottom: auto !important;
    left: auto !important;
    width: 100%;
    max-width: 100%;
    height: 190px;
    padding: 0 12px 12px;
    background: var(--cream-dark);
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .slide-img img { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; display: block; }
  .slide:not(.active) .slide-img { visibility: visible; }

  /* All slides: image fills edge-to-edge, no padding, stretches to card bottom */
  .slide .slide-info { padding-bottom: 0; }
  .slide .slide-img {
    padding: 0;
    height: auto;
    flex: 1;
    background: transparent;
  }
  .slide .slide-img img { border-radius: 0; }
  .slider-controls { left: 20px; bottom: 14px; }
  .slider-counter { right: 20px; bottom: 14px; font-size: 10px; }
  .slide-category { font-size: 9px; }
  .slide-title { font-size: 19px; line-height: 1.28; white-space: normal; }
  .slide-desc { font-size: 15.5px; line-height: 1.65; margin-top: 10px; }
  .slide-tag  { display: none; }

  /* Brands */
  .brands-section { padding: 64px 24px 56px; }
  .brand-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .brand-logo-grid--boutique { grid-template-columns: repeat(3, 1fr); }
  .bln-item { padding: 22px 10px; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Hero — small phones */
  .hero-inner  { padding: 90px 20px 40px 20px !important; }
  .hero h1     { font-size: 26px !important; line-height: 1.9 !important; }
  .hero-copy   { max-width: 52% !important; width: 52% !important; }
  .hero-sub    { font-size: 12px !important; line-height: 1.4 !important; gap: 3px !important; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; font-size: 11px; padding: 15px 16px; }
  .hero-btns   { flex-direction: column; gap: 10px; }
  .hero-stats  { margin-top: 16px; }
  .stat-card   { padding: 12px 8px; }
  .stat-number { font-size: 19px; }
  .stat-label  { font-size: 8px; letter-spacing: 0.10em; }

  /* Slider */
  .slide-img { height: 210px; }
  .slide-title { font-size: 18px; }
  .slider-card { border-radius: 12px; }

  /* Brands */
  .brands-section { padding: 52px 16px 48px; }
  .brands-title   { font-size: 26px; }
  .brand-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-grid--boutique { grid-template-columns: repeat(3, 1fr); }
  .bln-item { padding: 18px 8px; gap: 8px; }
  .bln-logo img { max-height: 26px; max-width: 80px; }
  .bln-name { font-size: 7.5px; letter-spacing: 0.12em; }
  .brand-group { margin-bottom: 36px; }
}

/* ── Brand Network Section ── */
.brands-section {
  background: var(--cream);
  padding: 60px 80px 0;
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.35), transparent);
}
.brands-container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

/* Header */
.brands-header { text-align: center; margin-bottom: 72px; }
.brands-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 24px;
}
.brands-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600; color: var(--navy);
  margin: 0 0 18px; letter-spacing: 0.01em; line-height: 1.1;
}
.brands-title span { color: var(--gold); font-style: italic; }
.brands-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text-body);
  max-width: 100%; margin: 0 auto; line-height: 1.75;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .brands-subtitle { font-size: 18px; }
}

/* ── Marquee rows ── */
@keyframes marqueeScroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes marqueeReverse {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(27,43,75,0.08);
  padding: 36px 0;
}
.marquee-row:last-child { border-bottom: 1px solid rgba(27,43,75,0.08); }

/* Label column */
.marquee-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.5;
  width: 150px;
  flex-shrink: 0;
  padding-right: 24px;
}

/* Scrolling track wrapper — clips overflow */
.marquee-track-wrap {
  flex: 1;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* The moving strip — contains 2× logos for seamless loop */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-track--boutique {
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track--reverse {
  animation: marqueeScroll 55s linear infinite;
}
.marquee-track-wrap:hover .marquee-track,
.marquee-track-wrap:hover .marquee-track--reverse {
  animation-play-state: paused;
}

/* Individual logo */
.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marquee-logo img {
  height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.marquee-logo img:hover {
  opacity: 1;
  transform: scale(1.08);
}
/* Fern logo — 75% larger again (102px × 1.75) */
.marquee-logo img[src="furn.png"] { height: 179px; max-width: 490px; }

/* Per-logo size overrides */
.marquee-logo img[src="ihcl1.svg.png"] { height: 35px;  max-width: 140px; }  /* IHCL  −40% */
.marquee-logo img[src="itclogo.png"]   { height: 87px;  max-width: 240px; }  /* ITC   +50% */
.marquee-logo img[src="zostel1.png"]   { height: 116px; max-width: 320px; }  /* Zostel +100% */
.marquee-logo img[src="tuj.png"]       { height: 128px; max-width: 350px; }  /* Taj   +120% */
.marquee-logo img[src="usethis.png"]   { height: 135px; max-width: 375px; }  /* IHG   +30% more */
.marquee-logo img[src="han.png"]       { height: 156px; max-width: 430px; }  /* Hyatt  +50% more */
.marquee-logo img[src="ac.png"]        { height: 93px;  max-width: 260px; }  /* Accor  +60% */
.marquee-logo img[src="bmw.png"]       { height: 99px;  max-width: 275px; }  /* BW     +70% */
.marquee-logo img[src="mahesh.png"]    { height: 116px; max-width: 320px; }  /* Lords +100% */
.marquee-logo img[src="sar1.png"]      { height: 116px; max-width: 320px; }  /* Sarovar+100%*/
.marquee-logo img[src="man2.png"]      { height: 75px;  max-width: 210px; }  /* Marriott+30%*/
.marquee-logo img[src="fnmp.png"]      { height: 195px; max-width: 520px; }  /* Fortune +30% */
.marquee-logo img[src="regeta1.png"]   { height: 75px;  max-width: 208px; }  /* Regenta +30% */
.marquee-logo img[src="pt.png"]        { height: 150px; max-width: 400px; }  /* Postcard 150px */
.marquee-logo img[src="life.png"]      { height: 140px; max-width: 390px; }  /* Life 140px */

@media (max-width: 768px) {
  .brands-section { padding: 56px 0 0; overflow: hidden; }
  .brands-header { padding: 0 24px; margin-bottom: 40px; }
  .brands-eyebrow { font-size: 24px; margin-bottom: 14px; }
  .brands-title { font-size: clamp(24px, 7vw, 36px); }
  .brands-subtitle { white-space: normal; font-size: 16.5px; max-width: 100%; }
  /* Marquee row: label above, track below */
  .marquee-row { padding: 26px 0; flex-direction: column; align-items: flex-start; gap: 14px; }
  .marquee-label {
    padding-left: 20px; padding-right: 0;
    width: auto; font-size: 15px; font-weight: 600;
    letter-spacing: 0.10em; white-space: nowrap;
  }
  /* Wider gap + slower speed → only 2–3 logos visible at once */
  .marquee-track { gap: 56px; animation-duration: 40s; }
  .marquee-track--reverse { animation-duration: 46s; }
  /* ~2× larger than old 52px — stays premium at mobile viewport */
  .marquee-logo img { height: 96px !important; max-width: 260px !important; }
  /* Per-logo mobile size overrides (≤768px) */
  .marquee-logo img[src="usethis.png"]  { height: 125px !important; max-width: 340px !important; }
  .marquee-logo img[src="wyndham2.png"] { height: 72px  !important; max-width: 195px !important; }
  .marquee-logo img[src="hilton2.png"]  { height: 67px  !important; max-width: 182px !important; }
  .marquee-logo img[src="radisson1.png"]{ height: 69px  !important; max-width: 187px !important; }
  .marquee-logo img[src="han.png"]      { height: 163px !important; max-width: 440px !important; }
  .marquee-logo img[src="bmw.png"]      { height: 120px !important; max-width: 325px !important; }
  .marquee-logo img[src="furn.png"]     { height: 212px !important; max-width: 573px !important; }
  .marquee-logo img[src="mahesh.png"]   { height: 158px !important; max-width: 428px !important; }
  .marquee-logo img[src="sar1.png"]     { height: 149px !important; max-width: 403px !important; }
  .marquee-logo img[src="lemontreee.png"]{ height: 79px !important; max-width: 214px !important; }
  .marquee-logo img[src="ihcl1.svg.png"]{ height: 38px  !important; max-width: 103px !important; }
  .marquee-logo img[src="itclogo.png"]  { height: 120px !important; max-width: 325px !important; }
  .marquee-logo img[src="zostel1.png"]  { height: 120px !important; max-width: 325px !important; }
  .marquee-logo img[src="tuj.png"]      { height: 149px !important; max-width: 403px !important; }
  .marquee-logo img[src="regeta1.png"]  { height: 78px  !important; max-width: 211px !important; }
  .marquee-logo img[src="fnmp.png"]     { height: 225px !important; max-width: 608px !important; }
  .marquee-logo img[src="ama1.png.webp"]{ height: 67px  !important; max-width: 181px !important; }
  .marquee-logo img[src="pt.png"]       { height: 130px !important; max-width: 351px !important; }
  .marquee-logo img[src="brij.png"]     { height: 77px  !important; max-width: 208px !important; }
  .marquee-logo img[src="life.png"]     { height: 133px !important; max-width: 359px !important; }
  /* Clip marquee overflow properly on mobile */
  .marquee-track-wrap {
    width: 100%;
    overflow: hidden;
    clip-path: inset(0);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
}
@media (max-width: 480px) {
  .brands-section { padding: 48px 0 0; }
  .brands-eyebrow { font-size: 20px; }
  /* 1.8× larger than old 28px — logos remain clearly readable */
  .marquee-logo img { height: 72px !important; max-width: 200px !important; }
  /* Per-logo mobile size overrides (≤480px) */
  .marquee-logo img[src="usethis.png"]  { height: 94px  !important; max-width: 255px !important; }
  .marquee-logo img[src="wyndham2.png"] { height: 54px  !important; max-width: 146px !important; }
  .marquee-logo img[src="hilton2.png"]  { height: 50px  !important; max-width: 136px !important; }
  .marquee-logo img[src="radisson1.png"]{ height: 52px  !important; max-width: 140px !important; }
  .marquee-logo img[src="han.png"]      { height: 122px !important; max-width: 330px !important; }
  .marquee-logo img[src="bmw.png"]      { height: 90px  !important; max-width: 244px !important; }
  .marquee-logo img[src="furn.png"]     { height: 159px !important; max-width: 430px !important; }
  .marquee-logo img[src="mahesh.png"]   { height: 119px !important; max-width: 322px !important; }
  .marquee-logo img[src="sar1.png"]     { height: 112px !important; max-width: 302px !important; }
  .marquee-logo img[src="lemontreee.png"]{ height: 60px !important; max-width: 162px !important; }
  .marquee-logo img[src="ihcl1.svg.png"]{ height: 29px  !important; max-width: 78px  !important; }
  .marquee-logo img[src="itclogo.png"]  { height: 90px  !important; max-width: 244px !important; }
  .marquee-logo img[src="zostel1.png"]  { height: 90px  !important; max-width: 244px !important; }
  .marquee-logo img[src="tuj.png"]      { height: 112px !important; max-width: 302px !important; }
  .marquee-logo img[src="regeta1.png"]  { height: 59px  !important; max-width: 159px !important; }
  .marquee-logo img[src="fnmp.png"]     { height: 169px !important; max-width: 457px !important; }
  .marquee-logo img[src="ama1.png.webp"]{ height: 50px  !important; max-width: 135px !important; }
  .marquee-logo img[src="pt.png"]       { height: 97px  !important; max-width: 263px !important; }
  .marquee-logo img[src="brij.png"]     { height: 58px  !important; max-width: 156px !important; }
  .marquee-logo img[src="life.png"]     { height: 99px  !important; max-width: 268px !important; }
  .marquee-track { gap: 48px; animation-duration: 35s; }
  .marquee-track--reverse { animation-duration: 40s; }
  .marquee-row { padding: 22px 0; gap: 12px; }
}

/* ── Who We Are Section ── */
.wwa-section {
  background: var(--cream);
  padding: 20px 80px 0;
  position: relative;
  overflow: hidden;
}
.wwa-section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.35), transparent);
}

/* Header */
.wwa-header {
  text-align: center;
  margin-bottom: 72px;
}
.wwa-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px;
}
.wwa-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; color: var(--navy);
  line-height: 1.12; margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.wwa-title em { color: var(--gold); font-style: italic; }
.wwa-intro {
  font-family: 'Inter', sans-serif;
  font-size: 18px; color: var(--text-body);
  max-width: 100%; margin: 0 auto;
  line-height: 1.78;
  white-space: normal;
}
@media (min-width: 1024px) {
  .wwa-intro { font-size: 18px; }
}
.wwa-gold-rule {
  width: 52px; height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
  border-radius: 2px;
}

/* Two-col story */
.wwa-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(27,43,75,0.08);
}
.wwa-col {
  padding: 56px 56px 56px 0;
  position: relative;
}
.wwa-col:last-child {
  padding: 56px 0 56px 56px;
  border-left: 1px solid rgba(27,43,75,0.08);
}
.wwa-col-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.wwa-col-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}
.wwa-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600; color: var(--navy);
  line-height: 1.2; margin-bottom: 20px;
}
.wwa-col p {
  font-family: 'Inter', sans-serif;
  font-size: 18px; color: var(--text-body);
  line-height: 1.82; margin-bottom: 16px;
}
.wwa-col p:last-child { margin-bottom: 0; }
.wwa-col p strong {
  color: var(--navy-deep); font-weight: 700;
}
.wwa-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  padding: 10px 18px;
  background: rgba(196,154,60,0.08);
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.wwa-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* Pull quote */
.wwa-quote-strip {
  background: var(--navy);
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
}
.wwa-quote-strip::before {
  content: '\201C';
  position: absolute; top: -20px; left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; line-height: 1;
  color: rgba(196,154,60,0.08);
  pointer-events: none;
}
.wwa-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.wwa-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500; font-style: italic;
  color: #fff; line-height: 1.55;
  letter-spacing: 0.01em;
}
.wwa-quote-text span { color: var(--gold); }
.wwa-quote-attr {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(196,154,60,0.65);
}

/* Four pillars */
.wwa-pillars {
  background: var(--cream);
  padding: 80px 80px 100px;
}
.wwa-pillars-header {
  text-align: center;
  margin-bottom: 52px;
}
.wwa-pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600; color: var(--navy);
}
.wwa-pillars-title em { color: var(--gold); font-style: italic; }
.wwa-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 52px;
}
.wwa-pillar {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(27,43,75,0.07);
  border-radius: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.wwa-pillar:hover {
  box-shadow: 0 12px 40px rgba(27,43,75,0.1);
  border-color: rgba(196,154,60,0.25);
  transform: translateY(-4px);
}
.wwa-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700;
  color: rgba(196,154,60,0.2);
  line-height: 1; margin-bottom: 16px;
}
.wwa-pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.25;
}
.wwa-pillar p {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; color: var(--text-body);
  line-height: 1.7;
}

/* CTA */
.wwa-cta {
  text-align: center;
}
.wwa-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.btn-wwa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--gold);
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(27,43,75,0.25);
}
.btn-wwa:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 32px rgba(27,43,75,0.35);
  transform: translateY(-2px);
}
.btn-wwa svg {
  width: 14px; height: 14px;
  stroke: var(--gold); stroke-width: 2; fill: none;
}

/* Read More toggle */
.wwa-story-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
  opacity: 0;
}
.wwa-story-wrap.expanded {
  max-height: 900px;
  opacity: 1;
}
.wwa-readmore-btn {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); background: none; border: none;
  cursor: pointer; padding: 0;
  transition: color 0.25s;
}
.wwa-readmore-btn:hover { color: var(--gold); }
.wwa-readmore-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2; fill: none;
  transition: transform 0.35s ease;
}
.wwa-readmore-btn.open svg { transform: rotate(180deg); }
.wwa-readmore-btn .rm-line {
  width: 24px; height: 1.5px; background: var(--gold); flex-shrink: 0;
}

/* Process timeline */
.wwa-process {
  background: var(--cream);
  padding: 20px 80px 100px;
  position: relative;
}
.wwa-process::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.35), transparent);
}
.wwa-process-header {
  margin-bottom: 60px;
  text-align: center;
}
.wwa-process-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600; color: var(--navy);
  line-height: 1.15; margin-bottom: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wwa-process-kicker em { color: var(--gold); font-style: italic; }
.wwa-process-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text-body);
  line-height: 1.7; max-width: 100%;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .wwa-process-sub { font-size: 18px; }
}

/* ── keyframes for timeline ── */
@keyframes stepFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes timelineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes badgePop {
  0%   { opacity: 0; transform: translateY(-8px) scale(0.85); }
  60%  { transform: translateY(2px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes circlePulse {
  0%,100% { box-shadow: 0 4px 20px rgba(27,43,75,0.35); }
  50%      { box-shadow: 0 4px 32px rgba(27,43,75,0.55), 0 0 0 8px rgba(196,154,60,0.12); }
}
@keyframes circleReveal {
  from { opacity: 0; transform: scale(0.55); }
  to   { opacity: 1; transform: scale(1); }
}

/* Steps row */
.wwa-steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Dashed connector line — drawn via scaleX on trigger */
.wwa-steps::before {
  content: '';
  position: absolute;
  top: 63px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 1px;
  border-top: 2px dashed rgba(196,154,60,0.3);
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
}
.wwa-steps.steps-animate::before {
  animation: timelineDraw 1.4s cubic-bezier(0.4,0,0.2,1) 0.15s forwards;
}

/* Gold fill line (solid, overlaid) */
.wwa-steps-fill {
  position: absolute;
  top: 63px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196,154,60,0.2) 100%);
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 1px;
}
.wwa-steps.steps-animate .wwa-steps-fill {
  animation: timelineDraw 1.8s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}

.wwa-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.wwa-step.step-in {
  animation: stepFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* YOU PAY HERE badge */
.wwa-step-badge {
  font-family: 'Inter', sans-serif;
  font-size: 8px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 5px 10px; border-radius: 2px;
  margin-bottom: 8px;
  opacity: 0;
}
@media (min-width: 1024px) {
  .wwa-step-badge { font-size: 12px; }
  .wwa-step-badge--small { font-size: 12px; padding: 3px 7px; }
}
.wwa-step.step-in .wwa-step-badge {
  animation: badgePop 0.55s cubic-bezier(0.22,1,0.36,1) 0.45s forwards;
}
.wwa-step-badge-spacer { height: 27px; margin-bottom: 8px; }

.wwa-step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid rgba(196,154,60,0.5);
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
  cursor: default;
}
.wwa-step.step-in .wwa-step-circle {
  animation: circleReveal 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
/* Hover: fill circle navy */
.wwa-step:hover .wwa-step-circle:not(.active) {
  background: var(--navy-deep);
  border-color: var(--navy);
  color: var(--gold);
}
.wwa-step-circle.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(27,43,75,0.35);
}
.wwa-step.step-in .wwa-step-circle.active {
  animation: circleReveal 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards,
             circlePulse 2.8s ease-in-out 1.2s infinite;
}

.wwa-step-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.wwa-step:hover .wwa-step-title { color: var(--gold); }
@media (min-width: 1024px) {
  .wwa-step-title { font-size: 21px; }
}

.wwa-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; color: var(--text-body);
  line-height: 1.6; padding: 0 8px;
  transition: color 0.25s;
}
.wwa-step:hover .wwa-step-desc { color: var(--navy); }
@media (min-width: 1024px) {
  .wwa-step-desc { font-size: 15.5px; }
}

/* Process CTA */
.wwa-process-cta {
  text-align: center;
  margin-top: 64px;
}
.wwa-process-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 22px; color: var(--navy);
  margin-bottom: 24px; letter-spacing: 0.02em;
  min-height: 1.6em;
}
.wwa-cta-cursor {
  display: inline-block;
  width: 2px; height: 0.9em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 0.75s step-end infinite;
}
.btn-develop {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(196,154,60,0.38);
  transition: background 0.25s, box-shadow 0.3s, transform 0.2s;
  position: relative; overflow: hidden;
}
@media (min-width: 1024px) {
  .btn-develop { font-size: 15px; }
}
.btn-develop::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.btn-develop:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 40px rgba(196,154,60,0.55);
  transform: translateY(-2px);
}
.btn-develop svg {
  width: 14px; height: 14px;
  stroke: var(--navy); stroke-width: 2.5; fill: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .wwa-section  { padding: 90px 48px 0; }
  .wwa-process  { padding: 70px 48px 90px; }
  .wwa-quote-strip { padding: 56px 48px; }
}
@media (max-width: 768px) {
  .wwa-section  { padding: 24px 24px 0; }
  .wwa-story    { grid-template-columns: 1fr; }
  .wwa-col      { padding: 40px 0; border-left: none !important; }
  .wwa-col:last-child { padding: 40px 0; border-top: 1px solid rgba(27,43,75,0.08); }
  .wwa-process  { padding: 24px 24px 72px; }
  .wwa-process-kicker { white-space: normal; font-size: clamp(22px, 6vw, 32px); }
  .wwa-process-sub { white-space: normal; font-size: 17px; }
  .wwa-quote-strip { padding: 48px 24px; }
  .wwa-quote-strip::before { font-size: 120px; }
  /* Steps: circle left, badge+title+desc stacked right */
  .wwa-steps { flex-direction: column; gap: 28px; align-items: stretch; }
  .wwa-steps::before { display: none; }
  .wwa-steps-fill { display: none; }
  .wwa-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "circle badge"
      "circle title"
      "circle desc";
    column-gap: 16px;
    row-gap: 4px;
    width: 100%;
    text-align: left;
  }
  .wwa-step-circle {
    grid-area: circle;
    align-self: start;
    margin: 2px 0 0 0;
    width: 48px; height: 48px; font-size: 17px;
    flex-shrink: unset;
  }
  .wwa-step-badge-spacer { display: none; }
  .wwa-step-badge {
    grid-area: badge;
    position: static;
    margin: 0 0 2px 0;
    align-self: end;
    font-size: 15px;
  }
  .wwa-step-title { grid-area: title; font-size: 17px; }
  .wwa-step-desc  { grid-area: desc; padding: 0; font-size: 17px; }
}
@media (max-width: 480px) {
  .wwa-story-wrap.expanded { max-height: 1600px; }
  .btn-develop { width: 100%; justify-content: center; font-size: 18px; }
}

/* ════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════ */
/* ── CONTACT SECTION — redesigned ── */
.contact-section {
  background: var(--cream);
  padding: 100px 52px 110px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.35), transparent);
}

.contact-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}

/* Heading block */
.contact-info { margin-bottom: 0; }
.contact-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .contact-eyebrow { font-size: 22px; }
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600; color: var(--navy);
  line-height: 1.08; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.contact-title em { color: var(--gold); font-style: italic; }
.contact-lead {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--text-body);
  line-height: 1.85; max-width: 480px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .contact-lead { font-size: 18px; }
}
.contact-gold-rule {
  display: block;
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(196,154,60,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 1.8; fill: none; }
.contact-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(27,43,75,0.45); margin-bottom: 3px;
}
.contact-detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--navy);
  text-decoration: none;
}
a.contact-detail-value:hover { color: var(--gold); }
@media (min-width: 1024px) {
  .contact-detail-label { font-size: 14px; }
  .contact-detail-value { font-size: 18px; }
}

/* Form wrap */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(27,43,75,0.08);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(27,43,75,0.06);
}
.contact-form-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--text-body);
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .contact-form-sub { font-size: 18px; }
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  padding: 14px 18px 0;
}
.form-group {
  border: 1px solid rgba(27,43,75,0.14);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group:focus-within {
  border-color: rgba(196,154,60,0.6);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.08);
}
.form-input, .form-select, .form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--navy);
  background: transparent;
  border: none; border-radius: 0;
  padding: 10px 18px 14px;
  outline: none;
  transition: none;
  width: 100%;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; box-shadow: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(27,43,75,0.3); }
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Contact info below form */
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: var(--text-muted);
  margin-top: 16px; line-height: 1.7;
}
.form-note strong { color: rgba(196,154,60,0.7); }

/* Submit button — outlined gold style */
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  padding: 15px 44px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn-submit::before { display: none; }
.btn-submit span { display: flex; align-items: center; gap: 10px; }
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,154,60,0.28);
}
.btn-submit svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* Success message */
.form-success {
  display: none;
  text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(196,154,60,0.12);
  border: 1.5px solid rgba(196,154,60,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success-icon svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 2; fill: none; }
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--text-body); line-height: 1.7;
}

@media (max-width: 1024px) {
  .contact-section { padding: 90px 48px 100px; }
  .contact-inner { gap: 52px; }
  .contact-form-wrap { padding: 40px 36px; }
}
@media (max-width: 768px) {
  .contact-section { padding: 24px 24px 80px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-lead { max-width: 100%; font-size: 18px; }
  .contact-detail-label { font-size: 18px; }
  .contact-detail-value { font-size: 18px; }
  .contact-eyebrow { font-size: 20px; }
  .contact-title br { display: none; }
  .contact-title { white-space: nowrap; font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .contact-section { padding: 24px 16px 64px; }
  .contact-title { font-size: 22px; white-space: nowrap; }
  .contact-title br { display: none; }
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 75%, transparent 100%);
}

.footer-top {
  padding: 80px 80px 64px;
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* Brand column */
.footer-brand {}
.footer-logo {
  display: block; margin-bottom: 20px;
}
.footer-logo img { height: 100px; width: auto; object-fit: contain; opacity: 0.92; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.65; margin-bottom: 24px;
  max-width: 260px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
}
.footer-social-link:hover { border-color: var(--gold); background: rgba(196,154,60,0.1); }
.footer-social-link svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.5); stroke-width: 1.8; fill: none; transition: stroke 0.25s; }
.footer-social-link:hover svg { stroke: var(--gold); }

/* Nav columns */
.footer-col {}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li {}
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.22s;
  letter-spacing: 0.01em;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

/* Contact column */
.footer-contact {}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.footer-contact-icon svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 1.8; fill: none; }
.footer-contact-text {}
.footer-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 2px;
}
.footer-contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.2s;
}
a.footer-contact-value:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 80px;
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.footer-copy a { color: var(--gold); text-decoration: none; opacity: 0.7; }
.footer-copy a:hover { opacity: 1; }
.footer-legal {
  display: flex; align-items: center; gap: 20px;
}
.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: rgba(255,255,255,0.75);
  text-decoration: underline; text-underline-offset: 3px;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }
.footer-legal-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.10); }
@media (min-width: 769px) {
  .footer-col-title        { font-size: 15px; }
  .footer-col ul li a      { font-size: 15px; }
  .footer-contact-label    { font-size: 15px; }
  .footer-contact-value    { font-size: 15px; }
  .footer-copy             { font-size: 15px; }
  .footer-legal a          { font-size: 15px; }
}

/* Gold badge */
.footer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 50px;
  border: 1px solid rgba(196,154,60,0.22);
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(196,154,60,0.60);
}
.footer-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

@media (max-width: 1024px) {
  .footer-top { padding: 64px 48px 52px; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 48px; }
}
@media (max-width: 768px) {
  .footer-top { padding: 52px 24px 44px; grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; text-align: center; gap: 12px; }
  .footer-badge { display: none; }
  .footer-tagline { font-size: 17px; }
  .footer-col-title { font-size: 17px; }
  .footer-col ul li a { font-size: 17px; }
  .footer-contact-label { font-size: 17px; }
  .footer-contact-value { font-size: 17px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; padding: 44px 16px 36px; }
  .footer-bottom { padding: 16px; }
  .footer-legal { gap: 14px; }
}

/* ════════════════════════════════════
   DATA VISUALIZATION SECTIONS
════════════════════════════════════ */
.dviz-section {
  background: var(--navy-deep);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.dviz-section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.35), transparent);
}
.dviz-section--alt { background: #0B1422; }
#revenue-curve { padding-top: 28px; }
#market-shift  { padding-top: 32px; }
#faq           { padding-top: 28px; }

.dviz-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.dviz-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.dviz-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
@media (min-width: 769px) {
  .dviz-eyebrow { font-size: 15px; }
}
.dviz-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 600; color: #fff;
  line-height: 1.1; margin-bottom: 10px;
}
.dviz-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 52px; max-width: 600px;
}
@media (min-width: 1024px) {
  .dviz-title {
    font-size: 34px;
    white-space: nowrap;
  }
  .dviz-sub {
    max-width: 100%;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .dviz-sub { font-size: 17px; color: rgba(255,255,255,0.75); }
}

/* ── S1: Market Shift Bar Chart ── */
.chart-legend { display: flex; gap: 22px; margin-bottom: 28px; }
.legend-item { display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; }
.legend-dot--branded { background: var(--gold); }
.legend-dot--independent { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2); }

.market-chart { display: flex; flex-direction: column; gap: 18px; }
.chart-row { display: flex; align-items: center; gap: 20px; }
.chart-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--gold);
  width: 52px; flex-shrink: 0; letter-spacing: -0.01em;
}
.chart-row.chart-projected .chart-year { color: var(--gold); }

.chart-bar-wrap {
  flex: 1; height: 42px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px; overflow: hidden;
  display: flex; position: relative;
}
.chart-bar-branded {
  height: 100%;
  background: linear-gradient(90deg, #C49A3C 0%, #D4AC52 60%, #F0CB6A 100%);
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 12px;
  width: 0;
  transition: width 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  position: relative; overflow: hidden;
}
.chart-bar-branded::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 55%);
}
.chart-row.chart-projected .chart-bar-branded {
  background: linear-gradient(90deg, rgba(196,154,60,0.38) 0%, rgba(212,172,82,0.45) 100%);
  border-right: 1.5px dashed rgba(196,154,60,0.55);
}
.chart-bar-independent {
  flex: 1; height: 100%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; padding-left: 12px;
}
.bar-pct-branded {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 800;
  color: #111E35; letter-spacing: 0.04em; z-index: 1; white-space: nowrap;
}
.chart-row.chart-projected .bar-pct-branded { color: rgba(196,154,60,0.8); }
.bar-pct-independent {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.28); letter-spacing: 0.04em;
}
.chart-row-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gold); width: 76px; flex-shrink: 0;
  text-align: right;
}

/* ── S3: Urgency Timeline ── */
.urgency-timeline {
  display: flex;
  gap: 0;
  position: relative;
  padding-top: 8px;
}
.urgency-connector {
  position: absolute;
  top: 36px; left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(34,197,94,0.4) 0%,
    rgba(196,154,60,0.35) 50%,
    rgba(239,68,68,0.45) 100%
  );
}
.urgency-node {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.urgency-node.node-in { opacity: 1; transform: translateY(0); }
.urgency-node:nth-child(2) { transition-delay: 0.25s; }
.urgency-node:nth-child(3) { transition-delay: 0.5s; }

.urgency-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
  position: relative; z-index: 2;
  border: 1.5px solid transparent;
  background: #0B1422;
}
.urgency-icon--green {
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 0 24px rgba(34,197,94,0.15);
}
.urgency-icon--amber {
  border-color: rgba(196,154,60,0.45);
  box-shadow: 0 0 24px rgba(196,154,60,0.18);
}
.urgency-icon--red {
  border-color: rgba(239,68,68,0.45);
  box-shadow: 0 0 24px rgba(239,68,68,0.18);
}
.urgency-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; color: #fff;
  line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em;
}
.urgency-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.65; max-width: 190px; margin: 0 auto;
}
.urgency-desc strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* ── S4: City Demand Grid ── */
.demand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.demand-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(196,154,60,0.1);
  border-radius: 18px;
  padding: 26px 22px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, border-color 0.3s;
}
.demand-card.card-in { opacity: 1; transform: translateY(0); }
.demand-card:hover { background: rgba(255,255,255,0.065); border-color: rgba(196,154,60,0.28); }
.demand-card:nth-child(2) { transition-delay: 0.1s; }
.demand-card:nth-child(3) { transition-delay: 0.2s; }
.demand-card:nth-child(4) { transition-delay: 0.3s; }
.demand-card:nth-child(5) { transition-delay: 0.4s; }
.demand-card:nth-child(6) { transition-delay: 0.5s; }

.demand-glow {
  position: absolute; top: -16px; right: -16px;
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.demand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-bottom: 14px;
  box-shadow: 0 0 0 4px rgba(196,154,60,0.15), 0 0 14px rgba(196,154,60,0.45);
  animation: demandPulse 2.2s ease-in-out infinite;
}
@keyframes demandPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196,154,60,0.15), 0 0 14px rgba(196,154,60,0.45); }
  50%       { box-shadow: 0 0 0 8px rgba(196,154,60,0.08), 0 0 28px rgba(196,154,60,0.65); }
}
.demand-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: #fff;
  margin-bottom: 5px; line-height: 1;
}
.demand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.65;
}
.demand-bar {
  margin-top: 18px; height: 2px;
  background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden;
}
.demand-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0; transition: width 1.3s cubic-bezier(0.25,0.46,0.45,0.94);
  border-radius: 2px;
}

/* ── S5: Revenue Curve ── */
.revenue-legend { display: flex; gap: 28px; margin-bottom: 32px; }
.rev-legend-item { display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.45); }
.rev-legend-line { width: 28px; height: 2.5px; border-radius: 2px; }
.rev-legend-line--branded { background: var(--gold); }
.rev-legend-line--independent { background: linear-gradient(90deg, #4A5568, #8A9BB0); opacity: 0.6; }

.revenue-svg { width: 100%; overflow: visible; display: block; }

.rev-path-branded {
  stroke: url(#brandedLineGrad); stroke-width: 3; fill: none;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: drop-shadow(0 0 8px rgba(212,172,82,0.65));
}
.rev-path-independent {
  stroke: url(#independentLineGrad); stroke-width: 2; fill: none;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s cubic-bezier(0.25,0.46,0.45,0.94);
  stroke-dasharray: 6 4;
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}
.rev-area-branded {
  fill: url(#brandedGrad); opacity: 0;
  transition: opacity 1s ease 1.8s;
}
.rev-area-independent {
  fill: url(#independentGrad); opacity: 0;
  transition: opacity 0.8s ease 1.4s;
}
.rev-path-branded.rev-animate { stroke-dashoffset: 0; }
.rev-path-independent.rev-animate { opacity: 0.55; }
.rev-area-branded.rev-animate { opacity: 1; }
.rev-area-independent.rev-animate { opacity: 1; }
.rev-path-branded.rev-animate { stroke-dashoffset: 0; }
.rev-path-independent.rev-animate { stroke-dashoffset: 0; }
.rev-area-branded.rev-animate { opacity: 1; }
.rev-area-independent.rev-animate { opacity: 1; }

.revenue-tagline {
  text-align: center; margin-top: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic; color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.revenue-tagline em { color: var(--gold); font-style: italic; }

@media (max-width: 768px) {
  .dviz-section { padding: 64px 24px; }
  .demand-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-timeline { flex-direction: column; gap: 40px; }
  .urgency-connector { display: none; }
}

/* ══ Market Intelligence Chart ══ */
.mkt-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  margin-top: 52px;
  position: relative;
}
.mkt-chart::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.mkt-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mkt-bar-keys {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.35;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease 1s, transform 0.5s ease 1s;
}
.mkt-col.anim .mkt-bar-keys { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) {
  .mkt-bar-keys { font-size: 17px; }
}
.mkt-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(180deg, rgba(196,154,60,0.9) 0%, rgba(196,154,60,0.35) 100%);
  position: relative;
}
.mkt-col.projected .mkt-bar {
  background: transparent;
  border: 1.5px dashed rgba(196,154,60,0.5);
  border-bottom: none;
}
.mkt-col.projected .mkt-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(196,154,60,0.1) 0%, transparent 100%);
  border-radius: 3px 3px 0 0;
}
.mkt-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  margin-bottom: 5px;
}
.mkt-col.projected .mkt-year { color: rgba(196,154,60,0.9); }
.mkt-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  line-height: 1.55;
}
@media (min-width: 1024px) {
  .mkt-desc { font-size: 14px; }
}
.mkt-projected-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,154,60,0.7);
  border: 1px solid rgba(196,154,60,0.35);
  padding: 2px 7px;
  border-radius: 2px;
  margin-top: 5px;
}
.mkt-note {
  margin-top: 36px;
  padding: 18px 22px;
  background: rgba(196,154,60,0.06);
  border-left: 2px solid rgba(196,154,60,0.5);
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}
.mkt-note strong { color: rgba(255,255,255,0.82); }
@media (min-width: 1024px) {
  .mkt-note { font-size: 18px; }
}

/* ══ Revenue Intelligence ══ */
.rev-metrics {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.rev-metric-row { display: flex; flex-direction: column; gap: 12px; }
.rev-metric-hdr { display: flex; justify-content: space-between; align-items: center; }
.rev-metric-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 769px) {
  .rev-metric-name { font-size: 15px; }
}
.rev-metric-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(196,154,60,0.1);
  border: 1px solid rgba(196,154,60,0.2);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
@media (min-width: 769px) {
  .rev-metric-badge { font-size: 17px; }
}
.rev-bars { display: flex; flex-direction: column; gap: 10px; }
.rev-bar-row { display: flex; align-items: center; gap: 12px; }
.rev-bar-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  width: 78px;
  text-align: right;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.rev-bar-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.rev-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.rev-bar-fill--ind { background: rgba(138,155,176,0.45); }
.rev-bar-fill--brand { background: linear-gradient(90deg, #C49A3C, #F0CB6A); }
.rev-bar-val {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  width: 96px;
  flex-shrink: 0;
  line-height: 1.3;
}
.rev-bar-row--brand .rev-bar-lbl { color: rgba(196,154,60,0.65); }
.rev-bar-row--brand .rev-bar-val { color: rgba(196,154,60,0.9); font-weight: 600; }
@media (min-width: 769px) {
  .rev-bar-lbl { font-size: 14px; }
  .rev-bar-val { font-size: 14px; }
}
.rev-divider-line { height: 1px; background: rgba(255,255,255,0.06); margin: 2px 0; }

.rev-premium-card {
  margin-top: 44px;
  background: linear-gradient(135deg, rgba(196,154,60,0.1) 0%, rgba(196,154,60,0.03) 100%);
  border: 1px solid rgba(196,154,60,0.22);
  border-radius: 8px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.rev-premium-num {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.rev-premium-card.anim .rev-premium-num { opacity: 1; transform: scale(1); }
.rev-premium-copy { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.75; }
.rev-premium-copy strong { color: rgba(255,255,255,0.88); display: block; font-size: 17px; font-family: 'Playfair Display',serif; margin-bottom: 6px; letter-spacing: -0.01em; }

@media (max-width: 768px) {
  .mkt-bar-keys { font-size: 17px; }
  .mkt-year { font-size: 14px; }
  .mkt-desc { font-size: 15px; color: rgba(255,255,255,0.75); min-height: 100px; }
  .mkt-note { display: none; }
  .rev-bar-lbl { width: 56px; font-size: 11px; color: rgba(255,255,255,0.75); }
  .rev-bar-row--brand .rev-bar-lbl { color: var(--gold); }
  .rev-bar-val { width: 80px; font-size: 13px; color: rgba(255,255,255,0.75); }
  .rev-premium-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .rev-premium-num { font-size: 54px; }
  .rev-premium-copy { font-size: 17px; color: rgba(255,255,255,0.75); }
  .rev-premium-copy strong { font-size: 15px; }
}

/* ══ FAQ Section ══ */
.faq-section {
  background: var(--navy-deep);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.25), transparent);
}
.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: 0 -24px;
  padding: 0 24px;
  border-radius: 6px;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-item:not(.open):hover {
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 0 0 1px rgba(196,154,60,0.12);
}
.faq-item.open {
  background: rgba(196,154,60,0.05);
  box-shadow: inset 0 0 0 1px rgba(196,154,60,0.18);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 26px 0;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: padding-left 0.3s ease;
}
.faq-item.open .faq-trigger {
  padding-left: 18px;
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  flex: 1;
  position: relative;
  transition: color 0.25s ease;
}
.faq-q::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-q::after {
  width: 100%;
}
.faq-item:hover .faq-q { color: rgba(255,255,255,0.96); }
.faq-item.open .faq-q { color: #fff; }
.faq-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(196,154,60,0.65);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), background 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.faq-item:not(.open):hover .faq-icon {
  transform: rotate(30deg);
  border-color: rgba(196,154,60,0.6);
  color: var(--gold);
  background: rgba(196,154,60,0.08);
  box-shadow: 0 0 12px rgba(196,154,60,0.2);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(196,154,60,0.14);
  border-color: rgba(196,154,60,0.6);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(196,154,60,0.25);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-body { max-height: 700px; }
.faq-answer {
  padding: 2px 0 28px 20px;
  font-size: 20px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
}
.faq-answer p { margin: 0 0 10px 0; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ol {
  margin: 6px 0 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-answer ol li { color: rgba(255,255,255,0.72); }
.faq-answer strong { color: rgba(255,255,255,0.72); font-weight: 600; }

@media (max-width: 768px) {
  .faq-section { padding: 56px 20px; }

  /* reset desktop negative-margin trick to full bleed on mobile */
  .faq-item { margin: 0 -20px; padding: 0 20px; border-radius: 0; }
  .faq-item:first-child { border-top: none; }
  .faq-list { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 36px; }

  /* counter numbers */
  .faq-list { counter-reset: faq; }
  .faq-item { counter-increment: faq; }
  .faq-trigger { padding: 22px 0; gap: 14px; }
  .faq-trigger::before {
    content: counter(faq, decimal-leading-zero);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    width: 24px;
    transition: color 0.25s ease;
  }
  .faq-item.open .faq-trigger::before { color: var(--gold); }
  .faq-item:not(.open):hover .faq-trigger::before { color: rgba(196,154,60,0.8); }

  /* question */
  .faq-q { font-size: 16px; line-height: 1.45; }
  .faq-item.open .faq-trigger { padding-left: 0; }

  /* icon — slightly smaller */
  .faq-icon { width: 30px; height: 30px; }

  /* answer */
  .faq-answer {
    font-size: 17px;
    line-height: 1.8;
    padding: 4px 0 22px 38px;
    color: rgba(255,255,255,0.75);
  }

  /* open item — stronger gold tint */
  .faq-item.open {
    background: rgba(196,154,60,0.07);
    box-shadow: none;
    border-left: 2px solid rgba(196,154,60,0.45);
    padding-left: 18px;
  }
  .faq-item:not(.open):hover {
    background: rgba(255,255,255,0.025);
    box-shadow: none;
  }

  /* gold dash aligns with text (after the number) */
  .faq-q::after { bottom: -6px; }
}

/* ════════════════════════════════════
   WHATSAPP FLOAT BUTTON
════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  z-index: 9999;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  overflow: hidden;
}
.wa-float img {
  width: 62px;
  height: 62px;
  display: block;
  border-radius: 16px;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
@media (max-width: 768px) {
  .wa-float { bottom: 20px; right: 16px; width: 54px; height: 54px; border-radius: 14px; }
  .wa-float img { width: 54px; height: 54px; }
}

/* ════════════════════════════════════
   BLOG SECTION
════════════════════════════════════ */
.blog-section {
  background: var(--navy);
  padding: 100px 48px;
}
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-header { text-align: center; margin-bottom: 56px; }
.blog-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
}
.blog-title em { color: var(--gold); font-style: italic; }
.blog-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(0,0,0,0.32); }
.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 3px 8px; border-radius: 2px;
}
.blog-card-date { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(27,43,75,0.45); }
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--navy);
  line-height: 1.3; margin-bottom: 14px;
}
.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(27,43,75,0.65);
  line-height: 1.75; margin-bottom: 24px;
}
.blog-card-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1.5px solid var(--gold);
  padding: 10px 24px; text-decoration: none;
  border-radius: 2px; transition: background 0.25s, color 0.25s;
}
.blog-card-btn:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 768px) {
  .blog-section { padding: 64px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-title { font-size: 20px; }
}
@media (max-width: 480px) {
  .blog-section { padding: 48px 16px; }
}
