@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #fafaf8;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --ink:    #1a1a1a;
  --ink2:   #4a4a4a;
  --ink3:   #8a8a8a;
  --paper:  #fafaf8;
  --paper2: #f3f2ee;
  --paper3: #eceae3;
  --accent: #2b5ce6;
  --accent2:#e63b2b;
  --green:  #1a9e5c;
  --border: rgba(26,26,26,0.1);
  --t: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── Typography helpers ──────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 4px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  cursor: pointer; border: none; font-family: 'Inter', sans-serif;
  transition: var(--t); white-space: nowrap;
}
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: #333; transform: translateY(-1px); }
.btn--line { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(43,92,230,.25); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(43,92,230,.3); }
.btn--lg { padding: 15px 36px; font-size: 14px; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 40px; height: 60px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--ink);
}
.nav__logo sup {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  color: var(--accent); vertical-align: super; margin-left: 2px;
}
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 7px 15px; border-radius: 4px;
  font-size: 13px; font-weight: 500; color: var(--ink2);
  transition: var(--t);
}
.nav__links a:hover { color: var(--ink); background: var(--paper3); }
.nav__links .nav__cta {
  background: var(--ink); color: #fff; margin-left: 8px; border-radius: 4px;
}
.nav__links .nav__cta:hover { background: #333; }

.nav__phone {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 4px;
  font-size: 13px; font-weight: 600; color: var(--ink2);
  border: 1px solid var(--border);
  transition: var(--t);
}
.nav__phone:hover { color: var(--accent); border-color: var(--accent); background: #f0f5ff; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border);
  border-radius: 4px; padding: 8px; cursor: pointer;
}
.nav__burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: var(--t); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: #0e1117;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Background */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(43,92,230,.18), transparent 70%);
  top: 10%; left: 10%;
  animation: ghover 10s ease-in-out infinite;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,158,92,.1), transparent 70%);
  bottom: 15%; right: 10%;
  animation: ghover 14s ease-in-out infinite reverse;
}
@keyframes ghover { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }
.hero__roads { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Center content */
.hero__center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 60px 28px 40px;
  max-width: 860px;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43,92,230,.12);
  border: 1px solid rgba(43,92,230,.3);
  color: #7eaaff;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 36px;
}
.hero__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 28px;
}
.hero__h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #5b9fff, #7ec8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero__desc {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 580px; margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; justify-content: center; }

.btn--ghost-hero {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
}
.btn--ghost-hero:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }

/* Pills */
.hero__pills {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.hero__pill {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  font-size: 12px; font-weight: 500;
  padding: 7px 16px; border-radius: 100px;
  transition: var(--t); cursor: default;
}
.hero__pill:hover {
  background: rgba(43,92,230,.15);
  border-color: rgba(43,92,230,.35);
  color: #7eaaff;
}

/* Bottom stats bar */
.hero__bottom {
  position: relative; z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 40px;
  gap: 0;
  margin-top: auto;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; padding: 0 40px; }
.hero__stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: 4px;
}
.hero__stat-n.pct::after { content: '%'; }
.hero__stat-l { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 500; letter-spacing: .5px; }
.hero__stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.1);
}
.hero__scroll-hint {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
  font-size: 11px; color: rgba(255,255,255,.2);
  letter-spacing: .5px; font-weight: 500;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* Marquee */
.marquee-bar {
  background: var(--ink); overflow: hidden; padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid var(--border);
}
.marquee__track {
  display: flex; gap: 0;
  animation: ticker 24s linear infinite; white-space: nowrap;
}
.marquee__track span {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  padding: 0 20px;
}
.marquee__track span.dot { color: var(--accent); opacity: 1; padding: 0 4px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Section layout ───────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--paper2); }

.s-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
}
.s-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 52px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.s-head__left {}
.s-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -0.8px; line-height: 1.1;
}
.s-title em { font-style: italic; color: var(--ink3); font-weight: 400; }
.s-desc { font-size: 14px; color: var(--ink3); max-width: 380px; line-height: 1.7; }

