/* ============================================================
   français facile — Landing v2
   Same content, different design.
   - ONE font family (Manrope) used at varying weights.
   - Noto Naskh Arabic only for Urdu (required by script).
   - Editorial/Swiss/numbered-section layout, no cards-everywhere.
   ============================================================ */

:root {
  --bg:          #f5f1e8;
  --bg-card:     #ffffff;
  --bg-sunken:   #ece6d7;
  --bg-dark:     #1c2c5c;

  --bg-tint-mint:  #e3eee5;
  --bg-tint-coral: #fbe4d8;
  --bg-tint-gold:  #fdf0c8;
  --bg-tint-slate: #e6e9ee;
  --bg-tint-mauve: #efe3e9;
  --bg-tint-sky:   #dde6f3;

  --ink:   #1c2c5c;
  --ink-2: #2e3d68;
  --ink-3: #5b6783;
  --ink-4: #8a93ab;
  --ink-5: #c2c8d4;
  --on-dark:   #f5f1e8;
  --on-dark-2: #b6bdd0;

  --rule:        #1c2c5c;
  --rule-soft:   #b8bfd1;
  --rule-faint:  #e0dfd6;

  --accent:    #d62828;       /* RED   primary */
  --accent-d:  #a51e1e;
  --accent-2:  #1c2c5c;       /* NAVY  secondary */
  --accent-3:  #fad24e;       /* YELLOW highlight */
  --accent-3d: #e8b830;
  --accent-4:  #1c2c5c;       /* alias navy */

  --font:    'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ur: 'Noto Naskh Arabic', system-ui, serif;

  --max: 1280px;
  --gut: 40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv02";
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

/* ─── Urdu ─── */
.ur {
  font-family: var(--font-ur);
  direction: rtl;
  line-height: 1.8;
  font-weight: 500;
}
h1.ur, h2.ur, h3.ur, h4.ur { line-height: 1.55; font-weight: 600; }

/* ─── Type helpers ─── */
.label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.label--accent { color: var(--accent); }
.label--light  { color: var(--on-dark-2); }

/* ─── Brush highlight (brochure-style yellow/red marker) ─── */
.hl-yellow {
  background: linear-gradient(180deg, transparent 0%, transparent 55%, var(--accent-3) 55%, var(--accent-3) 92%, transparent 92%);
  padding: 0 6px;
  display: inline-block;
  margin: 0 2px;
  transform: rotate(-0.5deg);
  white-space: nowrap;
}
.hl-red-pill {
  background: var(--accent);
  color: #fff;
  padding: 2px 12px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
  margin: 0 2px;
}
.hl-navy-pill {
  background: var(--accent-2);
  color: #fff;
  padding: 2px 12px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
  margin: 0 2px;
}
.num {
  font-family: var(--font);
  font-feature-settings: "tnum";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.bignum {
  font-family: var(--font);
  font-feature-settings: "tnum";
  font-weight: 800;
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}

/* ─── Buttons (override) ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: transparent; color: var(--accent-2);
  border: 2px solid var(--accent-2);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 120ms, color 120ms, transform 120ms;
  border-radius: 999px;
}
.btn:hover { background: var(--accent-2); color: #fff; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-d); border-color: var(--accent-d); color: #fff; }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn .arrow { transition: transform 120ms; }
.btn:hover .arrow { transform: translateX(4px); }
.finalcta .btn { color: #fff; border-color: var(--accent-3); }
.finalcta .btn:hover { background: var(--accent-3); color: var(--accent-2); border-color: var(--accent-3); }
.finalcta .btn--primary { background: var(--accent-3); color: var(--accent-2); border-color: var(--accent-3); }
.finalcta .btn--primary:hover { background: #fff; color: var(--accent-2); border-color: #fff; }

/* ─── HEADER ─── */
.top {
  position: sticky; top: 0; z-index: 60;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--accent-3);
}
.top__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gut);
  display: flex; align-items: center; gap: 32px;
}
.top__brand {
  font-family: var(--font);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.025em;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.top__brand-dot {
  width: 11px; height: 11px; background: var(--accent-3);
  border-radius: 50%;
  display: inline-block;
}
.top__nav { display: flex; gap: 28px; align-items: center; margin-left: auto; }
.top__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-dark);
  position: relative;
  padding: 6px 0;
}
.top__nav a:hover { color: var(--accent-3); }
.top__nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent-3);
}
.lang {
  display: inline-flex; gap: 0;
  background: transparent;
  border: 1.5px solid #fff;
  padding: 0;
}
.lang button {
  background: transparent;
  border: 0;
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid rgba(255,255,255,0.18);
  transition: background 120ms, color 120ms;
}
.lang button:first-child { border-left: 0; }
.lang button:hover { color: var(--accent-3); }
.lang button.is-on { background: var(--accent-3); color: var(--accent-2); border-left-color: var(--accent-3); }
.lang button.is-on + button { border-left-color: var(--accent-3); }
.lang__flag {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  letter-spacing: 0;
}
.lang__code { letter-spacing: 0.06em; }
@media (max-width: 720px) {
  .lang__code { display: none; }
  .lang button { padding: 8px 10px; }
}

