/* ============================================================
   YOUNGHAIR — Apple-style glassmorphism landing
   ============================================================ */

:root {
  /* Primary palette */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --cream: #F7F4ED;
  --cream-soft: #FCFAF5;

  /* Blue tones */
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-900: #1E3A8A;

  --navy-deep: #0A1733;

  /* Gold */
  --gold: #C9A579;
  --gold-soft: #D4B98A;
  --gold-faint: rgba(201, 165, 121, 0.14);
  --gold-border: rgba(201, 165, 121, 0.32);

  /* Text */
  --ink: #0F172A;
  --ink-soft: #1E293B;
  --gray-700: #334155;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;

  --whatsapp: #25D366;
  --whatsapp-deep: #1FB855;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.66);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  --glass-shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.05);

  /* Brand gradients */
  --gradient-brand: linear-gradient(135deg, #3B82F6 0%, #60A5FA 40%, #93C5FD 75%, #DBEAFE 100%);
  --gradient-soft:  linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 50%, #FAFBFC 100%);
  --gradient-gold:  linear-gradient(135deg, #D4B98A 0%, #C9A579 50%, #B8956A 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%);

  /* Typography — single family */
  --font-primary: 'Assistant', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-display: var(--font-primary);
  --font-body: var(--font-primary);
  --w-light: 300;
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --w-extrabold: 800;

  /* Type scale — premium, restrained */
  --text-hero:    clamp(40px, 5.5vw, 76px);
  --text-h2:      clamp(32px, 4.2vw, 56px);
  --text-h3:      clamp(24px, 2.8vw, 36px);
  --text-h4:      clamp(20px, 2.2vw, 26px);
  --text-lead:    clamp(17px, 1.4vw, 20px);
  --text-body:    clamp(15px, 1.1vw, 17px);
  --text-sm:      clamp(13px, 0.95vw, 14.5px);
  --text-eyebrow: clamp(11px, 0.85vw, 13px);
  --text-stat:    clamp(36px, 4.5vw, 56px);

  /* Line heights */
  --lh-display: 1.02;
  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.5;
  --lh-relaxed: 1.7;
  --lh-loose:   1.85;

  /* Letter spacing */
  --ls-tighter: -0.035em;
  --ls-tight:   -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.02em;
  --ls-wider:   0.08em;
  --ls-widest:  0.18em;

  /* Multi-layer shadows */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04), 0 1px 1px rgba(15,23,42,0.02);
  --shadow-sm: 0 2px 4px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.03);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.08), 0 4px 12px rgba(15,23,42,0.05), 0 2px 4px rgba(15,23,42,0.03);
  --shadow-xl: 0 24px 64px rgba(15,23,42,0.12), 0 12px 24px rgba(15,23,42,0.08), 0 4px 8px rgba(15,23,42,0.04);
  --shadow-brand:    0 8px 32px rgba(59,130,246,0.25), 0 4px 12px rgba(59,130,246,0.15);
  --shadow-brand-lg: 0 16px 48px rgba(59,130,246,0.35), 0 8px 16px rgba(59,130,246,0.18);
  --shadow-gold:     0 8px 24px rgba(201,165,121,0.25), 0 4px 8px rgba(201,165,121,0.12);

  /* Layout */
  --container: 1200px;
  --container-narrow: 960px;
  --nav-h: 76px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------- Reset ----------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-top: var(--nav-h);
  font-family: var(--font-primary);
  font-weight: var(--w-regular);
  color: var(--gray-700);
  font-size: var(--text-body);
  line-height: var(--lh-relaxed);
  background:
    radial-gradient(1200px 600px at 80% -100px, rgba(191, 219, 254, 0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(247, 244, 237, 0.7), transparent 60%),
    linear-gradient(180deg,
      #FFFFFF 0%,
      #FAFBFC 18%,
      #F7F4ED 38%,
      #EFF6FF 55%,
      #FAFBFC 75%,
      #FFFFFF 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: 6px; }

/* ----------- Typography ----------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: var(--w-semibold);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--font-primary);
  font-weight: var(--w-extrabold);
  color: var(--ink);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tighter);
  font-size: var(--text-hero);
  margin: 0 0 28px;
  overflow-wrap: break-word;
  word-break: normal;
}
.display em {
  font-style: normal;
  color: var(--gold);
  font-weight: var(--w-bold);
}
.display--md {
  font-size: var(--text-h2);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.display--sm {
  font-size: var(--text-h3);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  font-weight: var(--w-bold);
}

.lede {
  font-size: var(--text-lead);
  color: var(--gray-700);
  margin: 0 0 32px;
  line-height: var(--lh-relaxed);
  max-width: 62ch;
}
.body {
  font-size: var(--text-body);
  color: var(--gray-700);
  line-height: var(--lh-loose);
  margin: 0 0 22px;
}
.section-sub {
  font-size: var(--text-lead);
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}
.section-sub--tight { margin: 6px 0 22px; }

/* ----------- Container & sections ----------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section {
  padding-top: clamp(80px, 12vw, 180px);
  padding-bottom: clamp(80px, 12vw, 180px);
  position: relative;
}
.section-head {
  max-width: 800px;
  margin: 0 auto clamp(60px, 8vw, 100px);
}
.section--hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 85% 15%, rgba(147, 197, 253, 0.42) 0%, transparent 60%),
    radial-gradient(45% 35% at 8% 75%, rgba(201, 165, 121, 0.18) 0%, transparent 60%),
    radial-gradient(80% 60% at 50% 110%, rgba(219, 234, 254, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F8FF 100%);
}
.section--hero::before {
  content: '';
  position: absolute;
  top: 10%;
  inset-inline-start: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59,130,246,0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.section--hero > * { position: relative; z-index: 1; }
.section--story {
  background: linear-gradient(180deg, #FAFBFC 0%, #F7F4ED 100%);
}
.section--why {
  background:
    radial-gradient(circle at top left, rgba(219, 234, 254, 0.45), transparent 60%),
    linear-gradient(180deg, #F7F4ED 0%, #EFF6FF 100%);
}
.section--results {
  background: linear-gradient(180deg, #EFF6FF 0%, #FAFBFC 100%);
}
.section--videos {
  background:
    radial-gradient(ellipse at top, rgba(147, 197, 253, 0.16), transparent 60%),
    linear-gradient(180deg, #FAFBFC 0%, #F0F7FF 100%);
}
.section--contact {
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}
.section-head { text-align: center; }
.section-head .display { margin-bottom: 18px; }

/* ----------- Glass surfaces ----------- */
.glass-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.35) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(15,23,42,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 1px 2px rgba(15,23,42,0.04),
    0 12px 32px rgba(15,23,42,0.06),
    0 24px 64px rgba(15,23,42,0.04);
  padding: 36px;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 60% at 30% 0%, rgba(255,255,255,0.5) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.7;
}
.glass-card > * { position: relative; z-index: 1; }

.glass-card--strong {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 100%);
  backdrop-filter: blur(50px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
}

.glass-card-light {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 100%);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 8px 24px rgba(15,23,42,0.08),
    0 16px 40px rgba(15,23,42,0.04);
}

