/* ══════════════════════════════════════════════════════════════
   TOKENS — sampled from the client's real brand (navy + muted gold)
══════════════════════════════════════════════════════════════ */
:root {
  --navy:      #14213D;
  --navy-2:    #1F2E4D;
  --gold:      #A6824F;
  --gold-d:    #8C6B3E;
  --gold-l:    #F3ECDD;

  --cream:     #FAF9F5;
  --white:     #FFFFFF;

  --gray-700:  #4B5468;
  --gray-500:  #707A8C;
  --gray-400:  #9AA3B5;
  --gray-200:  #E6E3DA;
  --gray-100:  #F4F2EC;

  --footer-bg: #10192B;

  --font:      'Heebo', sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-shell: 22px;
  --radius-core: 16px;

  --shadow-card: 0 20px 50px rgba(20, 33, 61, 0.08), 0 2px 10px rgba(20, 33, 61, 0.05);
  --shadow-btn:  0 10px 24px rgba(166, 130, 79, 0.30);

  --section-py: 120px;

  /* one type scale for every section heading + intro line, so sections
     never drift apart in size the way they had */
  --h2-size:  clamp(26px, 3vw, 34px);
  --sub-size: 17px;
  --sub-lh:   1.7;

  --z-nav:       50;
  --z-fab:       9500;
  --z-modal:     200;
  --z-modal-top: 210;
}

@media (max-width: 640px) {
  :root { --section-py: 64px; }
}

/* ══════════════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
h1, h2, h3 { color: var(--navy); font-weight: 800; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 40px;
  background: var(--gold-l);
  color: var(--gold-d);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-kicker--light { background: rgba(255,255,255,0.12); color: var(--gold-l); }
.section-kicker--link { cursor: pointer; transition: background 0.18s var(--ease), transform 0.18s var(--ease); }
.section-kicker--link:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════
   SECTION DIVIDER — a gold hairline that fades out at both ends,
   with a small diamond seated in a gap at its centre. Drawn entirely
   as background layers on the section's own ::after, so it needs no
   extra markup and never collides with the ::before dot-patterns.
══════════════════════════════════════════════════════════════ */
.recognition,
.paths,
.process,
.why,
.testimonials,
.faq,
.leadform { position: relative; }

.recognition::after,
.paths::after,
.process::after,
.why::after,
.testimonials::after,
.faq::after,
.leadform::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 80px));
  height: 9px;
  pointer-events: none;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 100% 100%, 100% 1px;
  background-image:
    /* the marker, seated in the gap */
    radial-gradient(circle at 50% 50%, rgba(166,130,79,0.7) 0 2.5px, rgba(166,130,79,0) 3px),
    /* the hairline, broken in the middle */
    linear-gradient(90deg,
      rgba(166,130,79,0) 0%,
      rgba(166,130,79,0.42) 26%,
      rgba(166,130,79,0.42) 45%,
      rgba(166,130,79,0) 45%,
      rgba(166,130,79,0) 55%,
      rgba(166,130,79,0.42) 55%,
      rgba(166,130,79,0.42) 74%,
      rgba(166,130,79,0) 100%);
}

/* on the dark lead-form panel the rule needs to read against navy */
.leadform::after {
  background-image:
    linear-gradient(45deg, rgba(243,236,221,0.5) 0 100%),
    linear-gradient(90deg,
      rgba(243,236,221,0) 0%,
      rgba(243,236,221,0.28) 26%,
      rgba(243,236,221,0.28) 46%,
      rgba(243,236,221,0) 46%,
      rgba(243,236,221,0) 54%,
      rgba(243,236,221,0.28) 54%,
      rgba(243,236,221,0.28) 74%,
      rgba(243,236,221,0) 100%);
}

@media (max-width: 640px) {
  .recognition::after,
  .paths::after,
  .process::after,
  .why::after,
  .testimonials::after,
  .faq::after,
  .leadform::after { width: calc(100% - 40px); }
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 16px;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 48px);
  max-width: 1120px;
  margin: 16px auto 0;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 20px 50px rgba(20,33,61,0.09), 0 2px 10px rgba(20,33,61,0.05), inset 0 0 0 1px rgba(20,33,61,0.06);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .site-header {
    background: rgba(255,255,255,0.64);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { height: 52px; width: auto; flex-shrink: 0; display: flex; align-items: center; }
.brand__mark img { height: 100%; width: auto; display: block; }
.brand__text { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.brand__name { font-size: 18px; font-weight: 800; color: var(--navy); }
.brand__sep  { color: var(--gray-400); font-size: 15px; }
.brand__role { font-size: 14px; font-weight: 500; color: var(--gray-500); }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-2);
  transition: color 0.18s var(--ease);
}
.site-nav__link:hover { color: var(--gold-d); }
.site-nav__link--cta { color: var(--gold-d); }
.site-nav__link--cta:hover { color: var(--gold); }

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  border-radius: 999px;
  border: none;
  background: var(--gold-d);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 55%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  direction: ltr;
  box-shadow: 0 8px 20px rgba(166, 130, 79, 0.28), inset 0 1px 0 rgba(255,255,255,0.24);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.header-contact .btn__icon-wrap { width: 32px; height: 32px; background: rgba(255,255,255,0.18); transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.header-contact svg { width: 16px; height: 16px; color: var(--white); }
.header-contact:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(166, 130, 79, 0.4), inset 0 1px 0 rgba(255,255,255,0.28); }
.header-contact:hover .btn__icon-wrap { background: rgba(255,255,255,0.28); }

