
/* ═══════════════════════════════════════════════════════════
   LANDING PAGES — SEO keyword pages ([tva_landing])
═══════════════════════════════════════════════════════════ */
.tva-lp { background: var(--navy); }

/* Every content section gets real breathing room — the divider alone
   was providing zero vertical space, which made sections feel cramped */
.tva-lp-subjects,
.tva-lp-why,
.tva-lp-topics,
.tva-lp-approach,
.tva-lp-faq,
.tva-lp-related {
  padding: var(--gap-section) 0;
}

/* Breadcrumb */
.tva-lp-crumb {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
}
.tva-lp-crumb-inner {
  padding: 12px clamp(16px, 3vw, 32px);
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tva-lp-crumb-inner a {
  color: var(--muted);
  text-decoration: none;
}
.tva-lp-crumb-inner a:hover { color: var(--accent); }
.tva-lp-crumb-sep { color: var(--navy-border); }
.tva-lp-crumb-inner span[aria-current] {
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero */
.tva-lp-hero {
  padding: clamp(40px, 6vw, 64px) 0;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
}
.tva-lp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.tva-lp-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 14px 0 16px;
}
.tva-lp-sub {
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: var(--off-white);
  line-height: 1.7;
  max-width: 560px;
}
.tva-lp-trustrow {
  display: flex;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.tva-lp-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,30,60,.18);
  aspect-ratio: 4/3;
}
.tva-lp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Exam board strip */
.tva-lp-boards {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 16px 0;
}
.tva-lp-boards-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.tva-lp-boards-lbl {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tva-lp-board-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,114,198,.08);
  border: 1px solid rgba(0,114,198,.2);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.tva-lp-board-chip svg { color: var(--accent); flex-shrink: 0; }

/* Section intro subtitle (shared pattern) */
.tva-lp-section-sub {
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hub subjects grid */
.tva-lp-subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 32px auto 0;
}
.tva-lp-subject-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--white) !important;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.tva-lp-subject-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,114,198,.14);
}
.tva-lp-subject-card svg { color: var(--accent); flex-shrink: 0; }

/* Pain points grid (reuses .tva-feature-card, extends layout) */
.tva-lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 0;
}

/* Topic checklist */
.tva-lp-topic-center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.tva-lp-topic-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  width: 100%;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.tva-lp-topic-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--off-white);
  line-height: 1.5;
}
.tva-lp-topic-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Local area trust bar */
.tva-lp-local {
  background: var(--navy-card);
}
.tva-lp-local-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: clamp(32px, 5vw, 44px) clamp(16px, 3vw, 32px);
}
.tva-lp-local-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,114,198,.08);
  border: 1px solid rgba(0,114,198,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.tva-lp-local-text { flex: 1; }
.tva-lp-local-h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
}
.tva-lp-local-text p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

/* FAQ accordion — native <details>/<summary>, zero JS dependency */
.tva-lp-faq-list {
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tva-lp-faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.tva-lp-faq-item:hover {
  border-color: rgba(0,114,198,.35);
  box-shadow: 0 4px 14px rgba(0,114,198,.08);
}
.tva-lp-faq-item[open] {
  border-color: rgba(0,114,198,.45);
}
.tva-lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  list-style: none;
  transition: background .2s;
}
.tva-lp-faq-q::-webkit-details-marker { display: none; }
.tva-lp-faq-q::marker { content: ''; }
.tva-lp-faq-q:hover { background: rgba(0,114,198,.04); }
.tva-lp-faq-q h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}
.tva-lp-faq-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .25s;
}
.tva-lp-faq-item[open] .tva-lp-faq-chevron { transform: rotate(180deg); }
.tva-lp-faq-a {
  padding: 0 20px 18px;
}
.tva-lp-faq-a p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}


/* Related pages */
.tva-lp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.tva-lp-related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none !important;
  font-size: .84rem;
  font-weight: 600;
  color: var(--white) !important;
  transition: border-color .2s, transform .2s;
}
.tva-lp-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.tva-lp-related-card svg { color: var(--accent); flex-shrink: 0; }
.tva-lp-related-card--all {
  background: rgba(0,114,198,.06);
  border-color: rgba(0,114,198,.25);
}

/* ─────────── Responsive ─────────── */
@media (max-width: 900px) {
  .tva-lp-hero-grid { grid-template-columns: 1fr; }
  .tva-lp-hero-img { order: -1; aspect-ratio: 16/9; }
  .tva-lp-subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .tva-lp-pain-grid { grid-template-columns: 1fr; }
  .tva-lp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .tva-lp-boards-inner { gap: 8px 10px; }
}

@media (max-width: 600px) {
  .tva-lp-trustrow { flex-wrap: wrap; }
  .tva-lp-topic-list { grid-template-columns: 1fr; }
  .tva-lp-subjects-grid { grid-template-columns: 1fr; }
  .tva-lp-related-grid { grid-template-columns: 1fr; }
  .tva-lp-local-inner { flex-direction: column; text-align: center; }
  .tva-lp-local-inner .tva-btn { width: 100%; justify-content: center; }
  .tva-lp-faq-q { padding: 14px 16px; gap: 10px; }
  .tva-lp-faq-q h3 { font-size: .88rem; }
  .tva-lp-faq-a { padding-left: 16px; padding-right: 16px; }
  .tva-hero-cta { flex-direction: column; align-items: stretch; }
  .tva-lp-crumb-inner { font-size: .72rem; }
  .tva-lp-boards-lbl { width: 100%; margin-bottom: 2px; }
  .tva-lp-board-chip { font-size: .76rem; padding: 4px 10px; }
  .tva-lp-h1 { line-height: 1.22; }
  .tva-lp-hero-img { aspect-ratio: 4/3; border-radius: 12px; }
  .tva-lp-local-icon { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   SITE PAGES — About, Courses, Contact, FAQ, Privacy
   Lighter-weight hero band than the landing pages' full hero,
   since these pages are meant to be short.
═══════════════════════════════════════════════════════════ */
.tva-page-hero {
  padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
}
.tva-page-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin: 14px 0 12px;
  line-height: 1.2;
}
.tva-page-sub {
  font-size: clamp(.92rem, 1.5vw, 1.02rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .tva-page-hero { padding: 32px 0 24px; }
}