/* ── Why section ──────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.why-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: var(--paper);
  transition: var(--t);
  display: flex; flex-direction: column; gap: 14px;
}
.why-cell:last-child { border-right: none; }
.why-cell:hover { background: #fff; }
.why-cell__n {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; color: var(--paper3);
  line-height: 1; letter-spacing: -2px;
}
.why-cell__title { font-size: 15px; font-weight: 600; line-height: 1.3; }
.why-cell__text { font-size: 13px; color: var(--ink3); line-height: 1.7; }

/* ── Programs ─────────────────────────────────────── */
.prog-hero {
  background: var(--ink);
  border-radius: 8px; padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  margin-bottom: 16px;
}
.prog-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.prog-hero__badge::before {
  content: '★'; color: #fbbf24; font-size: 12px;
}
.prog-hero__name {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; color: #fff;
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px;
}
.prog-hero__rating {
  font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 24px;
}
.prog-hero__rating strong { color: #fbbf24; }
.prog-hero__desc { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.75; }

.prog-hero__right { padding-top: 8px; }
.prog-hero__right h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.prog-feats {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px; overflow: hidden;
  margin-bottom: 32px;
}
.prog-feat {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13.5px; color: rgba(255,255,255,.65);
  transition: var(--t);
}
.prog-feat:last-child { border-bottom: none; }
.prog-feat:hover { background: rgba(255,255,255,.03); color: rgba(255,255,255,.85); }
.prog-feat::before {
  content: '→'; color: var(--accent); font-size: 14px; flex-shrink: 0;
}

.prog-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.prog-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: var(--t);
}
.prog-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.prog-card__head { display: flex; align-items: center; justify-content: space-between; }
.prog-card__icon { font-size: 28px; }
.prog-card__free {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  color: var(--green); border: 1px solid rgba(26,158,92,.25);
  padding: 3px 8px; border-radius: 100px; background: rgba(26,158,92,.07);
}
.prog-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; letter-spacing: -0.3px;
}
.prog-card__stars { font-size: 12px; color: #fbbf24; }
.prog-card__stars span { color: var(--ink3); font-family: 'Inter', sans-serif; font-size: 11px; }
.prog-card__desc { font-size: 13px; color: var(--ink2); line-height: 1.65; }
.prog-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.prog-card__tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
  background: var(--paper2); border: 1px solid var(--border);
  color: var(--ink3); padding: 3px 9px; border-radius: 3px;
}
.prog-card__dl {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 9px 18px; border-radius: 6px;
  transition: var(--t); width: 100%; justify-content: center;
}
.prog-card__dl:hover { background: #1a4fd6; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(43,92,230,.3); }

/* ── Steps ────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden;
}
.step-box {
  background: #fff; padding: 44px 48px;
  display: flex; flex-direction: column; gap: 18px;
  transition: var(--t);
}
.step-box:hover { background: var(--paper); }
.step-box__n {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700; color: var(--paper3);
  line-height: 1; letter-spacing: -3px; margin-bottom: -4px;
}
.step-box__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.3px;
}
.step-box__desc { font-size: 14px; color: var(--ink2); line-height: 1.75; }

.step-note {
  background: #f0f5ff; border-left: 2px solid var(--accent);
  padding: 12px 16px; font-size: 13px; color: var(--ink2); border-radius: 0 4px 4px 0;
}
.step-code {
  background: var(--paper2); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden;
}
.step-code__header {
  padding: 9px 16px; border-bottom: 1px solid var(--border);
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink3);
}
.step-code__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.step-code__row {
  display: flex; gap: 12px; font-size: 12.5px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.step-code__row:last-child { border-bottom: none; padding-bottom: 0; }
.step-code__key { font-weight: 600; color: var(--accent); width: 56px; flex-shrink: 0; }
.step-code__val { color: var(--ink2); }

.step-regions { display: flex; flex-wrap: wrap; gap: 8px; }
.step-region {
  font-size: 12.5px; font-weight: 500;
  background: var(--paper); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 100px; transition: var(--t);
}
.step-region:hover { border-color: var(--accent); color: var(--accent); background: #f0f5ff; }

.step-ok {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,158,92,.08); border: 1px solid rgba(26,158,92,.2);
  color: var(--green); padding: 11px 20px; border-radius: 4px;
  font-size: 13.5px; font-weight: 600;
}

/* ── Compare ──────────────────────────────────────── */
.ctbl-wrap {
  border: 1px solid var(--border); border-radius: 8px; overflow: auto;
  background: #fff;
}
.ctbl {
  width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 560px;
}
.ctbl thead { background: var(--paper2); }
.ctbl th {
  padding: 14px 22px; text-align: left;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink3);
  border-bottom: 1px solid var(--border);
}
.ctbl td { padding: 16px 22px; border-bottom: 1px solid var(--border); color: var(--ink2); }
.ctbl tbody tr:last-child td { border-bottom: none; }
.ctbl tbody tr:hover { background: var(--paper); }
.ctbl__top { background: #f5f8ff; }
.ctbl__badge {
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; letter-spacing: 0.5px; margin-left: 8px;
}
.yes { color: var(--green); font-weight: 600; }
.no  { color: #ccc; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-layout {
  display: grid; grid-template-columns: 320px 1fr; gap: 80px;
  align-items: start;
}
.faq-sticky { position: sticky; top: 80px; }
.faq-sticky__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 14px;
}
.faq-sticky__title em { font-style: italic; color: var(--ink3); }
.faq-sticky__sub { font-size: 13px; color: var(--ink3); line-height: 1.6; }