/* hamburger — hidden on desktop, shown once .site-nav collapses (≤1024px, see RESPONSIVE) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(20,33,61,0.05);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.nav-toggle:hover { background: rgba(20,33,61,0.09); }
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* dropdown panel mirroring the desktop nav links — closed by default,
   only reachable/visible once the hamburger shows (≤1024px) */
.mobile-nav { display: none; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero { background: var(--white); overflow: hidden; }
.hero__stage {
  display: grid;
  grid-template-columns: 1.35fr 1fr; /* content ~57.5% / portrait ~42.5% */
  align-items: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 40px;
}

.hero__body {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--gold-d);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.hero__title {
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.hero-title__line { display: block; }
.hero-title__line--1 { font-size: clamp(38px, 4.6vw, 56px); }
.hero-title__line--2 {
  font-size: clamp(24px, 2.9vw, 32px);
  font-weight: 500;
  margin-top: 14px;
  color: var(--navy);
}
.hero-title__accent {
  display: inline-block;
  font-size: clamp(42px, 5.2vw, 62px);
  font-weight: 900;
  color: var(--gold-d);
  line-height: 1;
}
.hero-title__accent--sm { font-size: clamp(34px, 4.2vw, 50px); }
.hero-title__period {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero__cta-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--gray-200);
}
.hstat { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.hstat__num {
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--gold-d);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hstat__label { font-size: 13px; font-weight: 600; color: var(--gray-500); }
.hstat-divider { width: 1px; height: 34px; background: var(--gray-200); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   HERO SCENE — left portrait, no frame/card. The portrait itself is
   the only "object" — everything else is soft, diffuse light behind
   it. No boxes, no borders, no hard edges.
══════════════════════════════════════════════════════════════ */
.hero-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  justify-self: center;
}

/* large soft warm glow, centered behind the figure */
.hero-scene__glow {
  position: absolute;
  z-index: 0;
  inset: -20%;
  background: radial-gradient(circle at 50% 42%, rgba(180,138,82,0.16), transparent 62%);
  filter: blur(40px);
  pointer-events: none;
}

/* two faint abstract circles, off-axis, for quiet depth */
.hero-scene__blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.hero-scene__blob--a {
  top: 4%;
  right: 6%;
  width: 46%;
  aspect-ratio: 1;
  background: rgba(166,130,79,0.1);
}
.hero-scene__blob--b {
  bottom: 6%;
  left: 2%;
  width: 34%;
  aspect-ratio: 1;
  background: rgba(20,33,61,0.05);
}

/* Entrance (fade + rise) lives on this wrapper. Hover-scale lives on
   the img itself (below). They're split across two elements on
   purpose: animation-fill-mode:forwards permanently "owns" the
   transform property it animates — even after finishing — so a
   :hover rule targeting that same element/property can never win the
   cascade. Splitting them onto parent/child avoids that conflict. */
.hero-scene__portrait-in {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: hs-portrait-in 0.7s ease-out 0.1s forwards;
}
@keyframes hs-portrait-in {
  to { opacity: 1; transform: translateY(0); }
}

/* the portrait — a plain photo, no box, no border. A mask fades the
   left/right/bottom edges to transparent so it blends into the page
   instead of ending in a hard rectangle; drop-shadow (which follows
   the masked alpha shape, not the rectangular box) gives it a soft
   grounding shadow shaped like the fade itself, not a box-shadow. */
.hero-scene__portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: radial-gradient(ellipse 68% 62% at 50% 34%, black 58%, rgba(0,0,0,0.35) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 62% at 50% 34%, black 58%, rgba(0,0,0,0.35) 78%, transparent 100%);
  filter: drop-shadow(0 30px 40px rgba(20,33,61,0.1));
  transition: transform 0.4s var(--ease);
}
.hero-scene:hover .hero-scene__portrait { transform: scale(1.015); }

/* quote card — light frosted glass, not a dark block, so it stays in
   the same airy register as the rest of this hero. Sits toward one
   side, overlapping the lower portion of the portrait (where the
   mask has already softened the photo's own edge). */
.hero-scene__quote {
  position: absolute;
  z-index: 2;
  left: 3%;
  bottom: 2%;
  width: min(68%, 300px);
  margin: 0;
  padding: 27px 24px 23px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 26px;
  box-shadow:
    0 30px 60px rgba(20,33,61,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
  text-align: center;
}
.hero-scene__quote-head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.hero-scene__quote-mark { font-size: 27px; line-height: 1; color: var(--gold); }
.hero-scene__quote-rule { width: 23px; height: 2px; border-radius: 1px; background: var(--gold); opacity: 0.8; }
.hero-scene__quote-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--navy);
}
.hero-scene__quote-text strong { font-weight: 700; }
/* closing quote mark — mirrors the opening ornament at the header, so
   the quote reads as framed at both ends, not just introduced at top */