.top__login {
  background: var(--accent-3); border: 0;
  font-size: 13px; font-weight: 800;
  color: var(--accent-2); cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.top__login:hover { background: #fff; }
.top__burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 6px; flex-direction: column; gap: 4px; }
.top__burger span { width: 22px; height: 2px; background: #fff; display: block; }

@media (max-width: 980px) {
  .top__nav { display: none; }
  .top__burger { display: inline-flex; }
  .top__login { display: none; }
  .top__inner { gap: 16px; }
}

/* ─── SECTION SCAFFOLD ─── */
.section {
  position: relative;
  padding: 0 var(--gut);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.section--first .section__inner { border-top: 0; }
.section--bleed { padding: 0; }
.section--bleed .section__inner {
  max-width: none;
  padding: 96px var(--gut);
}

.section__head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--rule-faint);
}
.section__head--no-border { border-bottom: 0; margin-bottom: 32px; }
.section__count {
  font-family: var(--font);
  font-feature-settings: "tnum";
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink-4);
}
.section__count strong { color: var(--ink); }
.section__title {
  font-family: var(--font);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
}
.section__title--sm { font-size: clamp(28px, 3.4vw, 44px); }
.section__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}
.section__title .accent-2 { color: var(--accent-2); }
.section__lede {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}
.section__lede.ur { font-size: 17px; line-height: 1.85; }

.section__title.ur {
  font-family: var(--font-ur);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 16px;
  letter-spacing: 0;
}

/* ─── HERO ─── */
.hero { padding: 0 var(--gut); }
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 0 80px;
}
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-faint);
  margin-bottom: 56px;
}
.hero__head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}
.hero__num {
  font-family: var(--font);
  font-feature-settings: "tnum";
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-4);
  padding-top: 12px;
}
.hero__h1 {
  font-family: var(--font);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
}
.hero__h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-3);
}
.hero__h1 .accent { color: var(--accent); }
.hero__h1 .accent-2 { color: var(--accent-2); }
.hero__h1 .hl-yellow { font-style: normal; color: var(--ink); }
.hero__h1.ur {
  font-family: var(--font-ur);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 24px;
  letter-spacing: 0;
}
.hero__h1.ur em { font-style: normal; color: var(--ink-3); font-weight: 500; }

