/* ═══════════════════════════════════════════════════════════
   OmniSkillCenter — Premium Editorial Design System v2
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   Palette: Ink Navy · Academic Gold · Sage · Warm Cream
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core palette */
  --ink:      #0D1B2A;
  --ink-80:   rgba(13,27,42,.8);
  --ink-40:   rgba(13,27,42,.4);
  --ink-10:   rgba(13,27,42,.07);
  --gold:     #C8922A;
  --gold-lt:  #F5E6C8;
  --sage:     #3D6B4F;
  --sage-lt:  #E4F0E9;
  --blue:     #1A56DB;
  --blue-lt:  #EBF2FF;
  --coral:    #E8472A;
  --coral-lt: #FDEEE9;
  --cream:    #FAF7F2;
  --white:    #FFFFFF;
  --border:   rgba(13,27,42,.1);
  --muted:    #6B7C8D;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --nav-h:    72px;
  --sp-xl:    100px;
  --sp-lg:    72px;
  --sp-md:    48px;
  --sp-sm:    24px;

  /* Shape */
  --r-sm:     8px;
  --r-md:     16px;
  --r-lg:     24px;
  --r-xl:     36px;

  /* Shadows */
  --sh-sm:    0 2px 12px rgba(13,27,42,.08);
  --sh-md:    0 8px 32px rgba(13,27,42,.12);
  --sh-lg:    0 20px 60px rgba(13,27,42,.18);
  --sh-xl:    0 32px 80px rgba(13,27,42,.22);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--muted); line-height: 1.8; font-size: .97rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--sm { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.section { padding: var(--sp-xl) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--ink { background: var(--ink); }

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

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .02em; padding: 14px 28px; border-radius: 50px;
  border: 2px solid transparent; transition: all .22s cubic-bezier(.4,0,.2,1);
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn--primary {
  background: var(--ink); color: var(--white);
}
.btn--primary:hover {
  background: #1a3050; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13,27,42,.3);
}
.btn--gold {
  background: var(--gold); color: var(--white);
}
.btn--gold:hover {
  background: #b07d20; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,146,42,.35);
}
.btn--sage {
  background: var(--sage); color: var(--white);
}
.btn--outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink); color: var(--white); transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12); border-color: var(--white);
}
.btn--white {
  background: var(--white); color: var(--ink);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--lg { padding: 18px 40px; font-size: .95rem; }
.btn--sm { padding: 9px 20px; font-size: .8rem; }

/* ── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: 4px 12px; border-radius: 50px;
}
.badge--gold   { background: var(--gold-lt);  color: var(--gold); }
.badge--sage   { background: var(--sage-lt);  color: var(--sage); }
.badge--blue   { background: var(--blue-lt);  color: var(--blue); }
.badge--coral  { background: var(--coral-lt); color: var(--coral); }
.badge--ink    { background: var(--ink);       color: var(--white); }
.badge--live   {
  background: #FF3B30; color: #fff; animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,59,48,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255,59,48,0); }
}

/* ── LEVEL CHIPS ────────────────────────────────────────── */
.level-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.chip-A1 { background: #E8F4FF; color: #1A56DB; }
.chip-A2 { background: #E4F0E9; color: #3D6B4F; }
.chip-B1 { background: #FFF4E0; color: #C8922A; }
.chip-B2 { background: #FFF0E8; color: #D4510A; }
.chip-C1 { background: #F2EBFF; color: #6B21A8; }
.chip-C2 { background: #FFE8F4; color: #BE185D; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

/* ── IMAGE UTILS ────────────────────────────────────────── */
.img-cover {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.2) 60%, transparent 100%);
}
.img-overlay--dark {
  background: linear-gradient(135deg, rgba(13,27,42,.9), rgba(13,27,42,.6));
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(13,27,42,.1); }
.nav__inner {
  height: 100%; max-width: 1360px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 0;
}

/* Logo */
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: var(--ink); text-decoration: none; margin-right: 36px; flex-shrink: 0;
  letter-spacing: -.02em;
}
.nav__logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.nav__logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(200,146,42,.4));
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 0; list-style: none; flex: 1; }
.nav__links > li { position: relative; }
.nav__links > li > a,
.nav__links > li > .nav__btn {
  display: flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: .86rem; color: var(--ink-80);
  padding: 8px 14px; border-radius: 10px; border: none; background: none;
  transition: all .18s; cursor: pointer; letter-spacing: .01em;
}
.nav__links > li > a:hover,
.nav__links > li > .nav__btn:hover,
.nav__links > li > a.active { color: var(--ink); background: var(--ink-10); }
.nav__links > li > a.active { font-weight: 700; }

/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--sh-xl);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97);
  transition: all .2s cubic-bezier(.4,0,.2,1); z-index: 200;
  transform-origin: top left;
}
.nav__links > li:hover .nav__dropdown { opacity: 1; visibility: visible; transform: none; }
.nav__dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 10px; font-size: .86rem; font-weight: 600; color: var(--ink-80);
  transition: all .15s;
}
.nav__dropdown a:hover { background: var(--cream); color: var(--ink); }
.nav__dropdown .dd-chip {
  width: 32px; height: 32px; border-radius: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav__sep { height: 1px; background: var(--border); margin: 6px 0; }
.nav__soon-tag { font-size: .62rem; font-weight: 700; background: var(--border); color: var(--muted); padding: 2px 7px; border-radius: 50px; margin-left: auto; }

/* CTA */
.nav__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer; margin-left: auto;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .2s; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav__mobile {
  display: none; flex-direction: column; gap: 2px; padding: 12px 20px 20px;
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 998;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 11px 14px; font-weight: 600; font-size: .92rem; border-radius: 10px; color: var(--ink-80); }
.nav__mobile a:hover { background: var(--cream); color: var(--ink); }
.nav__mobile-sep { height: 1px; background: var(--border); margin: 8px 0; }
.nav__mobile-cta { display: flex; gap: 10px; margin-top: 6px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); }
.footer__top { padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--white); display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer__brand-mark {
  width: 40px; height: 40px; background: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.footer__brand p { font-size: .88rem; line-height: 1.75; max-width: 250px; }
.footer__col h5 {
  font-family: var(--font-body); font-weight: 800; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.footer__col a { display: block; font-size: .88rem; margin-bottom: 12px; transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__col .soon { font-size: .62rem; font-weight: 700; background: rgba(255,255,255,.08); color: rgba(255,255,255,.35); padding: 2px 7px; border-radius: 50px; margin-left: 6px; }
.footer__bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content:center;
  font-size: .88rem; transition: background .15s;
}
.footer__socials a:hover { background: rgba(255,255,255,.15); }

/* ══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--cream);
  padding: var(--sp-xl) 0;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 55%;
  background: var(--ink); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero__content { padding-right: 16px; }
.hero__super {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero__super span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: block; }
.hero h1 { color: var(--ink); font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: 1.05rem; margin: 20px 0 36px; max-width: 480px; color: #5A6A7A; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero__stat-val { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--ink); line-height: 1; }
.hero__stat-val em { font-style: normal; color: var(--gold); }
.hero__stat-lbl { font-size: .78rem; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* Hero image panel */
.hero__image-panel {
  position: relative; height: 600px;
}
.hero__img-main {
  position: absolute; inset: 0;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  overflow: hidden;
}
.hero__img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(250,247,242,.4) 0%, transparent 30%);
}