.faq-list { display: flex; flex-direction: column; }
.fq {
  border-bottom: 1px solid var(--border);
}
.fq:first-child { border-top: 1px solid var(--border); }
.fq__q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 20px 0; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500;
  color: var(--ink); text-align: left; cursor: pointer; transition: color var(--t);
}
.fq__q:hover { color: var(--accent); }
.fq.open .fq__q { color: var(--accent); }
.fq__ico {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--paper2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; line-height: 1; color: var(--ink3);
  font-weight: 300; transition: var(--t);
}
.fq.open .fq__ico {
  transform: rotate(45deg); border-color: var(--accent);
  background: #f0f5ff; color: var(--accent);
}
.fq__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.fq.open .fq__body { max-height: 300px; }
.fq__body p {
  padding: 0 0 20px; font-size: 13.5px; color: var(--ink2); line-height: 1.8;
}
.fq__body p b { color: var(--ink); font-weight: 600; }

/* ── Reviews ──────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.rev {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
  display: flex; flex-direction: column; gap: 0;
  transition: var(--t);
}
.rev:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.07); }
.rev__stars { color: #fbbf24; letter-spacing: 3px; font-size: 13px; margin-bottom: 16px; }
.rev__text {
  font-family: 'Playfair Display', serif;
  font-size: 15px; color: var(--ink); line-height: 1.7;
  font-style: italic; flex: 1; margin-bottom: 24px;
}
.rev__divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.rev__author { display: flex; align-items: center; gap: 12px; }
.rev__av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rev__name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.rev__city { font-size: 11px; color: var(--ink3); }

/* ── Company ──────────────────────────────────────── */
.company-sec { background: var(--paper2); }

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}
.company-card--main { display: flex; flex-direction: column; gap: 20px; }

.company-card__header {
  display: flex; align-items: center; gap: 16px;
}
.company-logo-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 6px;
}
.company-status {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--green);
}
.company-status__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: blink 2s infinite;
}
.company-full-name {
  font-size: 12px; color: var(--ink3); font-weight: 500;
  letter-spacing: 0.3px; line-height: 1.5;
  padding: 10px 14px;
  background: var(--paper2); border-radius: 6px;
  border: 1px solid var(--border);
}

.company-rows { display: flex; flex-direction: column; }
.company-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.company-row:last-child { border-bottom: none; padding-bottom: 0; }
.company-row__key { color: var(--ink3); font-weight: 500; flex-shrink: 0; }
.company-row__val { color: var(--ink); font-weight: 500; text-align: right; line-height: 1.5; }
.company-row__val small { display: block; font-size: 11px; color: var(--ink3); margin-top: 2px; }
.company-row__val--green { color: var(--green); font-weight: 600; }