.hero__bottom {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 56px;
}
.hero__lede {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
}
.hero__lede.ur { font-size: 18px; line-height: 1.85; }
.hero__ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.hero__side {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.hero__stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-faint);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
}
.hero__stat-label { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.hero__stat-val { font-family: var(--font); font-feature-settings: "tnum"; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.hero__stat-val .accent { color: var(--accent); }

@media (max-width: 880px) {
  .hero__head { grid-template-columns: 1fr; gap: 12px; }
  .hero__num { padding-top: 0; }
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── TRUST STRIP ─── */
.trust {
  background: var(--accent);
  color: #fff;
  padding: 20px var(--gut);
  position: relative;
}
.trust::before, .trust::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  left: 0;
  background: repeating-linear-gradient(45deg, var(--accent-3) 0 14px, var(--accent) 14px 28px);
}
.trust::before { top: -8px; }
.trust::after { bottom: -8px; }
.trust__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap;
}
.trust__lbl {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-3);
}
.trust__chip {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.trust__chip::before { content: "·"; margin-right: 16px; color: var(--accent-3); font-size: 18px; }

/* ─── BENEFITS — horizontal bands with circular icons ─── */
.benefits { display: grid; gap: 0; }
.benefit {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 2fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--rule-faint);
  position: relative;
}
.benefit:first-child { border-top: 0; }
.benefit__n {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
}
.benefit:nth-child(2) .benefit__n { background: var(--accent-2); }
.benefit:nth-child(3) .benefit__n { background: var(--accent-3); color: var(--accent-2); }
.benefit:nth-child(4) .benefit__n { background: var(--accent-2); }
.benefit__t {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.benefit__t.ur { font-size: 20px; line-height: 1.5; margin-top: 8px; }
.benefit__d {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 62ch;
}
.benefit__d.ur { font-size: 15px; line-height: 1.85; margin-top: 12px; }
.benefit__chip {
  background: var(--accent-3);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: center;
}
.benefit:nth-child(2) .benefit__chip { background: var(--accent); color: #fff; }
.benefit:nth-child(3) .benefit__chip { background: var(--accent-2); color: #fff; }
.benefit:nth-child(4) .benefit__chip { background: var(--accent-3); color: var(--accent-2); }

@media (max-width: 880px) {
  .benefit { grid-template-columns: 60px 1fr; gap: 16px; }
  .benefit__d { grid-column: 2; }
  .benefit__chip { grid-column: 2; }
}

/* ─── TUTOR ─── */
.tutor {
  background: var(--accent-3);
}
.tutor__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 80px var(--gut);
  display: grid;
  grid-template-columns: 80px minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.tutor__num { font-weight: 800; font-size: 18px; color: var(--accent-2); font-feature-settings: "tnum"; }
.tutor__copy h3 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--accent-2);
}
.tutor__copy h3 em { font-style: normal; color: var(--accent); }
.tutor__copy h3.ur {
  font-family: var(--font-ur);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 14px;
  letter-spacing: 0;
}
.tutor__copy p {
  font-size: 17px; line-height: 1.55;
  margin: 18px 0 0; color: var(--ink-2); max-width: 56ch;
}

.tutor__chat {
  background: #fff;
  padding: 24px;
  border: 2px solid var(--accent-2);
  border-radius: 14px;
  display: grid; gap: 14px;
  position: relative;
}
.tutor__chat::before {
  content: "★";
  position: absolute;
  top: -16px; right: -16px;
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 24px;
  border: 3px solid var(--accent-3);
}
.tutor__chat-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--rule-faint); }
.tutor__chat-name { font-weight: 700; font-size: 15px; }
.tutor__chat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 3px rgba(45,95,76,0.18); }
.tutor__chat-msg { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.tutor__chat-msg em { font-style: normal; background: var(--bg-tint-gold); padding: 0 5px; font-weight: 600; }
.tutor__chat-time {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-4);
}

@media (max-width: 880px) {
  .tutor__inner { grid-template-columns: 1fr; gap: 24px; padding: 56px var(--gut); }
}

/* ─── LEVELS — colored pill-cards (brochure-style) ─── */
.levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .levels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .levels { grid-template-columns: 1fr; } }