/* Floating cards on hero */
.hero__float-1 {
  position: absolute; bottom: 32px; left: -32px; z-index: 10;
  background: var(--white); border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--sh-xl); min-width: 200px;
}
.hero__float-2 {
  position: absolute; top: 32px; right: -8px; z-index: 10;
  background: var(--gold); border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--sh-xl);
}
.float-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.float-val { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--ink); line-height: 1.1; }
.float-sub { font-size: .75rem; font-weight: 600; color: var(--sage); margin-top: 2px; }
.float-val-white { color: var(--white); }
.float-sub-white { color: rgba(255,255,255,.75); }

/* Levels strip on hero image */
.hero__levels-strip {
  position: absolute; bottom: 0; right: 0; left: 0;
  background: linear-gradient(to top, rgba(13,27,42,.95), transparent);
  padding: 24px 24px 20px;
  display: flex; align-items: center; gap: 8px; border-radius: 0 0 0 var(--r-xl);
}
.hls-chip {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  padding: 6px 10px; font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; color: var(--white); cursor: pointer; transition: all .18s;
  text-decoration: none;
}
.hls-chip:hover { background: rgba(255,255,255,.22); }

/* ══════════════════════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--ink); padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 48px; animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); white-space: nowrap;
}
.marquee-item span { color: var(--gold); font-size: 1rem; }

/* ══════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.feat {
  background: var(--white); padding: 36px 32px;
  transition: background .2s;
}
.feat:hover { background: var(--cream); }
.feat__num {
  font-family: var(--font-display); font-weight: 700; font-size: 3rem;
  color: var(--border); line-height: 1; margin-bottom: 12px;
}
.feat__icon { font-size: 1.8rem; margin-bottom: 14px; }
.feat h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feat p  { font-size: .88rem; }

/* ══════════════════════════════════════════════════════════
   IMAGE SPLIT SECTION
   ══════════════════════════════════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
}
.split__image { position: relative; height: 560px; overflow: hidden; }
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__content { padding: 72px 64px; }
.split--reverse .split__image { order: 2; }
.split--reverse .split__content { order: 1; }

/* ══════════════════════════════════════════════════════════
   TEACHER CARDS
   ══════════════════════════════════════════════════════════ */
