/* ============================================================
   COMPONENTS.CSS — Navbar, Buttons, Cards, Sections, Footer
   Exium Classes · exium.in
   ============================================================ */

/* ── NAV ── */
/* Scoped to .site-nav to avoid colliding with <nav> used inside footer */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 70px;
  background: rgba(14, 28, 58, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-logo:hover { transform: translateY(-1px); }
.nav-logo img   { height: 38px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-bright) !important; }

/* Inner-page nav variants */
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--white); }
.nav-back svg   { width: 16px; height: 16px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(204, 31, 31, 0.12);
  border: 1px solid rgba(204, 31, 31, 0.35);
  color: #f07070;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(200, 210, 232, 0.28);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--silver);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO ELEMENTS ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(204, 31, 31, 0.12);
  border: 1px solid rgba(204, 31, 31, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}

/* Page-hero badge variant (blue) */
.page-hero .hero-badge {
  background: rgba(74, 111, 199, 0.1);
  border: 1px solid rgba(74, 111, 199, 0.3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
}

.page-hero .hero-badge::before { display: none; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.12s ease both;
}

.hero-title em { font-style: italic; color: #7a9ee0; }

.hero-sub {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.68);
  line-height: 1.78;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.36s ease both;
}

/* Page title / sub (inner pages) */
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  animation: fadeUp 0.6s 0.1s ease both;
}

.page-title em { font-style: italic; color: var(--blue-light); }

.page-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.6);
  line-height: 1.75;
  max-width: 48ch;
  margin-top: 1rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ── BATCH CARDS ── */
.batch-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  animation: fadeUp 0.7s 0.2s ease both;
}

.batch-card + .batch-card {
  margin-top: 1.25rem;
  animation-delay: 0.32s;
}

.batch-card:hover {
  border-color: rgba(200, 210, 232, 0.35);
  transform: translateX(5px);
}

.batch-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}

.batch-card.c11::before { background: #4a6fc7; }

.batch-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 0.4rem;
}

.batch-card.c11 .batch-tag { color: #7a9ee0; }

.batch-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.batch-rows {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.batch-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.83rem;
  color: rgba(200, 210, 232, 0.75);
  line-height: 1.5;
}

.batch-row .ico {
  flex-shrink: 0;
  width: 1rem;
  margin-top: 0.1rem;
}

.batch-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.fee-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
}

.fee-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

/* ── BATCH PILLS (registration page) ── */
.batch-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.25s ease both;
}

.bpill {
  border: 1px solid;
  border-radius: 4px;
  padding: 0.9rem 1.4rem;
  min-width: 180px;
}

.bpill-blue { background: rgba(74, 111, 199, 0.08); border-color: rgba(74, 111, 199, 0.25); }
.bpill-red  { background: rgba(204,  31,  31, 0.08); border-color: rgba(204,  31,  31, 0.25); }