.level {
  background: var(--bg-card);
  border: 2px solid var(--accent-2);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
}
.level--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -16px rgba(214,40,40,0.4);
}
.level__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.level__code {
  font-family: var(--font);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--accent-2);
  background: var(--accent-3);
  padding: 8px 18px;
  border-radius: 12px;
  display: inline-block;
}
.level--featured .level__code { background: #fff; color: var(--accent); }
.level__code--a1 { background: var(--accent-2); color: var(--accent-3); }
.level__code--a2 { background: var(--accent); color: #fff; }
.level__code--b2 { background: var(--accent-3); color: var(--accent-2); }
.level__badge {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent-3); color: var(--accent-2);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.level__t {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--accent-2);
}
.level--featured .level__t { color: #fff; }
.level__sub { font-size: 14px; color: var(--ink-3); margin: 4px 0 0; font-weight: 600; }
.level--featured .level__sub { color: rgba(255,255,255,0.85); }
.level__sub.ur { font-size: 13px; line-height: 1.7; }
.level__d {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-2); margin: 0;
  flex: 1;
}
.level--featured .level__d { color: rgba(255,255,255,0.9); }
.level__d.ur { font-size: 13px; line-height: 1.85; margin-top: 8px; }
.level__features {
  list-style: none; padding: 16px 0 0; margin: 0;
  border-top: 1px dashed var(--rule-soft);
  display: grid; gap: 8px;
}
.level--featured .level__features { border-top-color: rgba(255,255,255,0.3); }
.level__features li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  align-items: flex-start;
  line-height: 1.45;
}
.level__features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}
.level--featured .level__features li::before { color: var(--accent-3); }
.level__features .ur { font-size: 12px; line-height: 1.7; color: var(--ink-3); grid-column: 2; }
.level--featured .level__features .ur { color: rgba(255,255,255,0.85); }
.level__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px;
  border-top: 1px dashed var(--rule-soft);
}
.level--featured .level__foot { border-top-color: rgba(255,255,255,0.3); }
.level__price {
  font-family: var(--font);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--accent);
}
.level--featured .level__price { color: var(--accent-3); }
.level__price-sub {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  display: block; margin-top: 4px;
}
.level--featured .level__price-sub { color: rgba(255,255,255,0.85); }
.level__cta {
  font-size: 13px; font-weight: 800;
  display: inline-flex; gap: 6px; align-items: center;
  background: var(--accent-2); color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  transition: gap 120ms, background 120ms;
}
.level__cta:hover { gap: 12px; background: var(--accent); }
.level--featured .level__cta { background: var(--accent-3); color: var(--accent-2); }
.level--featured .level__cta:hover { background: #fff; }

/* ─── METIERS — numbered list ─── */
.metiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 720px) { .metiers { grid-template-columns: 1fr; } }
.metier {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--bg-card);
  transition: background 120ms;
}
.metier:hover { background: var(--bg-tint-coral); }
.metier__num {
  font-family: var(--font);
  font-feature-settings: "tnum";
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-4);
}
.metier:hover .metier__num { color: var(--accent); }
.metier__main { min-width: 0; }
.metier__t { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.metier__t.ur { font-size: 16px; line-height: 1.7; margin-top: 6px; color: var(--ink-3); font-weight: 500; }
.metier__count {
  font-size: 13px; font-weight: 600;
  color: var(--ink-3);
  font-feature-settings: "tnum";
}

/* ─── DOCS ─── */
.docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) { .docs { grid-template-columns: 1fr; } }
.doc {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  padding: 36px;
  display: grid; gap: 24px;
}
.doc__paper {
  background: var(--bg-tint-gold);
  border: 1px solid var(--rule);
  padding: 18px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}
.doc__paper-hdr { display: flex; justify-content: space-between; padding-bottom: 8px; margin-bottom: 10px; border-bottom: 1px dashed var(--ink); font-weight: 700; }
.doc__paper-hdr span { font-weight: 500; color: var(--ink-3); }
.doc__paper-row { display: flex; justify-content: space-between; padding: 4px 0; }
.doc__paper-row span:first-child { color: var(--ink-3); }
.doc__paper-row--hl span:last-child { background: var(--ink); color: var(--bg-tint-gold); padding: 1px 6px; font-weight: 700; }
.doc__paper-row--neg span:last-child { color: var(--ink-3); }
.doc__paper-row--total { border-top: 1px solid var(--ink); margin-top: 6px; padding-top: 10px; font-weight: 800; }
.doc__paper-hint {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--ink);
  color: var(--accent);
  font-weight: 600;
}

.doc__copy h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; margin: 0; line-height: 1.1; }
.doc__copy h3.ur { font-family: var(--font-ur); font-size: 19px; font-weight: 600; line-height: 1.5; margin-top: 8px; }
.doc__copy p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 8px 0 16px; }
.doc__copy p.ur { font-size: 15px; line-height: 1.85; margin-top: 10px; }
.doc__copy a {
  font-size: 14px; font-weight: 700;
  display: inline-flex; gap: 6px; align-items: center;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: gap 120ms;
}
.doc__copy a:hover { gap: 12px; }