.hero-scene__quote-mark-end {
  display: inline-block;
  margin-inline-start: 3px;
  font-size: 0.72em;
  color: var(--gold);
  vertical-align: -0.05em;
}
.hero-scene__quote-sign {
  display: block;
  margin-top: 17px;
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-d);
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene__portrait-in { animation: none; opacity: 1; transform: none; }
  .hero-scene:hover .hero-scene__portrait { transform: none; }
}

@media (max-width: 1024px) {
  .hero-scene { order: -1; max-width: 340px; }
}
@media (max-width: 640px) {
  .hero-scene { max-width: 280px; }
  .hero-scene__quote { width: min(66%, 210px); padding: 15px 15px 13px; bottom: 3%; }
  .hero-scene__quote-head { margin-bottom: 8px; }
  .hero-scene__quote-mark { font-size: 17px; }
  .hero-scene__quote-rule { width: 16px; }
  .hero-scene__quote-text { font-size: 11.5px; line-height: 1.4; }
  .hero-scene__quote-sign { font-size: 14px; margin-top: 8px; }
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 14px;
  padding: 17px 32px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.btn--primary {
  position: relative;
  background: var(--gold-d);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 55%);
  color: var(--white);
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,0.28), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(166, 130, 79, 0.42), inset 0 1px 0 rgba(255,255,255,0.32), inset 0 0 0 1px rgba(255,255,255,0.06); }
.btn--primary:active { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(166, 130, 79, 0.34), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--primary .btn__icon-wrap { background: rgba(255,255,255,0.18); }
.btn--primary:hover .btn__icon-wrap { transform: translate(2px, -2px) scale(1.06); background: rgba(255,255,255,0.28); }

.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(20, 33, 61, 0.04);
}
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-l); color: var(--gold-d); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(20, 33, 61, 0.1); }
.btn--ghost:active { transform: translateY(-1px); }
.btn--ghost .btn__icon-wrap { background: rgba(20,33,61,0.06); }
.btn--ghost:hover .btn__icon-wrap { transform: translate(2px, -2px) scale(1.06); background: rgba(166,130,79,0.16); }

.btn--block { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn { transition-duration: 0.01ms; }
}

/* ══════════════════════════════════════════════════════════════
   RECOGNITION
══════════════════════════════════════════════════════════════ */
.recognition {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px circle at 88% 12%, rgba(166,130,79,0.07), transparent 60%),
    radial-gradient(480px circle at 8% 90%, rgba(20,33,61,0.05), transparent 60%),
    var(--cream);
  padding: var(--section-py) 40px;
}
.recognition::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background-image: radial-gradient(rgba(166,130,79,0.35) 1.5px, transparent 2px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at 100% 0%, black, transparent 70%);
  mask-image: radial-gradient(circle at 100% 0%, black, transparent 70%);
  pointer-events: none;
}
.recognition__wrap { position: relative; text-align: center; }
.recognition__title { font-size: var(--h2-size); margin-bottom: 14px; }
.recognition__sub {
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: var(--sub-size);
  line-height: var(--sub-lh);
  color: var(--gray-500);
}
.recognition__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 44px;
}
.rec-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), var(--gold-l));
  border-radius: var(--radius-shell);
  padding: 7px;
  box-shadow:
    inset 0 0 0 1px rgba(166,130,79,0.14),
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 16px 34px -18px rgba(20,33,61,0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.rec-item:hover { transform: translateY(-3px); }
.rec-item__core {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-core);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.rec-item__ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-l);
  color: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rec-item__ico svg { width: 21px; height: 21px; }
.rec-item p { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; }

.recognition__bridge {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   THREE PATHS
══════════════════════════════════════════════════════════════ */
.paths {
  padding: var(--section-py) 0;
  background:
    radial-gradient(560px circle at 14% 18%, rgba(166,130,79,0.07), transparent 60%),
    radial-gradient(480px circle at 88% 82%, rgba(20,33,61,0.05), transparent 60%);
}
.paths__title { font-size: var(--h2-size); margin-bottom: 14px; }
.paths__sub { max-width: 620px; font-size: var(--sub-size); line-height: var(--sub-lh); color: var(--gray-500); margin-bottom: 48px; }

.path-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  max-width: 1000px;
}

