/* ==========================================================================
   KG SOLUTIONS — style.css
   Tokens, typography, layout, components, nav, footer.
   Type system: Fraunces (display serif) for headlines + Inter (body/UI).
   ========================================================================== */

/* ---------- Fonts (self-hosted, no CDN) ---------------------------------- */
@font-face { font-family:'Inter'; font-style:normal; font-weight:300; font-display:swap; src:url('../fonts/inter-300.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/inter-700.woff2') format('woff2'); }

@font-face { font-family:'Fraunces'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/fraunces-400.woff2') format('woff2'); }
@font-face { font-family:'Fraunces'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/fraunces-500.woff2') format('woff2'); }
@font-face { font-family:'Fraunces'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/fraunces-600.woff2') format('woff2'); }
@font-face { font-family:'Fraunces'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/fraunces-700.woff2') format('woff2'); }
@font-face { font-family:'Fraunces'; font-style:italic; font-weight:600; font-display:swap; src:url('../fonts/fraunces-600-italic.woff2') format('woff2'); }

/* ---------- Design tokens ------------------------------------------------ */
:root {
  --bg:             #0D0B12;
  --bg-card:        #13101C;
  --bg-nav:         #080608;
  --bg-elev:        #181321;
  --gold:           #C4A35A;
  --gold-light:     #D4B96A;
  --gold-dim:       rgba(196, 163, 90, 0.15);
  --gold-border:    rgba(196, 163, 90, 0.25);
  --text-primary:   #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.55);
  --text-muted:     rgba(245, 240, 232, 0.35);
  --white:          #FFFFFF;
  --divider:        rgba(196, 163, 90, 0.15);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1200px;
  --maxw-narrow: 860px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --nav-h: 76px;

  --shadow-card: 0 8px 32px rgba(196, 163, 90, 0.12);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* z-index scale */
  --z-nav: 100;
  --z-overlay: 200;
}

/* ---------- Reset & base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold); color: #0D0B12; }

/* ---------- Typography --------------------------------------------------- */
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.18; }
h3 { font-family: var(--font-body); font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; color: var(--text-primary); }
p  { font-size: 1rem; color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }

.text-gold { color: var(--gold); }
.accent { color: var(--gold); font-style: italic; font-weight: 600; }

/* ---------- Layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, #0B0910 100%); }

.divider-line { height: 1px; background: var(--divider); border: 0; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Section heading + gold underline */
.section-heading { margin-bottom: 48px; max-width: 640px; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
}
.section-heading p { margin-top: 16px; font-size: 1.05rem; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading--center h2::after { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ------------------------------------------------------ */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: #0D0B12;
  font-weight: 600;
  padding: 14px 28px;
  border: 1.5px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  padding: 12.5px 26.5px;
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* Inline gold text link */
.link-gold {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: 0.9rem;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.link-gold:hover { gap: 11px; color: var(--gold-light); }

/* ---------- Cards -------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(196, 163, 90, 0.4);
}

/* Icon chip (gold, holds an SVG) */
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: 22px;
}
.icon-chip svg { width: 26px; height: 26px; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 5px 11px; border-radius: 999px;
}
.badge--solid { background: var(--gold); color: #0D0B12; border-color: var(--gold); }
.badge--pop { position: absolute; top: 18px; right: 18px; }

/* ---------- Navigation --------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: var(--bg-nav);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(8, 6, 8, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--gold-border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--nav-h);
}

/* Logo + gold shimmer */
.nav-logo { position: relative; overflow: hidden; display: inline-block; border-radius: 6px; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.35), transparent);
  animation: logoShimmer 6s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links > a, .nav__dropdown-toggle {
  font-size: 0.92rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s var(--ease); display: inline-flex; align-items: center; gap: 5px;
}
.nav__links > a:hover, .nav__dropdown-toggle:hover { color: var(--text-primary); }
.nav__links > a[aria-current="page"] { color: var(--gold); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle .chev { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 248px;
  background: var(--bg-elev);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__dropdown:hover .chev, .nav__dropdown.is-open .chev { transform: rotate(180deg); }
.nav__dropdown-menu a {
  display: block; padding: 11px 14px; border-radius: 8px;
  font-size: 0.9rem; color: var(--text-secondary);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav__dropdown-menu a:hover { background: var(--gold-dim); color: var(--text-primary); }
.nav__dropdown-menu a[aria-current="page"] { color: var(--gold); }

/* Nav actions */
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__lang { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.nav__lang a { color: var(--text-muted); transition: color 0.2s var(--ease); }
.nav__lang a:hover { color: var(--text-primary); }
.nav__lang a.is-active { color: var(--gold); }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Footer ------------------------------------------------------- */
.footer { background: #080608; border-top: 1px solid var(--gold-border); padding: 72px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer__brand .nav-logo img { height: 44px; }
.footer__tagline { margin-top: 18px; max-width: 260px; font-size: 0.95rem; }
.footer__est { margin-top: 8px; color: var(--text-muted); font-size: 0.85rem; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__contact li { font-size: 0.92rem; color: var(--text-secondary); transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; min-width: 0; }
.footer__contact a { overflow-wrap: anywhere; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Social icons */
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-row a svg { width: 17px; height: 17px; }
.social-row a:hover { color: #fff; transform: translateY(-2px); }
.social-row a.s-fb:hover { background: #1877F2; }
.social-row a.s-ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-row a.s-li:hover { background: #0A66C2; }
.social-row a.s-wa:hover { background: #25D366; }

.footer__bottom {
  margin-top: 56px; padding: 24px 0;
  border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer__bottom, .footer__bottom a { color: var(--text-muted); font-size: 0.84rem; }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero__content { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; text-align: center; }
.hero__title { margin: 22px 0; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 640px; margin: 0 auto; line-height: 1.65; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* Hero stats bar */
.hero__stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  margin-top: 52px;
}
.stat-pill { padding: 0 32px; text-align: center; position: relative; }
.stat-pill + .stat-pill::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 38px; background: var(--gold-border);
}
.stat-pill__num { font-family: var(--font-body); font-size: clamp(1.7rem, 2.6vw, 2.1rem); font-weight: 700; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-pill__label { margin-top: 8px; font-size: 0.78rem; color: var(--text-secondary); letter-spacing: 0.02em; }

/* ---------- Stats counter band ------------------------------------------ */
.stats-band {
  background: linear-gradient(135deg, #0D0B12 0%, #13101C 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-block { text-align: center; padding: 16px; }
.stat-block__num { font-family: var(--font-body); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-block__label { margin-top: 12px; font-size: 0.9rem; color: var(--text-secondary); }

/* ---------- Services grid ------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card { position: relative; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; flex: 1; }

/* ---------- Two-column feature (Why us) ---------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split--top { align-items: start; }

.feature-block { display: flex; gap: 18px; padding: 18px 0; }
.feature-block + .feature-block { border-top: 1px solid var(--divider); }
.feature-block .icon-chip { margin-bottom: 0; width: 46px; height: 46px; flex-shrink: 0; }
.feature-block .icon-chip svg { width: 22px; height: 22px; }
.feature-block h3 { margin-bottom: 6px; }
.feature-block p { font-size: 0.93rem; }

/* Credential card */
.cred-card { text-align: center; }
.cred-card .cred-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--gold); }
.cred-card .cred-line { font-size: 0.9rem; margin-top: 6px; }
.cred-card .cred-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.cred-card .cred-div { height: 1px; background: var(--divider); margin: 22px auto; width: 64px; }
.cred-card .cred-guarantee { color: var(--gold); font-weight: 600; font-size: 0.95rem; }

/* ---------- Team --------------------------------------------------------- */
.team-card { padding: 0; overflow: hidden; }
.team-card__photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; border-bottom: 1px solid var(--gold-border); }
.team-card__body { padding: 26px 28px 30px; }
.team-card__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--gold); }
.team-card__role { color: var(--text-secondary); font-weight: 500; margin-top: 4px; font-size: 0.95rem; }
.team-card__cred { color: var(--text-muted); font-size: 0.85rem; margin-top: 10px; line-height: 1.55; }
.team-card__bio { margin-top: 16px; font-size: 0.95rem; }
.team-card--about .team-card__photo { aspect-ratio: 4 / 3; }

/* ---------- Testimonials ------------------------------------------------- */
.review-card { display: flex; flex-direction: column; padding: 28px; }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.review-platform { align-self: flex-start; margin-bottom: 16px; }
.review-text { font-style: italic; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.review-author { margin-top: 20px; }
.review-author .r-name { color: var(--text-primary); font-weight: 600; font-size: 0.95rem; }
.review-author .r-loc { color: var(--text-muted); font-size: 0.84rem; margin-top: 2px; }

/* ---------- Membership teaser / pricing --------------------------------- */
.benefit-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: var(--text-secondary); }
.benefit-list .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.benefit-list .check svg { width: 12px; height: 12px; color: var(--gold); }

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); padding: 44px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-card--feature { box-shadow: var(--shadow-card); }
.pricing-card__name { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); font-weight: 600; }
.pricing-card__price { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 600; color: var(--text-primary); margin: 14px 0 2px; line-height: 1; }
.pricing-card__price span { font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.pricing-card__per { color: var(--text-muted); font-size: 0.9rem; }
.pricing-card__rule { height: 1px; background: var(--divider); margin: 26px 0; }
.pricing-card .benefit-list { text-align: left; margin-top: 0; margin-bottom: 28px; }
.pricing-card__note { margin-top: 16px; font-size: 0.82rem; color: var(--text-muted); }

/* ---------- CTA banner --------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(196,163,90,0.08) 0%, rgba(196,163,90,0.03) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: 1rem; }
.cta-phone svg { width: 18px; height: 18px; }
.cta-phone:hover { color: var(--gold-light); }

/* ---------- Interior page hero ------------------------------------------ */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
}
.page-hero__content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.18rem); max-width: 600px; margin: 0 auto; }
.page-hero__cta { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Mission / value cards --------------------------------------- */
.mv-card h3 { color: var(--gold); margin-bottom: 14px; font-family: var(--font-display); font-size: 1.4rem; }
.value-card { text-align: left; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.93rem; }

/* ---------- Timeline ----------------------------------------------------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; padding: 8px 0; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--divider); transform: translateX(-50%); }
.tl-item { position: relative; width: 50%; padding: 0 44px 44px; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-dot {
  position: absolute; top: 4px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--gold-border); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700;
  font-family: var(--font-body); z-index: 1;
}
.tl-item:nth-child(odd) .tl-dot { right: -22px; }
.tl-item:nth-child(even) .tl-dot { left: -22px; }
.tl-item h3 { color: var(--gold); font-family: var(--font-display); margin-bottom: 8px; }
.tl-item p { font-size: 0.93rem; }

/* ---------- What sets us apart list ------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; color: var(--text-secondary); }
.check-list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-list .check svg { width: 13px; height: 13px; color: var(--gold); }

/* ---------- Process steps ------------------------------------------------ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding-top: 8px; }
.process-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 18px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; }

/* ---------- FAQ accordion ------------------------------------------------ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gold-border); border-radius: var(--radius); background: var(--bg-card); margin-bottom: 14px; overflow: hidden; transition: border-color 0.25s var(--ease); }
.faq-item.is-open { border-color: rgba(196,163,90,0.45); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--text-primary);
}
.faq-q .faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a__inner { padding: 0 26px 24px; color: var(--text-secondary); font-size: 0.97rem; line-height: 1.7; }

/* ---------- Ebook card --------------------------------------------------- */
.ebook { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center; max-width: 920px; margin: 0 auto; }
.ebook-cover {
  aspect-ratio: 3 / 4; border-radius: var(--radius); border: 1px solid var(--gold-border);
  background: linear-gradient(160deg, #1a1526 0%, #0d0b12 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  padding: 32px; text-align: center; position: relative; overflow: hidden;
}
.ebook-cover::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 20%, rgba(196,163,90,0.18), transparent 60%); }
.ebook-cover img { height: 56px; width: auto; position: relative; z-index: 1; }
.ebook-cover .ebook-cover__title { position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.15rem; color: var(--text-primary); line-height: 1.35; }
.ebook-cover .ebook-cover__tag { position: relative; z-index: 1; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.ebook-info h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 14px 0; }
.ebook-price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 22px; }
.ebook-price .now { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--gold); }
.ebook-price .was { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.ebook-info p { line-height: 1.7; margin-bottom: 26px; }

/* ---------- Misc helpers ------------------------------------------------- */
.text-center { text-align: center; }
.mt-cta { margin-top: 48px; text-align: center; }
.stack-sm > * + * { margin-top: 14px; }
.lead { font-size: 1.08rem; line-height: 1.75; }
.muted { color: var(--text-muted); }
.fineprint { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Accessibility ------------------------------------------------ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--gold); color: #0D0B12; padding: 10px 18px; border-radius: 6px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }
.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; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Hero stats: 4-across only when there's room; tidy 2x2 below */
@media (max-width: 960px) {
  .hero__stats { gap: 14px 0; max-width: 460px; margin-left: auto; margin-right: auto; }
  .stat-pill { flex: 0 0 50%; padding: 16px 12px; }
  .stat-pill + .stat-pill::before { display: none; }
}

@media (max-width: 900px) {
  /* Mobile nav */
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed; inset: 0; top: 0;
    flex-direction: column; justify-content: center; gap: 34px;
    background: var(--bg-nav);
    padding: 100px 28px 48px;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
    overflow-y: auto;
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links { flex-direction: column; gap: 22px; }
  .nav__links > a, .nav__dropdown-toggle { font-size: 1.15rem; }
  .nav__dropdown { text-align: center; }
  .nav__dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; background: transparent; border: none; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); min-width: 0; margin-top: 0;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { max-height: 320px; margin-top: 12px; }
  .nav__dropdown-menu a { text-align: center; color: var(--text-muted); }
  .nav__actions { flex-direction: column; gap: 16px; }
  .nav__lang { font-size: 1rem; }
  .nav__actions .btn-secondary, .nav__actions .btn-primary { width: 220px; padding: 13px 24px; font-size: 0.95rem; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .ebook { grid-template-columns: 1fr; gap: 32px; max-width: 460px; }
  .ebook-cover { max-width: 320px; margin: 0 auto; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 40px; }

  /* Timeline collapses to single rail on the left */
  .timeline::before { left: 22px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 36px 60px; }
  .tl-item .tl-dot { left: 0 !important; right: auto !important; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4, .process-grid { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding-top: 56px; }
  .card { padding: 26px; }
  .container { padding: 0 20px; }
  .cta-banner__actions { flex-direction: column; gap: 14px; }
}

@media (max-width: 380px) {
  .stats-band__grid { grid-template-columns: 1fr; }
}