/* ─── EXAMS ─── */
.exams { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .exams { grid-template-columns: 1fr; } }
.exam {
  padding: 36px;
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  display: grid; gap: 18px;
}
.exam--tcf { background: var(--bg-tint-sky); }
.exam--delf { background: var(--bg-tint-coral); }
.exam__seal {
  font-family: var(--font);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.exam--tcf .exam__seal { color: var(--accent-4); }
.exam--delf .exam__seal { color: var(--accent); }
.exam__t { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.exam__sub { font-size: 14px; color: var(--ink-3); margin: 4px 0 0; font-weight: 500; }
.exam__sub.ur { font-size: 13px; line-height: 1.7; }
.exam__d { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.exam__d.ur { font-size: 15px; line-height: 1.85; margin-top: 8px; }
.exam__features { list-style: none; padding: 16px 0 0; margin: 0; border-top: 1px solid var(--ink); display: grid; gap: 8px; }
.exam__features li { font-size: 14px; font-weight: 500; }
.exam__features li::before { content: "+ "; color: var(--accent); font-weight: 800; }
.exam--tcf .exam__features li::before { color: var(--accent-4); }

/* ─── FAQ ─── */
.faq { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--ink); }
.faq__q {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  padding: 28px 0;
  text-align: left;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 20px;
  align-items: center;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq__num { font-weight: 800; font-size: 14px; font-feature-settings: "tnum"; color: var(--ink-4); }
.faq__chev {
  font-size: 24px; font-weight: 400;
  transition: transform 200ms;
  display: inline-block;
}
.faq__item.is-open .faq__chev { transform: rotate(45deg); color: var(--accent); }
.faq__a { padding: 0 0 28px 80px; }
.faq__a p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0; max-width: 64ch; }
.faq__a p.ur { font-family: var(--font-ur); font-size: 15px; line-height: 1.85; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--rule-soft); }

/* ─── FINAL CTA ─── */
.finalcta {
  background: var(--accent-2);
  padding: 0 var(--gut);
  color: #fff;
  position: relative;
}
.finalcta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(45deg, var(--accent-3) 0 14px, var(--accent) 14px 28px);
}
.finalcta__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}
.finalcta__num { font-weight: 800; font-size: 18px; color: var(--accent-3); font-feature-settings: "tnum"; }
.finalcta h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
  color: #fff;
}
.finalcta h2 em { font-style: normal; color: var(--accent-3); font-weight: 800; }
.finalcta h2 .hl-yellow { color: var(--accent-2); }
.finalcta h2.ur {
  font-family: var(--font-ur);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
  color: #fff;
}
.finalcta h2.ur em { color: var(--accent-3); font-weight: 700; }
.finalcta__small {
  margin: 28px 0;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-3);
}
.finalcta__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

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

/* ─── FOOTER ─── */
.foot {
  background: var(--bg-dark);
  color: var(--on-dark);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gut) 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 56px;
}
@media (max-width: 820px) { .foot__inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .foot__inner { grid-template-columns: 1fr; } }
.foot__brand {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.foot__brand-dot { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; }
.foot__brand-tag { display: block; margin-top: 18px; font-size: 15px; line-height: 1.55; font-weight: 400; color: var(--on-dark-2); max-width: 30ch; }
.foot__brand-tag.ur { font-family: var(--font-ur); font-size: 14px; line-height: 1.85; margin-top: 12px; }
.foot__cols h5 {
  font-size: 12px; font-weight: 700; color: var(--on-dark);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 16px;
}
.foot__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__cols a { color: var(--on-dark-2); font-size: 14px; transition: color 120ms; }
.foot__cols a:hover { color: #fff; }
.foot__legal {
  max-width: var(--max); margin: 0 auto;
  padding: 20px var(--gut);
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; font-weight: 500; color: var(--ink-4);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) { .foot__legal { flex-direction: column; gap: 8px; } }