/* Double-Bezel: outer shell (tinted frame + hairline ring) around an
   inner core (the flip surface) — engineered-glass read, no blur. */
.path-card {
  display: block;
  position: relative;
  width: 100%;
  padding: 8px;
  border-radius: var(--radius-shell);
  background: linear-gradient(160deg, rgba(255,255,255,0.92), var(--gold-l));
  cursor: pointer;
  perspective: 1400px;
  text-align: center;
  font-family: var(--font);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow:
    inset 0 0 0 1px rgba(166,130,79,0.18),
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 20px 44px -20px rgba(20,33,61,0.28);
}
.path-card:hover,
.path-card:focus-visible {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(166,130,79,0.26),
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 30px 54px -20px rgba(20,33,61,0.36);
}

.path-card__inner {
  display: block;
  position: relative;
  width: 100%;
  min-height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
}
.path-card[aria-expanded="true"] .path-card__inner { transform: rotateY(180deg); }

.path-card__cover,
.path-card__back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-core);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  text-align: center;
}

/* cover — the inner core's dark face */
.path-card__cover {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  gap: 14px;
}
.path-card__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.14) 50%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
  pointer-events: none;
}
.path-card:hover .path-card__cover::before,
.path-card:focus-visible .path-card__cover::before { transform: translateX(130%); }

.path-card__ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #FFFFFF, var(--gold-l) 78%);
  color: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(166,130,79,0.4),
    inset 0 1px 2px rgba(255,255,255,0.9),
    0 8px 16px rgba(0,0,0,0.28);
  flex-shrink: 0;
}
.path-card__ico svg { width: 22px; height: 22px; }

.path-card__title {
  font-size: 15.5px;
  font-weight: 800;
  background: linear-gradient(180deg, #FBF6EA, #C9A876);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.path-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(243,236,221,0.1);
  border: 1px solid rgba(243,236,221,0.28);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--gold-l);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.path-card:hover .path-card__hint,
.path-card:focus-visible .path-card__hint {
  background: rgba(243,236,221,0.18);
  transform: translateX(-3px);
}

/* back — the flipped face */
.path-card__back {
  background: linear-gradient(155deg, #FFFDF8 0%, var(--cream) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  gap: 10px;
  transform: rotateY(180deg);
}
.path-card__back-title { font-size: 14.5px; font-weight: 700; color: var(--gold-d); }
.path-card__back-desc { font-size: 13px; line-height: 1.6; color: var(--gray-700); }

@media (prefers-reduced-motion: reduce) {
  .path-card,
  .path-card__inner,
  .path-card__cover::before,
  .path-card__hint { transition-duration: 0.01ms; }
}

.paths__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--navy);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 40%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.paths__cta-glow {
  position: absolute;
  top: 50%;
  right: -70px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(166,130,79,0.35), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.paths__cta-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}
.paths__cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.6);
}
.paths__cta-eyebrow-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(166, 130, 79, 0.22);
  color: var(--gold);
  flex-shrink: 0;
}
.paths__cta-eyebrow-ico svg { width: 12px; height: 12px; }
.paths__cta-answer {
  color: var(--white);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 800;
  line-height: 1.4;
}
.paths__cta-answer span { color: var(--gold); }
.paths__cta-btn { position: relative; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   PROCESS — vertical timeline
══════════════════════════════════════════════════════════════ */
.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px circle at -6% 8%, rgba(166,130,79,0.08), transparent 55%),
    radial-gradient(460px circle at 96% 96%, rgba(20,33,61,0.05), transparent 55%),
    var(--cream);
  padding: var(--section-py) 0;
}
.process .wrap { position: relative; }
.process__title { font-size: var(--h2-size); margin-bottom: 14px; }
.process__sub { max-width: 620px; font-size: var(--sub-size); line-height: var(--sub-lh); color: var(--gray-500); margin-bottom: 56px; }

.process__timeline { position: relative; max-width: 640px; }
.process__timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  bottom: 22px;
  right: 21px;
  width: 2px;
  background: var(--gray-200);
}
.process__step {
  position: relative;
  display: flex;
  gap: 22px;
  padding-bottom: 44px;
}
.process__step:last-child { padding-bottom: 0; }
.process__marker {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(20, 33, 61, 0.18);
}
.process__content { padding-top: 5px; }
.process__time {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-d);
  background: var(--gold-l);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.process__step-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.process__step-desc { font-size: 15px; line-height: 1.7; color: var(--gray-500); }

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
.why { padding: var(--section-py) 0; text-align: center; }
.why__title { font-size: var(--h2-size); margin-bottom: 14px; }
.why__sub { max-width: 560px; margin: 0 auto 48px; font-size: var(--sub-size); line-height: var(--sub-lh); color: var(--gray-500); }
.why__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-item {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.9), var(--gold-l));
  border-radius: var(--radius-shell);
  padding: 7px;
  margin-top: 34px;
  box-shadow:
    inset 0 0 0 1px rgba(166,130,79,0.14),
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 18px 40px -20px rgba(20,33,61,0.18);
  transition: transform 0.3s var(--ease);
}
.why-item__core {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-core);
  padding: 32px 16px 16px;
}
/* two thin threads above each card, fading out as they rise — like it's hung in place */
.why-item::before {
  content: '';
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  height: 34px;
  background-image:
    linear-gradient(to bottom, transparent, rgba(166,130,79,0.55)),
    linear-gradient(to bottom, transparent, rgba(166,130,79,0.55));
  background-repeat: no-repeat;
  background-size: 1px 100%, 1px 100%;
  background-position: 32% 0, 68% 0;
  pointer-events: none;
}