.glass-chip {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(15,23,42,0.04),
    0 1px 2px rgba(15,23,42,0.04),
    0 8px 24px rgba(15,23,42,0.05),
    0 16px 40px rgba(15,23,42,0.03);
}
.glass-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 60% at 30% 0%, rgba(255,255,255,0.55) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.65;
}
.glass-chip > * { position: relative; z-index: 1; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn--solid {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.08) 100%),
    linear-gradient(135deg, #1E40AF 0%, #2563EB 40%, #3B82F6 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 1px rgba(10,23,51,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 1px 2px rgba(15,23,42,0.10),
    0 8px 24px rgba(37,99,235,0.32),
    0 16px 40px rgba(37,99,235,0.18);
}
.btn--solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 80% at 20% -20%, rgba(255,255,255,0.42) 0%, transparent 55%);
  opacity: 0.65;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.btn--solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.30) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 2px 4px rgba(15,23,42,0.12),
    0 14px 36px rgba(37,99,235,0.42),
    0 28px 64px rgba(37,99,235,0.22);
}
.btn--solid:hover::after { opacity: 1; }
.btn--glass {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  color: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(15,23,42,0.05),
    0 1px 2px rgba(15,23,42,0.06),
    0 10px 28px rgba(15,23,42,0.08),
    0 20px 48px rgba(15,23,42,0.04);
}
.btn--glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 60% at 30% 0%, rgba(255,255,255,0.6) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
.btn--glass:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.45) 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(15,23,42,0.06),
    0 2px 4px rgba(15,23,42,0.08),
    0 16px 40px rgba(15,23,42,0.12),
    0 28px 64px rgba(15,23,42,0.06);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-deep);
  border: 1px solid var(--gray-300);
  padding: 13px 26px;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; padding: 16px 26px; font-size: 16px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 24px rgba(15, 23, 42, 0.04);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 32px rgba(15, 23, 42, 0.08);
}
.nav__inner {
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__brand { display: flex; align-items: center; background: transparent; }
.nav__brand img,
.nav__logo {
  height: 32px;
  width: auto;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-inline-start: auto;
}
.lang-btn {
  font-size: 12.5px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.05em;
  color: var(--gray-500);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all .3s var(--ease);
  text-decoration: none;
  line-height: 1;
}
.lang-btn--active {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.28);
}
.lang-btn:not(.lang-btn--active):hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.lang-divider {
  width: 1px;
  height: 14px;
  background: var(--gray-300);
}
.nav__links {
  position: relative;
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav__link {
  position: relative;
  font-size: 15px;
  font-weight: var(--w-medium);
  color: var(--gray-700);
  padding: 10px 16px;
  letter-spacing: 0.01em;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .35s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.nav__link:hover { color: var(--ink); }
.nav__link.active { color: var(--ink); font-weight: var(--w-semibold); }
.nav__link.active::after,
.nav__link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav__indicator { display: none; }
.nav__cta { margin-inline-start: 4px; }
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
  background: rgba(15,23,42,0.25);
}
.drawer[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: min(320px, 86vw);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-inline-start: 1px solid var(--glass-border);
  padding: calc(var(--nav-h) + 24px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }
.drawer__link {
  padding: 14px 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-100);
}
.drawer__cta { margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat { padding: 18px 20px; text-align: center; }
.stat__num {
  font-family: var(--font-primary);
  font-size: var(--text-stat);
  font-weight: var(--w-extrabold);
  margin-bottom: 8px;
  letter-spacing: var(--ls-tighter);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: var(--w-medium);
  letter-spacing: var(--ls-wide);
  line-height: 1.4;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(59, 130, 246, 0.10);
}
.hero__image { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero__image-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(closest-side, rgba(59, 130, 246, 0.18), transparent 70%),
    radial-gradient(closest-side at 30% 70%, rgba(201, 165, 121, 0.16), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}
.hero__signature-card {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  inset-inline-end: 24px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.hero__signature-card strong {
  font-size: 15px;
  font-weight: var(--w-bold);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.hero__signature-card span {
  font-size: 13px;
  font-weight: var(--w-regular);
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(15,23,42,0.16),
    0 0 0 1px rgba(201,165,121,0.18);
}
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,23,51,0.18));
  pointer-events: none;
}
.story__copy { max-width: 640px; }
.pullquote {
  font-family: var(--font-primary);
  font-weight: var(--w-semibold);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.55;
  margin: 36px 0;
  padding: 28px 4px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  letter-spacing: -0.01em;
}
.signature {
  font-family: var(--font-primary);
  font-weight: var(--w-bold);
  font-size: 16px;
  color: var(--gold);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  padding: 44px 36px 40px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(15,23,42,0.05),
    0 2px 4px rgba(15,23,42,0.06),
    0 20px 48px rgba(15,23,42,0.10),
    0 36px 80px rgba(37,99,235,0.08);
}
.why-card__num {
  font-family: var(--font-primary);
  font-weight: var(--w-extrabold);
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.9;
  margin-bottom: 28px;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 45%, #93C5FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  position: relative;
}
.why-card__num::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 18px;
  opacity: 0.7;
  border-radius: 2px;
}
.why-card__title {
  font-family: var(--font-primary);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: var(--w-bold);
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.why-card__body { font-size: 15.5px; color: var(--gray-700); line-height: 1.75; margin: 0; font-weight: var(--w-regular); }

/* ============================================================
   GALLERY — editorial asymmetric grid
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 22px;
  overflow: hidden;
  background: var(--gradient-soft);
  cursor: pointer;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.6),
    0 4px 16px rgba(15,23,42,0.06),
    0 12px 32px rgba(15,23,42,0.04);
}
.gallery__item:nth-child(1) { grid-column: span 3; grid-row: span 3; }
.gallery__item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery__item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; grid-row: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .55s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 23, 51, 0.7) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.8),
    0 14px 32px rgba(15,23,42,0.10),
    0 28px 64px rgba(15,23,42,0.08);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }

.gallery__item-caption {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 18px;
  inset-inline-end: 18px;
  color: #fff;
  font-size: 13.5px;
  font-weight: var(--w-semibold);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  letter-spacing: 0.01em;
}
.gallery__item:hover .gallery__item-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery__more { display: flex; justify-content: center; margin-top: 36px; }
.gallery--hidden { margin-top: 20px; }

/* ============================================================
   VIDEO WALL
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.video-tile {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--gradient-soft);
  cursor: pointer;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.5),
    0 4px 16px rgba(15,23,42,0.08),
    0 12px 32px rgba(15,23,42,0.06);
}
.video-tile video,
.video-tile img.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,23,51,0.55) 100%);
  pointer-events: none;
  transition: background .45s var(--ease);
}
.video-tile:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.7),
    0 14px 32px rgba(15,23,42,0.16),
    0 28px 64px rgba(37,99,235,0.10);
}
.video-tile:hover::after { background: linear-gradient(180deg, transparent 35%, rgba(10,23,51,0.35) 100%); }
.video-tile__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.video-tile__play-btn {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  display: grid;
  place-items: center;
  color: var(--blue-600);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(15,23,42,0.06),
    0 2px 6px rgba(15,23,42,0.16),
    0 12px 32px rgba(15,23,42,0.28),
    0 20px 48px rgba(15,23,42,0.12);
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.video-tile__play-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 60% at 30% 0%, rgba(255,255,255,0.7) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.8;
}
.video-tile:hover .video-tile__play-btn {
  transform: scale(1.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 100%);
}
.video-tile__play-btn svg { position: relative; z-index: 1; margin-inline-start: 3px; }
.video-tile__tag {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,23,51,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.testimonial {
  padding: 32px 32px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 14px;
  inset-inline-start: 22px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.45;
}
.testimonial__quote {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.8;
  margin: 0 0 16px;
  padding-top: 18px;
}
.testimonial__author {
  font-family: var(--font-primary);
  font-weight: var(--w-bold);
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.contact__form-wrap {
  padding: clamp(32px, 4vw, 48px);
}
.contact__form-wrap .display { margin-bottom: 6px; }

.form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.field__input {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 16px;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(15,23,42,0.04),
    0 1px 2px rgba(15,23,42,0.03);
  transition:
    border-color .3s var(--ease),
    box-shadow .3s var(--ease),
    background .3s var(--ease),
    transform .3s var(--ease);
}
.field__input::placeholder { color: var(--gray-400); }
.field__input:hover {
  border-color: rgba(59,130,246,0.25);
}
.field__input:focus {
  outline: none;
  border-color: rgba(59,130,246,0.55);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 0 0 4px rgba(59,130,246,0.14),
    0 8px 24px rgba(59,130,246,0.10);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  cursor: pointer;
  margin-top: 4px;
}
.checkbox input { margin-top: 4px; accent-color: var(--blue-500); width: 16px; height: 16px; }
.form__legal {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 8px 0 0;
  text-align: center;
}
.form__success {
  text-align: center;
  padding: 30px 10px;
}
.form__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.form__success h3 {
  font-family: var(--font-primary);
  color: var(--ink);
  font-weight: var(--w-bold);
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.form__success p { color: var(--gray-500); margin: 0; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
}
.info-row__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  flex-shrink: 0;
}
.info-row__icon--green { background: rgba(37,211,102,0.12); color: #128c3e; }
.info-row__label { font-size: 12px; font-weight: 600; color: var(--gray-500); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.info-row__value { font-size: 16px; color: var(--ink); font-weight: 500; }
a.info-row__value:hover { color: var(--blue-600); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
    radial-gradient(40% 40% at 90% 100%, rgba(201, 165, 121, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0A1733 0%, #050B1F 100%);
  color: #BFC9DA;
  margin-top: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 165, 121, 0.4) 30%,
    rgba(201, 165, 121, 0.6) 50%,
    rgba(201, 165, 121, 0.4) 70%,
    transparent 100%);
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: clamp(60px, 7vw, 90px) 28px;
}
.footer__logo { height: 64px; width: 64px; border-radius: 50%; margin-bottom: 16px; }
.footer__tag { color: #94A3B8; max-width: 320px; line-height: 1.7; }
.footer__title {
  font-family: var(--font-primary);
  font-weight: var(--w-bold);
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 8px 0 18px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__list a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 2px 8px rgba(0,0,0,0.2);
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.footer__social a:hover {
  background: linear-gradient(180deg, #D4B98A 0%, #C9A579 100%);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 8px 24px rgba(201,165,121,0.35);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #94A3B8;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
}
.footer__bottom-links {
  display: flex;
  gap: 22px;
}
.footer__bottom-link {
  color: #94A3B8;
  transition: color .25s var(--ease);
}
.footer__bottom-link:hover { color: var(--gold); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1.display { margin-bottom: 6px; }
.legal__meta {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}
.legal h2 {
  font-family: var(--font-primary);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: var(--w-bold);
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal p, .legal ul {
  color: var(--gray-700);
  font-size: var(--text-body);
  line-height: var(--lh-loose);
  margin: 0 0 16px;
}
.legal ul { padding-inline-start: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue-600); border-bottom: 1px solid transparent; transition: border-color .25s var(--ease); }
.legal a:hover { border-bottom-color: var(--blue-400); }
.legal__back { margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--gray-200); }

/* ============================================================
   FLOATING CONTACT BUTTONS
   ============================================================ */
.floating-contact {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: var(--w-semibold);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  color: var(--ink);
}
.floating-btn:hover { transform: translateY(-3px) scale(1.02); }
.floating-btn__label { letter-spacing: 0.01em; }

.floating-btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1FB855 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.floating-btn--whatsapp:hover {
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

.floating-btn--phone {
  width: 50px;
  height: 50px;
  padding: 0;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 50%;
}
.floating-btn--phone:hover {
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox[data-open="true"] { opacity: 1; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,23,51,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox__inner {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close {
  position: absolute;
  top: -8px;
  inset-inline-end: -8px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--navy-deep);
  font-size: 26px;
  line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(15,23,42,0.3);
  z-index: 2;
  transform: translate(50%, -50%);
}
[dir="rtl"] .lightbox__close { transform: translate(-50%, -50%); }
.lightbox__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__content video {
  max-width: min(420px, 90vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   PREMIUM POLISH — micro-interactions, dividers, selection
   ============================================================ */

/* Pressed state on all buttons */
button:active,
.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Smooth image fade-in for lazy-loaded */
img { transition: opacity .6s var(--ease); }
img[loading="lazy"] { opacity: 0; }
img[loading="lazy"].loaded { opacity: 1; }

/* Subtle gold divider between sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 80%);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 165, 121, 0.28) 30%,
    rgba(201, 165, 121, 0.5) 50%,
    rgba(201, 165, 121, 0.28) 70%,
    transparent 100%);
  pointer-events: none;
}

/* Custom selection */
::selection {
  background: rgba(59, 130, 246, 0.22);
  color: var(--ink);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.15);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 23, 42, 0.28);
  background-clip: content-box;
}

/* ============================================================
   A11Y MODES (toggled by JS)
   ============================================================ */
body.a11y-contrast {
  background: #fff;
}
body.a11y-contrast .section { background: #fff; }
body.a11y-contrast,
body.a11y-contrast .body,
body.a11y-contrast .lede,
body.a11y-contrast .testimonial__quote { color: #000; }
body.a11y-contrast .display { color: #000; }
body.a11y-contrast .display em { color: #b07b1e; }
body.a11y-contrast .glass-card { background: #fff; border-color: #000; }

body.a11y-links a { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ============================================================
   RESPONSIVE — 5-tier breakpoints
   ============================================================ */

/* ----- Mobile S (320–374px) ----- */
@media (max-width: 374px) {
  :root {
    --text-hero: 36px;
    --text-h2: 32px;
    --text-h3: 24px;
    --text-stat: 36px;
  }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .container { padding-inline: 16px; }
}

/* ----- Mobile (≤639px) ----- */
@media (max-width: 639px) {
  .container { padding-inline: 20px; }

  .nav__inner { gap: 8px; padding: 0 16px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .lang-toggle { padding: 3px 6px; }
  .lang-btn { padding: 5px 10px; font-size: 12px; }
  .nav__burger { display: flex; margin-inline-start: auto; }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: start;
  }
  .hero__visual { order: -1; max-width: 100%; margin: 0 auto; }
  .hero__image-wrap { max-width: 100%; aspect-ratio: 1; max-height: 420px; }

  .hero__ctas { flex-direction: column; gap: 12px; }
  .hero__ctas .btn { width: 100%; }

  .hero__stats { grid-template-columns: 1fr 1fr; gap: 14px; }

  .story { grid-template-columns: 1fr; gap: 32px; }
  .story__image { max-width: 100%; }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; }

  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery__item { border-radius: 16px; }
  .gallery__item-caption { font-size: 12px; bottom: 12px; inset-inline-start: 12px; inset-inline-end: 12px; }

  .video-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .testimonials { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { padding: 26px 24px; }

  .contact { grid-template-columns: 1fr; gap: 24px; }
  .contact__form-wrap { padding: 28px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

  /* Floating contact — icon-only WhatsApp circle on mobile */
  .floating-contact { bottom: 16px; left: 16px; }
  .floating-btn--whatsapp {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .floating-btn--whatsapp .floating-btn__label { display: none; }
  .floating-btn--phone { width: 50px; height: 50px; }

  /* Touch targets */
  button, a.btn, .nav__link, .floating-btn { min-height: 44px; }
  input, textarea, select { font-size: 16px; padding: 14px 16px; }
}

/* ----- Tablet (640–1023px) ----- */
@media (min-width: 640px) and (max-width: 1023px) {
  :root { --text-hero: clamp(40px, 6vw, 58px); --text-h2: clamp(32px, 5vw, 48px); }
  .container { padding-inline: 32px; max-width: 100%; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .story__image { max-width: 460px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col:first-child { grid-column: 1 / -1; }
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* ----- Desktop (1024–1439px) ----- */
@media (min-width: 1024px) and (max-width: 1439px) {
  .container { max-width: 1200px; margin: 0 auto; padding-inline: 40px; }
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 60px; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .video-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* ----- Wide (1440–1919px) ----- */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container { max-width: 1320px; padding-inline: 48px; }
  .hero { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 80px; }
  .video-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ----- Ultra-wide (1920px+) ----- */
@media (min-width: 1920px) {
  :root {
    --text-hero: 86px;
    --text-h2: 64px;
  }
  .container { max-width: 1480px; padding-inline: 60px; }
  .video-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================================
   v8 IMPROVEMENTS — based on Asaf's UX audit report
   ============================================================ */

/* === Scroll anchor fix (prevents headers being hidden by sticky nav) === */
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

/* === Large CTA button === */
.btn--lg {
  padding: 19px 38px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 16px;
}

/* === Hero image — transparent action photo on gradient background === */
.hero__image-wrap--action,
.hero__image--action {
  background: transparent !important;
}

.hero__visual {
  position: relative;
}

.hero__image--action {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 50px rgba(15, 30, 71, 0.18));
}

/* The gradient background sits BEHIND the transparent image */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  z-index: -1;
  background: 
    radial-gradient(circle at 30% 25%, rgba(59, 130, 246, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(147, 197, 253, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(201, 165, 121, 0.10) 0%, transparent 50%),
    linear-gradient(160deg, 
      rgba(219, 234, 254, 0.55) 0%, 
      rgba(239, 246, 255, 0.4) 40%, 
      rgba(250, 247, 240, 0.3) 100%);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 30px 80px rgba(15, 30, 71, 0.12);
}

/* Override the old hero image wrap */
.hero__image-wrap {
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4/4;
}

/* === Logo — display original cleanly === */
.nav__logo,
.footer__logo {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.nav__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer__logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .nav__logo { height: 46px; }
}

/* === Why cards — fix number order display === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* Force row-major order (1 2 / 3 4) */
  grid-auto-flow: row;
}

/* === Stat cards — improve spacing & icons === */
.hero__stats {
  position: relative;
  z-index: 5;
}

/* === Gallery — clean 3-column grid with consistent aspect === */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.gallery__item {
  aspect-ratio: 1;
  border-radius: 20px;
}

@media (max-width: 1023px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; gap: 12px; }
}

/* === Form labels (accessibility WCAG) === */
.field__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  display: block;
}

.field__label::after {
  content: ' *';
  color: var(--blue-600);
  font-weight: 700;
}

.field__label--optional::after { content: ''; }

/* === Testimonials slider === */
.testimonials {
  position: relative;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial__author::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Process — visual timeline with icons === */
.process-grid {
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  background-clip: initial;
  -webkit-text-fill-color: white;
  box-shadow: 
    0 8px 24px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* === Floating contact — single button only === */
.floating-btn--phone {
  display: none !important;
}

.floating-btn--whatsapp {
  padding: 14px 22px;
  font-size: 14.5px;
  font-weight: 700;
}

/* === Accessibility — improve contrast === */
.body, .why-card__body, .testimonial__quote, .location-card__body,
.cert-card__body, .process-step__body {
  color: var(--gray-700);
}

.lede {
  color: var(--ink-soft);
}

/* === Pull quote — make it pop === */
.pullquote {
  position: relative;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 20px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.7) 0%, 
    rgba(239, 246, 255, 0.4) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(201, 165, 121, 0.3);
  box-shadow: 
    0 8px 24px rgba(15, 30, 71, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pullquote::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  font-weight: 700;
}

/* === Video grid — improve === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1023px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* === Mobile hero stack === */
@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  
  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero__visual::before {
    aspect-ratio: 1;
  }
}


/* ============================================================
   v8 — Locations, Red Flags, Process, Media, FAQ
   ============================================================ */

/* === Section heads centered === */
.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head--center .section-sub {
  margin-inline: auto;
}

/* === LOCATIONS === */
.section--locations {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.3) 0%, rgba(250, 247, 240, 0.4) 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.location-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.location-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.location-card__flag {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 4px;
}

.location-card__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.location-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

.location-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.location-card__list li {
  font-size: 14.5px;
  color: var(--gray-700);
  padding-inline-start: 28px;
  position: relative;
  line-height: 1.6;
}

.location-card__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--gradient-brand);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.location-card__list li::after {
  content: '';
  position: absolute;
  inset-inline-start: 5px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.locations-note {
  text-align: center;
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 12px;
}

.locations-note a {
  color: var(--blue-600);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease);
}

.locations-note a:hover { color: var(--blue-700); }

@media (max-width: 767px) {
  .locations-grid { grid-template-columns: 1fr; gap: 16px; }
  .location-card { padding: 28px; }
}

/* === RED FLAGS === */
.section--flags {
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.4) 0%, rgba(239, 246, 255, 0.3) 100%);
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.flag-card {
  padding: 32px;
  position: relative;
  transition: all 0.5s var(--ease);
  border-inline-start: 4px solid #DC2626 !important;
}

.flag-card:hover {
  transform: translateY(-4px);
}

.flag-card__icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
  color: #DC2626;
  font-weight: 800;
}

.flag-card__title {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.flag-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

@media (max-width: 767px) {
  .flags-grid { grid-template-columns: 1fr; gap: 14px; }
  .flag-card { padding: 24px; }
}

/* === PROCESS === */
.section--process {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  padding: 28px 24px;
  position: relative;
  text-align: center;
  transition: all 0.5s var(--ease);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-4), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  -webkit-text-fill-color: white;
  background-clip: initial;
  box-shadow: 
    0 8px 20px rgba(59, 130, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.process-step__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
}

@media (max-width: 1023px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-step { padding: 22px; }
}

/* === MEDIA === */
.section--media {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.4) 0%, rgba(250, 247, 240, 0.3) 100%);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  padding: 32px 28px;
  text-align: center;
  transition: all 0.5s var(--ease);
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-5), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.media-card__logo {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.015em;
  background: var(--gradient-brand-deep);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.media-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.media-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

@media (max-width: 767px) {
  .media-grid { grid-template-columns: 1fr; gap: 14px; }
  .media-card { padding: 26px; }
}

/* === FAQ === */
.section--faq {
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
}

.faq-container {
  max-width: 880px;
}

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

.faq-item {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.faq-item[open] {
  box-shadow: var(--shadow-4), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: -0.005em;
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}

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

.faq-item__q:hover { color: var(--blue-600); }

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  animation: faq-fade 0.4s var(--ease);
}

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .faq-item__q { padding: 18px 20px; font-size: 15.5px; }
  .faq-item__a { padding: 0 20px 20px; font-size: 14.5px; }
  .faq-item__icon { width: 28px; height: 28px; font-size: 16px; }
}



/* ============================================================
   DESIGNER CREDIT — Studio Asaf Yefet
   ============================================================ */
.footer__credit {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(40px, 5.5vw, 64px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer__credit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.credit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.credit__eyebrow {
  font-size: var(--text-eyebrow);
  font-weight: var(--w-semibold);
  letter-spacing: 0.22em;
  color: #94A3B8;
  text-transform: uppercase;
}

.credit__name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--w-extrabold);
  line-height: 1.08;
  letter-spacing: -0.01em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter .3s var(--ease);
}

.credit__sub {
  font-size: var(--text-body);
  font-weight: var(--w-regular);
  color: #BFC9DA;
  max-width: 580px;
  line-height: 1.6;
}

.credit__url {
  direction: ltr;
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 3px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.credit:hover .credit__name { filter: brightness(1.15); }
.credit:hover .credit__url  { color: var(--gold-soft); border-color: var(--gold); }

@media (max-width: 640px) {
  .footer__credit { padding: 36px 0; }
  .credit { gap: 10px; }
  .credit__sub { padding: 0 24px; }
}
