/* ==========================================================================
   JLCT Landing Page - Terakoya
   ========================================================================== */

:root {
  --jlct-red: #9c1c33;
  --jlct-red-dark: #7a1527;
  --jlct-red-light: #c53a52;
  --navy: #14204a;
  --navy-light: #1e3a8a;
  --ink: #1a1d29;
  --muted: #5b6072;
  --bg: #ffffff;
  --bg-soft: #f7f6f4;
  --bg-warm: #fbf8f3;
  --border: #e7e3dc;
  --gold: #b8924a;

  --jct1: #2451c9;
  --jct2: #0f9a72;
  --jct3: #e08a1e;
  --jct4: #7a4fd6;
  --jct5: #2196c9;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(20, 32, 74, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(20, 32, 74, 0.28);
  --container: 1160px;
  --font: "Be Vietnam Pro", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; }
p { margin: 0; }
section { position: relative; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jlct-red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--jlct-red);
  display: inline-block;
}

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}
.section-pad { padding: 88px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-warm { background: var(--bg-warm); }
.bg-navy { background: var(--navy); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--jlct-red);
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(156, 28, 51, 0.55);
}
.btn-primary:hover { background: var(--jlct-red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--jlct-red);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.25); }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-block { width: 100%; }

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  display: block;
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px -8px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-jlct { height: 34px; width: auto; }
.brand-logo-mark { height: 38px; width: auto; }
.brand-divider { width: 1px; height: 28px; background: var(--border); display: inline-block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.8;
  transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; color: var(--jlct-red); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
}
.mobile-panel.open { display: block; }
.mobile-panel ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-panel a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.mobile-panel .btn { margin-top: 20px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(15,20,42,0.72) 0%, rgba(15,20,42,0.86) 55%, rgba(15,20,42,0.96) 100%), url("../assets/hero-bg.jpg") center 30%/cover no-repeat;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: 14px;
  margin-bottom: 24px;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.hero-badge-text b {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 2px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ffb020;
  box-shadow: 0 0 0 4px rgba(255,176,32,0.25);
  flex-shrink: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: #ffcf6b;
}
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
}
.hero-cta-row { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 520px;
}
.hero-stat b { display: block; font-size: 26px; font-weight: 800; color: #ffcf6b; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.7); }

.hero-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-panel-head b { font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: #ffcf6b; }
.level-pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.level-pill {
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-flow { display: flex; flex-direction: column; gap: 10px; }
.hero-flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  padding: 10px 14px;
  border-radius: 12px;
}
.hero-flow-step b {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--jlct-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------------- JLCT là gì ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy .eyebrow { color: var(--jlct-red); }
.about-copy h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}
.about-copy p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.about-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}
.about-diagram {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
}
.diagram-title { text-align: center; font-weight: 800; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.diagram-sub { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.diagram-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.diagram-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.diagram-box b { display: block; color: var(--jlct-red); font-size: 14px; margin-bottom: 4px; }
.diagram-box span { font-size: 12.5px; color: var(--muted); }
.diagram-arrow { text-align: center; color: var(--gold); font-size: 20px; margin: 10px 0; }
.diagram-levels {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.diagram-levels span {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
}

/* ---------------- Why JLCT / features ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--muted); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--bg-soft);
  margin-bottom: 16px;
}

/* ---------------- 5 levels ---------------- */
.levels-wrap { display: flex; flex-direction: column; gap: 14px; }
.level-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.level-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.level-badge {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  flex-shrink: 0;
}
.level-badge small { font-size: 10px; font-weight: 700; opacity: 0.85; letter-spacing: 0.04em; }
.level-content-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.level-content-head h3 { font-size: 19px; font-weight: 800; color: var(--navy); }
.level-content-head span { font-size: 13px; font-weight: 700; color: var(--muted); }
.level-ref {
  display: inline-flex;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--jlct-red);
  margin-bottom: 8px;
}
.level-desc { font-size: 14.5px; color: var(--muted); }
.level-connector { text-align: center; color: var(--border); font-size: 18px; }

.jct1 { background: linear-gradient(145deg, var(--jct1), #16327a); }
.jct2 { background: linear-gradient(145deg, var(--jct2), #0a6e52); }
.jct3 { background: linear-gradient(145deg, var(--jct3), #b56a10); }
.jct4 { background: linear-gradient(145deg, var(--jct4), #5330a8); }
.jct5 { background: linear-gradient(145deg, var(--jct5), #146d95); }

.levels-note {
  margin-top: 28px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 600;
}

/* ---------------- JLPT/CEFR table ---------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
table.jlct-table { width: 100%; border-collapse: collapse; min-width: 560px; }
table.jlct-table th, table.jlct-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
table.jlct-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
table.jlct-table td:first-child { font-weight: 800; color: var(--navy); }
table.jlct-table tr:last-child td { border-bottom: none; }
table.jlct-table tr:hover td { background: var(--bg-soft); }
.table-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}

/* ---------------- Exam structure ---------------- */
.level-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.level-tab {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: var(--navy);
  transition: all .15s ease;
}
.level-tab small { display: block; font-size: 11px; font-weight: 600; opacity: 0.65; }
.level-tab.active { background: var(--jlct-red); border-color: var(--jlct-red); color: #fff; }
.level-tab.active small { opacity: 0.85; }

.structure-panel { display: none; }
.structure-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.structure-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.part-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.part-card .part-icon { font-size: 28px; margin-bottom: 12px; }
.part-card h4 { font-size: 15.5px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.part-card .part-meta { display: flex; justify-content: center; gap: 14px; }
.part-meta div b { display: block; font-size: 20px; color: var(--jlct-red); font-weight: 800; }
.part-meta div span { font-size: 12px; color: var(--muted); }
.structure-foot {
  margin-top: 20px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.structure-foot b { color: var(--navy); }

/* ---------------- Kết quả ---------------- */
.result-blocks { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; max-width: 760px; margin: 0 auto 20px; }
.result-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.result-block .rb-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--jlct-red); text-transform: uppercase; margin-bottom: 8px; }
.result-block h4 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.result-block p { font-size: 13.5px; color: var(--muted); }
.result-plus { font-size: 26px; font-weight: 800; color: var(--gold); text-align: center; }
.result-highlight {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 15px;
  color: var(--muted);
}
.result-highlight strong { color: var(--navy); display: block; font-size: 17px; margin-bottom: 6px; }

.score-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 44px; }
.score-card {
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  color: #fff;
}
.score-card .sc-level { font-size: 20px; font-weight: 800; margin-bottom: 2px; }
.score-card .sc-tier { font-size: 11px; font-weight: 700; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 14px; }
.score-card .sc-score { font-size: 26px; font-weight: 800; }
.score-card .sc-max { font-size: 12px; opacity: 0.8; }
.score-card .sc-tag { margin-top: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; background: rgba(255,255,255,0.2); border-radius: 999px; padding: 4px 10px; display: inline-block; }

.min-bar-wrap {
  max-width: 640px;
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  text-align: center;
}
.min-bar-wrap h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.min-bar { position: relative; height: 10px; border-radius: 999px; background: var(--border); margin: 0 20px 10px; }
.min-bar-fill { position: absolute; left: 0; top: 0; height: 100%; width: 31%; background: linear-gradient(90deg, var(--jlct-red), var(--gold)); border-radius: 999px; }
.min-bar-marker { position: absolute; left: 31%; top: -26px; transform: translateX(-50%); font-size: 11.5px; font-weight: 800; color: var(--jlct-red); white-space: nowrap; }
.min-bar-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin: 0 20px; }
.min-bar-wrap p { margin-top: 16px; font-size: 13.5px; color: var(--muted); }

.result-cta { text-align: center; margin-top: 40px; }
.result-cta p { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.result-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Audience cards ---------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.audience-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: var(--bg-soft);
  margin-bottom: 18px;
}
.audience-card .a-num { font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 8px; }
.audience-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.audience-card p { font-size: 14px; color: var(--muted); }

/* ---------------- Exam session card ---------------- */
.session-hero {
  background: linear-gradient(120deg, rgba(20,32,74,0.92), rgba(20,32,74,0.82)), url("../assets/exam-hall.jpg") center/cover;
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.session-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.session-title b { font-size: 22px; font-weight: 800; display: block; }
.session-title span { font-size: 14px; color: rgba(255,255,255,0.7); }
.session-date { text-align: right; }
.session-date b { font-size: 30px; font-weight: 800; color: #ffcf6b; display: block; }
.session-date span { font-size: 13px; color: rgba(255,255,255,0.7); }
.session-levels { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.session-levels span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.session-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 34px; }
.session-info-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 16px; }
.session-info-item .label { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.session-info-item .value { font-size: 14.5px; font-weight: 700; }
.session-cta { text-align: center; }
.session-cta .form-note { color: rgba(255,255,255,0.65); }

/* ---------------- Registration steps ---------------- */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 20px;
}
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.step-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--jlct-red);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px -6px rgba(156,28,51,0.5);
}
.step-item h4 { font-size: 15.5px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.step-item .step-tag { font-size: 12px; font-weight: 700; color: var(--jlct-red); background: var(--bg-soft); padding: 4px 10px; border-radius: 999px; display: inline-block; }

.important-box {
  margin-top: 48px;
  background: #fff8ec;
  border: 1px solid #f1d9a6;
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.important-box .ib-text b { display: block; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.important-box .ib-text p { font-size: 14px; color: var(--muted); max-width: 480px; }

.section-cta {
  text-align: center;
  margin-top: 56px;
  padding: 44px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.section-cta h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.section-cta p { color: var(--muted); margin-bottom: 22px; }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}
.faq-q .icon { flex-shrink: 0; font-size: 18px; color: var(--jlct-red); transition: transform .2s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }
.faq-a-inner .btn { margin-top: 14px; }

/* ---------------- Final CTA ---------------- */
.final-cta {
  text-align: center;
  color: #fff;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--jlct-red), var(--jlct-red-dark));
}
.final-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 34px; }
.final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .form-note { color: rgba(255,255,255,0.7); margin-top: 18px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 56px 0 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-logo {
  height: 32px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 14px;
}
.footer-brand b { color: #fff; font-size: 18px; font-weight: 800; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13.5px; max-width: 360px; color: rgba(255,255,255,0.55); }
.footer-col b { color: #fff; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.65); }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---------------- Divider band ---------------- */
.photo-band { height: 220px; background-size: cover; background-position: center; position: relative; }
.photo-band::after { content: ""; position: absolute; inset: 0; background: rgba(20,32,74,0.55); }
.photo-band-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding: 0 24px;
  letter-spacing: 0.01em;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .score-grid { grid-template-columns: repeat(3, 1fr); }
  .session-info { grid-template-columns: repeat(2, 1fr); }
  .structure-parts { grid-template-columns: 1fr; }
  .result-blocks { grid-template-columns: 1fr; }
  .result-plus { transform: rotate(90deg); }
  .steps-timeline { grid-template-columns: 1fr; gap: 32px; }
  .steps-timeline::before { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: block; }
  .section-pad { padding: 64px 0; }
  .hero { padding: 140px 0 72px; }
  .feature-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .session-info { grid-template-columns: 1fr 1fr; }
  .session-top { flex-direction: column; }
  .session-date { text-align: left; }
  .level-row { grid-template-columns: 64px 1fr; gap: 14px; padding: 16px; }
  .level-badge { width: 60px; height: 60px; font-size: 14px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 28px; }
  .session-hero { padding: 30px 22px; }
  .important-box { flex-direction: column; align-items: flex-start; }
}

.nav-cta.desktop-only { display: inline-flex; }
@media (max-width: 720px) { .nav-cta.desktop-only { display: none; } }