.why-item__ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(166,130,79,0.4);
  color: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
}
.why-item__ico svg { width: 24px; height: 24px; }
.why-item__title { font-size: 15px; font-weight: 700; color: var(--navy); }
.why-item__title::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gray-200);
  margin: 8px auto 0;
}
.why-item__sub { font-size: 13.5px; color: var(--gray-500); }

.why-item__num {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-d);
}
.why-item__num::before,
.why-item__num::after {
  content: '';
  flex: 1;
  max-width: 26px;
  height: 1px;
  background: var(--gray-200);
}

/* a pronounced, staggered drop — keeps the eye on the section as each card lands in turn */
.why-item.reveal {
  opacity: 0;
  transform: translateY(-46px) scale(0.94);
  transition: opacity 0.7s var(--ease), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-item.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .why-item.reveal { transition-duration: 0.01ms; }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px circle at 92% 10%, rgba(166,130,79,0.08), transparent 55%),
    radial-gradient(460px circle at 4% 92%, rgba(20,33,61,0.05), transparent 55%),
    var(--cream);
  padding: var(--section-py) 40px;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(166,130,79,0.32) 1.5px, transparent 2px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at 100% 0%, black, transparent 70%);
  mask-image: radial-gradient(circle at 100% 0%, black, transparent 70%);
  pointer-events: none;
}
.testimonials__wrap { position: relative; text-align: center; }
.testimonials__title { font-size: var(--h2-size); margin-bottom: 14px; }
.testimonials__sub { max-width: 560px; margin: 0 auto 44px; font-size: var(--sub-size); line-height: var(--sub-lh); color: var(--gray-500); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), var(--gold-l));
  border-radius: var(--radius-shell);
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(166,130,79,0.14),
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 20px 44px -20px rgba(20,33,61,0.22);
}
.testimonial-card__core {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-core);
  padding: 22px 24px;
  text-align: right;
  height: 100%;
}

.testimonial-thumb {
  position: relative;
  flex-shrink: 0;
  width: 162px;
  aspect-ratio: 9 / 16;
  border: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(20, 33, 61, 0.22);
}
.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s var(--ease);
}
.testimonial-thumb:hover img { transform: scale(1.06); }
.testimonial-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 61, 0.2);
  transition: background 0.2s var(--ease);
}
.testimonial-thumb:hover::after { background: rgba(20, 33, 61, 0.32); }
.testimonial-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.testimonial-thumb__play svg { width: 22px; height: 22px; margin-right: -1px; }

.testimonial-card__body { flex: 1; min-width: 0; }
.testimonial-card__quote { width: 26px; height: 26px; color: var(--gold); opacity: 0.5; margin-bottom: 10px; }
.testimonial-card__text { font-size: 17px; line-height: 1.7; color: var(--navy-2); font-weight: 500; margin-bottom: 14px; }
.testimonial-card__name { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.testimonial-card__name span { font-weight: 500; color: var(--gray-500); }

/* Video lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.video-modal.is-open { opacity: 1; pointer-events: auto; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.86);
}
.video-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  transform: scale(0.96);
  transition: transform 0.25s var(--ease);
}
.video-modal.is-open .video-modal__panel { transform: scale(1); }
.video-modal__panel video {
  display: block;
  width: 100%;
  max-height: 88vh;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.video-modal__close {
  position: absolute;
  top: -46px;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s var(--ease);
}
.video-modal__close:hover { background: rgba(255, 255, 255, 0.22); }
.video-modal__close svg { width: 18px; height: 18px; }

/* Exit-intent popup */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal-top);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.exit-modal.is-open { opacity: 1; pointer-events: auto; }
.exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.72);
}
.exit-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 40px 36px 36px;
  text-align: center;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s var(--ease);
}
.exit-modal.is-open .exit-modal__panel { transform: scale(1) translateY(0); }
.exit-modal__close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.exit-modal__close:hover { background: var(--gray-200); color: var(--navy); }
.exit-modal__close svg { width: 16px; height: 16px; }

.exit-modal .section-kicker { margin: 0 auto 16px; }
.exit-modal__title { font-size: 22px; margin-bottom: 10px; }
.exit-modal__text { font-size: 15px; line-height: 1.7; color: var(--gray-500); margin-bottom: 26px; }