.bpill-class {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.bpill-blue .bpill-class { color: var(--blue-light); }
.bpill-red  .bpill-class { color: #f07070; }
.bpill-meta { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }

/* ── WHY PILLARS ── */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.pillar { display: flex; gap: 1.4rem; align-items: flex-start; }

.pillar-n {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(74, 111, 199, 0.22);
  flex-shrink: 0;
  width: 2.8rem;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pillar p {
  font-size: 0.85rem;
  color: rgba(200, 210, 232, 0.55);
  line-height: 1.7;
}

/* ── STATS BOX ── */
.stats-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.stat-n {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #4a6fc7;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-l { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.akash-q {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(200, 210, 232, 0.6);
  line-height: 1.75;
}

.akash-q cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a9ee0;
  margin-top: 0.75rem;
}

/* ── SCHEDULE CARDS ── */
.sched-sub {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.7;
}

.sched-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.sched-head {
  padding: 1.4rem 2rem;
  background: rgba(26, 45, 90, 0.6);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sched-head-class {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.sched-head-year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.sched-starts {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(204, 31, 31, 0.15);
  border: 1px solid rgba(204, 31, 31, 0.35);
  color: #f07070;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.sched-card.c11 .sched-starts {
  background: rgba(74, 111, 199, 0.15);
  border-color: rgba(74, 111, 199, 0.35);
  color: #7a9ee0;
}

.sched-body  { padding: 1.75rem 2rem; }

.phase { margin-bottom: 1.4rem; }
.phase:last-child { margin-bottom: 0; }

.phase-lbl {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 0.45rem;
}

.sched-card.c11 .phase-lbl { color: #7a9ee0; }

.phase-detail {
  font-size: 0.86rem;
  color: rgba(200, 210, 232, 0.75);
  line-height: 1.65;
}

.mode-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.mtag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  border: 1px solid;
}

.mtag-red  { background: rgba(204, 31, 31, 0.1);  border-color: rgba(204, 31, 31, 0.3);  color: #f07070; }
.mtag-blue { background: rgba(74, 111, 199, 0.1); border-color: rgba(74, 111, 199, 0.3); color: #7a9ee0; }
.mtag-grey { background: rgba(255, 255, 255, 0.04); border-color: rgba(200, 210, 232, 0.18); color: var(--muted); }

.sched-fee {
  padding: 1.4rem 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sched-fee-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.sched-fee-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.instl {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: right;
}

/* ── REVIEW CARDS ── */
.rev-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s;
}

.rev-card:first-child {
  grid-column: 1 / -1;
  background: rgba(26, 45, 90, 0.4);
  border-color: rgba(74, 111, 199, 0.25);
}

.rev-card:hover { border-color: rgba(200, 210, 232, 0.3); }

.qdeco {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(74, 111, 199, 0.12);
  position: absolute;
  top: 1.4rem; left: 1.5rem;
}

.rev-text {
  font-size: 0.9rem;
  color: rgba(200, 210, 232, 0.7);
  line-height: 1.82;
  padding-top: 1.4rem;
  position: relative;
  z-index: 1;
}

.rev-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.rev-name { font-weight: 600; font-size: 0.88rem; }
.stars    { color: #f5c842; font-size: 0.8rem; letter-spacing: 0.1em; }

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  position: relative;
}

.faq-item:last-child { border-bottom: none; }

.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.25s;
}

.faq-item.open::before,
.faq-item:hover::before { opacity: 1; }

.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(255, 255, 255, 0.04); }
.faq-item.open .faq-question { background: rgba(26, 45, 90, 0.5); }

.faq-question h3 {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(200, 210, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}

.faq-icon svg {
  width: 10px; height: 10px;
  stroke: var(--muted);
  transition: stroke 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: rgba(204, 31, 31, 0.15);
  border-color: rgba(204, 31, 31, 0.4);
  transform: rotate(180deg);
}

.faq-item.open .faq-icon svg { stroke: #f07070; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 2rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.65);
  line-height: 1.85;
}

.faq-answer a {
  color: var(--blue-light);
  text-decoration: none;
  transition: color 0.2s;
}

.faq-answer a:hover { color: var(--white); }

.faq-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-right: 0.8rem;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── CTA SECTION ELEMENTS ── */
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 1rem auto 1.5rem;
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-link {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #7a9ee0;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-link:hover { color: var(--white); }

/* ── SIDEBAR COMPONENTS ── */
.sb-section-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.6rem;
}

.step:last-child { padding-bottom: 0; }

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(74, 111, 199, 0.15);
  border: 1px solid rgba(74, 111, 199, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--blue-light);
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex: 1;
  margin-top: 4px;
  background: linear-gradient(180deg, rgba(74, 111, 199, 0.25), transparent);
  min-height: 24px;
}

.step:last-child .step-line { display: none; }

.step-body { padding-top: 4px; }
.step-body strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; }
.step-body p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

.sb-batches { display: flex; flex-direction: column; gap: 0.8rem; }

.sb-batch {
  border-radius: 5px;
  padding: 1rem 1.1rem;
  border: 1px solid;
}

.sb-batch-blue { background: rgba(74, 111, 199, 0.07); border-color: rgba(74, 111, 199, 0.2); }
.sb-batch-red  { background: rgba(204,  31,  31, 0.07); border-color: rgba(204,  31,  31, 0.2); }

.sb-batch-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.sb-batch-class {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
}

.sb-batch-blue .sb-batch-class { color: var(--blue-light); }
.sb-batch-red  .sb-batch-class { color: #f07070; }

.sb-batch-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

.sb-batch-blue .sb-batch-badge { background: rgba(74, 111, 199, 0.15); color: var(--blue-light); }
.sb-batch-red  .sb-batch-badge { background: rgba(204,  31,  31, 0.15); color: #f07070; }

.sb-batch-rows { display: flex; flex-direction: column; gap: 0.3rem; }

.sb-batch-row {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}

.sb-batch-row span:first-child { flex-shrink: 0; }

.sb-batch-fee {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.sb-batch-fee small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.4rem;
}

.sb-contact {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1rem 1.1rem;
}

.sb-contact p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.sb-contact a {
  color: var(--blue-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}

.sb-contact a:hover { color: var(--white); }

/* ── FORM EMBED ── */
.form-embed-col {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.form-embed-col iframe {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 780px;
  border: none;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.footer-logo img { height: 28px; opacity: 0.7; }

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ── RESPONSIVE COMPONENTS ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 1rem; }

  .nav-logo img { height: 28px; }
  .nav-logo     { padding: 4px 8px; }
  .nav-tag      { display: none; }

  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .nav-links { gap: 0; margin-left: auto; }

  .nav-links li:not(:last-child) { display: none; }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-box { grid-template-columns: 1fr 1fr; }

  .faq-question { padding: 1.25rem; }

  .faq-item.open .faq-answer { padding: 0 1.25rem 1.25rem; }

  .form-embed-col iframe { min-height: 640px; }
}