/* Details right col */
.company-details {
  display: flex; flex-direction: column; gap: 12px;
}
.company-detail-item {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--t);
}
.company-detail-item:hover { border-color: var(--accent); }
.company-detail-item__n {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--accent);
  letter-spacing: -0.5px; line-height: 1;
}
.company-detail-item__l { font-size: 13px; color: var(--ink3); font-weight: 500; text-align: right; }

.company-badge-row {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.company-badge-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink2); font-weight: 500;
}

@media (max-width: 768px) {
  .company-grid { grid-template-columns: 1fr; }
}

/* ── CTA ──────────────────────────────────────────── */
.cta-wrap {
  background: var(--ink); border-radius: 12px;
  padding: 80px 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute; top: -80px; right: 200px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-wrap::after {
  content: '';
  position: absolute; bottom: -120px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(43,92,230,.2);
  pointer-events: none;
}
.cta-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px; display: block;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1.1;
}
.cta-title em { font-style: italic; color: rgba(255,255,255,.4); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.05);
}
.footer__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
}
.footer__top {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 80px; padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.footer__brand-desc { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.65; }
.footer__cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 6px;
}
.footer__col a { font-size: 13px; color: rgba(255,255,255,.4); transition: var(--t); }
.footer__col a:hover { color: rgba(255,255,255,.8); }
.footer__contact {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5) !important;
  font-weight: 500; transition: var(--t);
}
.footer__contact:hover { color: #fff !important; }
.footer__contact--note {
  font-size: 11px !important; color: rgba(255,255,255,.2) !important;
  padding-left: 21px; pointer-events: none;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.2);
}

/* ── Cookie banner ───────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--ink); color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; line-height: 1.5;
  transform: translateY(0); transition: transform .3s ease;
}
.cookie-bar.hidden { transform: translateY(100%); }
.cookie-bar a { color: #7eaaff; text-decoration: underline; }
.cookie-bar__btn {
  background: var(--accent); color: #fff;
  border: none; border-radius: 6px;
  padding: 9px 22px; font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: var(--t); flex-shrink: 0;
}
.cookie-bar__btn:hover { background: #1a4fd6; }
@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; padding: 16px 20px; }
  .cookie-bar__btn { width: 100%; text-align: center; }
}

/* ── Reveal ───────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.rv.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { border-right: none; border-bottom: 1px solid var(--border); }
  .hero__title-wrap { padding: 48px 40px; }
  .hero__label { padding: 18px 40px; }
  .hero__meta { padding: 18px 40px; }
  .hero__right-top { padding: 40px; }
  .hero__stats { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-cell { border-bottom: 1px solid var(--border); }
  .prog-hero { grid-template-columns: 1fr; gap: 32px; }
  .prog-cards { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .cta-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: row; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; z-index: 150; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 11px 16px; font-size: 15px; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 20px; }
  .s-wrap { padding: 0 20px; }
  .s-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section { padding: 70px 0; }
  .hero__h1 { font-size: clamp(36px, 9vw, 60px); }
  .hero__title-wrap, .hero__right-top { padding: 36px 24px; }
  .hero__label, .hero__meta { padding: 16px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-box { padding: 32px 28px; }
  .prog-hero { padding: 32px 28px; }
  .prog-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-wrap { padding: 52px 36px; }
  .footer__inner { padding: 0 24px; }
  .footer__cols { gap: 28px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* ── ABOUT EXORUS ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.about-main__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
}
.about-main__text {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(43,92,230,0.07);
  border: 1px solid rgba(43,92,230,0.15);
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.about-specs {
  background: var(--paper2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.about-specs__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}
.about-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.about-spec-row:last-child { border-bottom: none; }
.about-spec-row__k {
  color: var(--ink3);
  flex-shrink: 0;
}
.about-spec-row__v {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}