.exit-modal__form .fi { margin-bottom: 14px; text-align: right; }

.exit-modal__ok {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 10px 0 6px;
}
.exit-modal__ok.is-visible { display: flex; }
.exit-modal__ok-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-l);
  color: var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-modal__ok-ico svg { width: 24px; height: 24px; }
.exit-modal__ok p { font-size: 15px; color: var(--navy); font-weight: 700; }

.exit-modal__alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.exit-modal__alt-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.18s var(--ease);
}
.exit-modal__alt-link svg { width: 17px; height: 17px; color: var(--gold-d); }
.exit-modal__alt-link:hover { color: var(--gold-d); }
.exit-modal__alt-link--wa { color: #25D366; }
.exit-modal__alt-link--wa svg { color: #25D366; }
.exit-modal__alt-link--wa:hover { color: #1DA851; }
.exit-modal__alt-link--wa:hover svg { color: #1DA851; }

@media (max-width: 640px) {
  .exit-modal__panel { padding: 32px 22px 26px; }
}

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

body.modal-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════
   LEAD FORM
══════════════════════════════════════════════════════════════ */
.leadform {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px circle at 8% -8%, rgba(166,130,79,0.14), transparent 55%),
    radial-gradient(520px circle at 100% 100%, rgba(166,130,79,0.08), transparent 50%),
    linear-gradient(165deg, var(--navy-2) 0%, var(--navy) 55%);
  padding: var(--section-py) 40px;
}
.leadform::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(rgba(166,130,79,0.4) 1.5px, transparent 2px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle at 100% 100%, black, transparent 70%);
  mask-image: radial-gradient(circle at 100% 100%, black, transparent 70%);
  pointer-events: none;
}
.leadform__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.leadform__intro h2 { color: var(--white); font-size: var(--h2-size); margin-bottom: 14px; }
.leadform__intro p { color: rgba(255,255,255,0.7); font-size: var(--sub-size); line-height: var(--sub-lh); margin-bottom: 36px; }

.leadform__contacts { display: flex; flex-direction: column; gap: 16px; }
.lf-contact {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 0 0 transparent;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
/* a thin gold edge peeking out from behind the card, like a layered plate */
.lf-contact:hover {
  background: var(--navy-2);
  border-color: rgba(166,130,79,0.4);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 0 var(--gold-d);
}
.lf-contact__ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(166,130,79,0.25);
  border: 1px solid rgba(166,130,79,0.45);
  color: var(--gold-l);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lf-contact__ico svg { width: 18px; height: 18px; }
.lf-contact__title { display: block; font-size: 12.5px; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
.lf-contact__val { display: block; font-size: 16px; font-weight: 700; color: var(--white); direction: ltr; text-align: right; }

.leadform__card {
  background: linear-gradient(160deg, rgba(255,255,255,0.95), var(--gold-l));
  border-radius: var(--radius-shell);
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(166,130,79,0.16),
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 24px 60px -20px rgba(20,33,61,0.3);
  position: relative;
  overflow: hidden;
}
.leadform__card__core {
  background: var(--white);
  border-radius: var(--radius-core);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.leadform__card__core::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold) 40%, var(--gold-l) 70%, var(--gold-d));
}
.fi { margin-bottom: 20px; }
.fi label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; transition: color 0.18s var(--ease); }
.fi-optional { font-weight: 400; color: var(--gray-400); }
.fi input, .fi textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100);
  color: var(--navy);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
}
.fi input:focus, .fi textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(166,130,79,0.14);
}
.fi:focus-within label { color: var(--gold-d); }
.fi input:invalid:not(:placeholder-shown) { border-color: #D97757; }
.fi-err { display: block; font-size: 12.5px; color: #D97757; margin-top: 6px; }
.fi-err[hidden] { display: none; }

.leadform__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--gray-400);
  text-align: center;
}
.leadform__privacy svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--gray-400); }

.leadform__ok {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-shell);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.leadform__ok[hidden] { display: none; }
.leadform__ok.is-visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.leadform__ok-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-l);
  color: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.leadform__ok.is-visible .leadform__ok-ico { transform: scale(1); }
.leadform__ok-ico svg { width: 28px; height: 28px; }
.leadform__ok h3 { font-size: 19px; margin-bottom: 8px; }
.leadform__ok p { font-size: 14.5px; color: var(--gray-500); }