.teacher-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.teacher-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.teacher-card:hover img { transform: scale(1.06); }
.teacher-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.92) 0%, rgba(13,27,42,.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.teacher-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--white); }
.teacher-card__title { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); margin: 4px 0 10px; }
.teacher-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.teacher-card__tag { font-size: .68rem; font-weight: 700; background: rgba(255,255,255,.15); color: var(--white); padding: 3px 9px; border-radius: 50px; }
.teacher-card__rating { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: .82rem; font-weight: 700; color: var(--gold); }
.teacher-card__btn {
  position: absolute; top: 16px; right: 16px;
  background: var(--white); color: var(--ink);
  font-size: .72rem; font-weight: 700; padding: 6px 14px;
  border-radius: 50px; opacity: 0; transform: translateY(-4px);
  transition: all .2s;
}
.teacher-card:hover .teacher-card__btn { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   COURSE CARDS
   ══════════════════════════════════════════════════════════ */
.course-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: all .25s; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.course-card__img { height: 200px; position: relative; overflow: hidden; }
.course-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .course-card__img img { transform: scale(1.06); }
.course-card__body { padding: 20px 22px 24px; }
.course-card__level { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.course-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.3; margin-bottom: 6px; }
.course-card__teacher { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.course-card__footer { display: flex; align-items: center; justify-content: space-between; }
.course-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.course-card__type { font-size: .72rem; font-weight: 700; color: var(--muted); background: var(--cream); padding: 3px 9px; border-radius: 50px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonial {
  background: var(--white); border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--border); position: relative;
}
.testimonial::before {
  content: '"'; font-family: var(--font-display); font-size: 6rem;
  color: var(--gold-lt); position: absolute; top: 8px; left: 24px;
  line-height: 1; pointer-events: none;
}
.testimonial__text { font-size: .95rem; color: var(--ink); line-height: 1.75; margin-bottom: 20px; padding-top: 28px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial__name { font-weight: 700; font-size: .88rem; color: var(--ink); }
.testimonial__meta { font-size: .78rem; color: var(--muted); }
.testimonial__stars { color: var(--gold); font-size: .82rem; margin-top: 3px; }

/* ══════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════ */
.stats-bar { background: var(--ink); padding: 48px 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item__val { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--white); line-height: 1; }
.stat-item__val em { color: var(--gold); font-style: normal; }
.stat-item__lbl { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.45); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }
.stat-item__divider { width: 32px; height: 2px; background: var(--gold); margin: 10px auto; }

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border-radius: var(--r-lg); padding: 36px;
  border: 2px solid var(--border); position: relative;
  transition: all .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.pricing-card--featured {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}
.pricing-card--featured p { color: rgba(255,255,255,.6); }
.pricing-card--featured h3 { color: var(--white); }
.pc__pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 700; padding: 4px 16px;
  border-radius: 50px; white-space: nowrap; letter-spacing: .06em;
}
.pc__price { font-family: var(--font-display); font-weight: 700; font-size: 3.5rem; line-height: 1; margin: 18px 0 6px; }
.pc__price sup { font-size: 1.4rem; vertical-align: super; }
.pc__price sub { font-size: .9rem; font-weight: 400; font-family: var(--font-body); }
.pc__features { list-style: none; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 11px; }
.pc__features li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.pc__check { color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pricing-card--featured .pc__check { color: #6EE7B7; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); background: var(--ink);
}
.cta-section__bg {
  position: absolute; inset: 0;
}
.cta-section__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.cta-section__content {
  position: relative; z-index: 1; padding: 80px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,.65); margin-top: 10px; }
.cta-section__btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  height: 360px; display: flex; align-items: flex-end;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.5) 60%, rgba(13,27,42,.2) 100%);
}
.page-hero__content { position: relative; z-index: 1; padding: 48px 0; width: 100%; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.6); transition: color .15s; }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-top: 10px; max-width: 560px; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer; font-weight: 700; font-size: .97rem;
  color: var(--ink);
}
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--ink); transition: all .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--ink); color: var(--white); border-color: var(--ink); transform: rotate(45deg); }
.faq-a { font-size: .92rem; color: var(--muted); padding-bottom: 22px; display: none; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; font-size: .84rem; margin-bottom: 7px; color: var(--ink); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-md);
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: .92rem; color: var(--ink);
  outline: none; transition: border-color .18s, box-shadow .18s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero::before { left: 52%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --sp-xl: 64px; --sp-lg: 48px; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero::before { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__image-panel { height: 400px; }
  .hero__img-main { border-radius: var(--r-lg); }
  .split { grid-template-columns: 1fr; }
  .split__image { height: 320px; }
  .split--reverse .split__image, .split--reverse .split__content { order: unset; }
  .split__content { padding: 48px 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section__content { flex-direction: column; text-align: center; padding: 56px 32px; }
  .cta-section__btns { justify-content: center; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 640px) {
  :root { --sp-xl: 48px; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__float-1, .hero__float-2 { display: none; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
}