@media (prefers-reduced-motion: reduce) {
  .leadform__ok,
  .leadform__ok-ico { transition-duration: 0.01ms; }
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px circle at 90% 90%, rgba(166,130,79,0.06), transparent 55%),
    radial-gradient(440px circle at 6% 10%, rgba(20,33,61,0.04), transparent 55%);
  padding: var(--section-py) 40px;
}
.faq::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(rgba(166,130,79,0.3) 1.5px, transparent 2px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at 0% 100%, black, transparent 70%);
  mask-image: radial-gradient(circle at 0% 100%, black, transparent 70%);
  pointer-events: none;
}
.faq .wrap { position: relative; }
.faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.faq__intro { position: sticky; top: 110px; }
.faq__title { font-size: var(--h2-size); margin-bottom: 14px; }
.faq__intro-text { font-size: var(--sub-size); line-height: var(--sub-lh); color: var(--gray-500); margin-bottom: 26px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 6px 24px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(166,130,79,0.18), 0 12px 28px rgba(20,33,61,0.06);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-d);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  margin-inline-start: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-500);
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item p { transition-duration: 0.01ms; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background:
    radial-gradient(680px circle at 12% 0%, rgba(166,130,79,0.10), transparent 60%),
    linear-gradient(175deg, #14203A 0%, var(--footer-bg) 45%);
  padding: 40px 40px;
  border-top: 1px solid rgba(166,130,79,0.25);
}
.site-footer__wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 16px; padding-inline-end: 28px; border-inline-end: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand__mark { height: 44px; }
.footer-brand .brand__name { font-size: 15px; color: var(--white); }
.footer-brand .brand__role { font-size: 12.5px; color: rgba(255,255,255,0.62); }

.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social__link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.footer-social__link svg { width: 16px; height: 16px; }
.footer-social__link:hover { background: var(--gold); transform: translateY(-2px); }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 6px;
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease);
}
.footer-item:has(a:hover) { transform: translateY(-2px); }
.footer-item__ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(166,130,79,0.16);
  border: 1px solid rgba(166,130,79,0.4);
  color: var(--gold-l);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.footer-item:has(a:hover) .footer-item__ico { background: rgba(166,130,79,0.3); }
.footer-item__ico svg { width: 15px; height: 15px; }
.footer-item__title { font-size: 12.5px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.footer-item__sub   { display: block; font-size: 11.5px; color: rgba(255,255,255,0.62); line-height: 1.5; transition: color 0.15s var(--ease); }
.footer-item__sub--lg { display: block; font-size: 15px; font-weight: 800; color: var(--white); direction: ltr; text-align: right; }
a.footer-item__sub:hover, a.footer-item__sub--lg:hover { color: var(--gold-l); }

.footer-item--map { align-items: center; }
.footer-map-thumb-wrap { position: relative; flex-shrink: 0; }
.footer-map-thumb {
  display: block;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.footer-map-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s var(--ease);
}
.footer-map-thumb:hover img { transform: scale(1.08); }
.footer-map-thumb__waze {
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: #05c8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--footer-bg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s var(--ease);
}
.footer-map-thumb__waze:hover { transform: scale(1.1); }
.footer-map-thumb__waze svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   FLOATING ACTION STACK — a11y / phone / whatsapp
══════════════════════════════════════════════════════════════ */
.fab-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.25s var(--ease);
}
.fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.08); }

.fab--wa { width: 56px; height: 56px; background: #25D366; color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.fab--wa svg { width: 28px; height: 28px; }
.fab--wa:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 0 0 6px rgba(37,211,102,0.18); }

.fab--phone { background: var(--gold-d); background-image: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 55%); color: var(--white); box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,0.26); }
.fab--phone:hover { box-shadow: 0 10px 28px rgba(166,130,79,0.45), 0 0 0 6px rgba(166,130,79,0.16); }

.fab--a11y { background: var(--navy); color: var(--white); box-shadow: 0 6px 20px rgba(20,33,61,0.35); }
.fab--a11y:hover { box-shadow: 0 8px 28px rgba(20,33,61,0.45), 0 0 0 6px rgba(20,33,61,0.14); }

.a11y { position: relative; }
.a11y__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 250px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.a11y__panel[aria-hidden="false"] { opacity: 1; transform: none; pointer-events: auto; }
.a11y__title { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px; }
.a11y__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.a11y__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-2);
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.a11y__item:hover { background: var(--gold-l); border-color: var(--gold); }
.a11y__item[aria-checked="true"] { background: var(--gold-l); border-color: var(--gold); color: var(--gold-d); }
.a11y__item--reset { grid-column: 1 / -1; background: transparent; }
.a11y__ico { font-size: 14px; font-weight: 800; line-height: 1; color: var(--gold-d); }

body.a11y-contrast { filter: contrast(1.25) saturate(1.1); }
body.a11y-underline a { text-decoration: underline !important; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(20,33,61,0.16), inset 0 1px 0 rgba(255,255,255,0.6);
    padding: 8px;
    transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease);
    z-index: var(--z-nav);
  }
  .mobile-nav.is-open { max-height: 420px; opacity: 1; pointer-events: auto; }
  .mobile-nav__link {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy-2);
    text-align: center;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }
  .mobile-nav__link:hover { background: rgba(166,130,79,0.08); color: var(--gold-d); }
  .mobile-nav__link--cta { margin-top: 6px; background: var(--gold-d); color: var(--white); }
  .mobile-nav__link--cta:hover { background: var(--gold); color: var(--white); }
  .hero__stage { grid-template-columns: 1fr; padding: 48px 32px 64px; gap: 40px; }
  .path-preview__grid { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .recognition__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .leadform__wrap { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; }
  .faq__layout { grid-template-columns: 1fr; gap: 32px; }
  .faq__intro { position: static; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .site-header { width: calc(100% - 24px); margin-top: 10px; top: 10px; padding: 10px 14px; gap: 10px; }
  .brand__mark { height: 40px; }
  .brand__name { font-size: 15.5px; }
  .brand__role, .brand__sep { display: none; }
  .header-contact { padding: 7px 14px 7px 7px; gap: 8px; }
  .header-contact span { font-size: 13px; }
  .header-contact .btn__icon-wrap { width: 26px; height: 26px; }
  .header-contact svg { width: 13px; height: 13px; }
  .hero-scene { order: 0; }
  .hero__stage { padding: 40px 20px 40px; gap: 32px; }
  .hero__cta-wrap { flex-direction: column; align-items: stretch; }
  .hero__cta-wrap .btn { width: 100%; }
  .hero__stats { gap: 18px; }
  .hstat__num { font-size: 24px; }
  .hstat__label { font-size: 11.5px; }
  .hstat-divider { height: 28px; }
  .recognition, .paths, .process, .why, .leadform, .faq, .testimonials { padding-left: 20px; padding-right: 20px; }
  .recognition__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .process__timeline::before { right: 17px; }
  .process__marker { width: 36px; height: 36px; font-size: 13px; }
  .process__step { gap: 16px; }
  .path-preview__grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
  .path-card { padding: 6px; }
  .path-card__inner { min-height: 168px; }
  .path-card__cover, .path-card__back { padding: 16px 12px; gap: 8px; }
  .path-card__ico { width: 38px; height: 38px; }
  .path-card__ico svg { width: 18px; height: 18px; }
  .path-card__title { font-size: 12.5px; }
  .path-card__hint { font-size: 9.5px; padding: 4px 9px; }
  .path-card__back-title { font-size: 12.5px; }
  .path-card__back-desc { font-size: 11px; }
  .paths__cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .paths__cta-glow { right: 50%; transform: translate(50%, -50%); }
  .paths__cta-text { align-items: center; max-width: 100%; }
  .paths__cta-eyebrow { justify-content: center; }
  .paths__cta-btn { width: 100%; justify-content: center; }
  .testimonial-card__core { flex-direction: column; text-align: center; padding: 24px 20px; gap: 20px; }
  .testimonial-card__body { text-align: center; }
  .testimonial-thumb { width: 144px; }
  .leadform__card__core { padding: 26px 20px 22px; }
  .site-footer__wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-brand-col { padding-inline-end: 0; border-inline-end: none; }
}

/* ══════════════════════════════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════════════════════════════ */
.ty-hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.ty-hero__glow {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: radial-gradient(circle at 50% 38%, rgba(180,138,82,0.14), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.ty-hero__blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.ty-hero__blob--a { top: -6%; right: 8%; width: 30%; aspect-ratio: 1; background: rgba(166,130,79,0.1); }
.ty-hero__blob--b { bottom: -8%; left: 6%; width: 26%; aspect-ratio: 1; background: rgba(20,33,61,0.05); }

.ty-hero__stage {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 140px 40px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ty-hero__icon {
  position: relative;
  width: 84px;
  height: 84px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-l);
  color: var(--gold-d);
  transform: scale(0);
  transition: opacity 0.5s var(--ease) 0.1s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.ty-hero__icon.is-visible { transform: scale(1); }
.ty-hero__icon svg { width: 36px; height: 36px; }
.ty-hero__icon-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(166,130,79,0.35);
  opacity: 0;
}
.ty-hero__icon.is-visible .ty-hero__icon-ring {
  animation: ty-ring 1.8s var(--ease) 0.5s;
}
@keyframes ty-ring {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.35); }
}

.ty-hero__title {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.25;
  margin-bottom: 14px;
}
.ty-hero__accent { color: var(--gold-d); font-weight: 900; }

.ty-hero__sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 420px;
  margin-bottom: 32px;
}

.ty-hero__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }

.ty-hero__privacy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--gray-400);
}
.ty-hero__privacy svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--gray-400); }

.ty-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  transition: color 0.18s var(--ease), gap 0.18s var(--ease);
}
.ty-hero__back svg { width: 14px; height: 14px; transform: scaleX(-1); }
.ty-hero__back:hover { color: var(--gold-d); gap: 9px; }

@media (max-width: 640px) {
  .ty-hero__stage { padding: 120px 24px 72px; }
  .ty-hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .ty-hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ty-hero__icon, .ty-hero__back { transition-duration: 0.01ms; }
  .ty-hero__icon-ring { animation: none; }
}
