/* ===== CSS VARIABLES ===== */
:root {
  --primary: 200, 52.9%, 30%;
  --primary-fg: 200, 52.9%, 40%;
  --secondary: 14.79, 59.17%, 47.06%;
  --secondary-fg: 13.5, 59.4%, 63.3%;
  --destructive: 0, 84%, 60%;
  --foreground: 220, 26%, 8%;
  --background: 0, 0%, 100%;
  --muted: 220, 14%, 96%;
  --muted-fg: 220, 9%, 46%;
  --muted-white: 0, 0%, 100%;
  --border: 220, 13%, 91%;
  --card: 0, 0%, 100%;
  --black: 0, 0%, 0%;
  --radius: 0.5rem;
  --blue: 217, 90%, 20%;
  --red: 0, 100%, 30%;
  --gray: 220, 9.6%, 36.9%;
  --sky: 200, 52.9%, 30%;
  --nav-offset: 4rem;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== BASE ===== */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

#main {
  flex: 1;
  display: block;
  padding-top: var(--nav-offset);
}

/* ===== FOCUS ===== */
:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--muted-white));
  border: none;
}
.btn-primary:hover {
  background: hsl(var(--primary));
  color: hsl(var(--muted-white));
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--muted-white));
  --bs-btn-bg: hsl(var(--secondary));
  --bs-btn-border-color: hsl(var(--secondary));
  --bs-btn-hover-bg: hsl(var(--secondary));
  --bs-btn-hover-border-color: hsl(var(--secondary));
  --bs-btn-active-bg: hsl(var(--secondary));
  --bs-btn-active-border-color: hsl(var(--secondary));
  --bs-btn-disabled-bg: hsl(var(--secondary));
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  border: none;
}
.btn-secondary:hover {
  background: hsl(var(--secondary));
  color: hsl(var(--muted-white));
}

.btn-outline {
  background: hsl(var(--blue));
  color: hsl(var(--muted-white));
}
.btn-outline:hover {
  background: hsl(var(--blue));
  color: hsl(var(--muted-white));
}

.btn-gray {
  background: hsl(var(--gray));
  color: hsl(var(--muted-white));
}
.btn-gray:hover {
  background: hsl(var(--gray));
  color: hsl(var(--muted-white));
}

.btn-red {
  background: hsl(var(--red));
  color: hsl(var(--muted-white));
}
.btn-red:hover {
  background: hsl(var(--red));
  color: hsl(var(--muted-white));
}

.btn-cta-outline {
  background: transparent;
  border: 1px solid hsla(var(--primary-fg), 0.3);
  color: hsl(var(--primary-fg));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cta-outline:hover { background: hsla(var(--primary-fg), 0.1); }

/* ===== NAVBAR ===== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
}

.nav-bar .navbar {
  position: static !important;
}

.navbar {
  position: sticky !important;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border));
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(8px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar-brand span {
  color: hsl(var(--primary));
}

.navbar-brand .logo,
.footer-brand .logo {
  width: 70px;
  height: 70px;
  display: block;
  line-height: 0;
}

.navbar-brand .logo svg,
.footer-brand .logo svg {
  width: 260px;
  height: 260px;
  display: block;
  min-width: 100%;
  min-height: 100%;
}

.navbar-brand .logo svg path {
  vector-effect: non-scaling-stroke;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-fg));
  transition: color 0.2s;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
}

/* ===== HELP DROPDOWN ===== */
.help-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.help-dropdown .dropdown-toggle::after {
  margin-left: 0.45rem;
}

.help-dropdown .dropdown-menu {
  inset: calc(100% + 0.5rem) 0 auto auto;
  min-width: 14rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
}

.mobile-menu {
  display: none;
  border-top: 1px solid hsl(var(--border));
  padding: 1rem 2rem;
  background: hsl(var(--background));
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
}

.mobile-menu a:hover {
  color: hsl(var(--foreground));
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.mobile-help {
  border: none;
  background: none;
}

.mobile-help-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
  text-align: left;
}

.mobile-help-toggle .chevron {
  transition: transform 0.2s;
  font-size: 0.75rem;
}

.mobile-help-toggle.open .chevron {
  transform: rotate(180deg);
}

.mobile-help-links {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid hsl(var(--border));
  margin-bottom: 0.25rem;
}

.mobile-help-links.open {
  display: flex;
}

.mobile-help-links a {
  padding: 0.6rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
}

.mobile-help-links a:hover {
  color: hsl(var(--foreground));
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: block; }
}

/* ===== FOOTER ===== */
.footer {
  background: hsl(var(--muted));
  padding: 2.5rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(var(--muted-fg), 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--muted-fg));
}

.footer-copy {
  font-size: 0.75rem;
  color: hsla(var(--muted-fg), 0.8);
}

/* ===== HERO ===== */
.hero { padding: 4rem 0; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-fg));
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-credit {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
}

.hero-image {
  background: hsl(var(--muted-white));
  border-radius: 1rem;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-fg));
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { height: 200px; }
}

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }
.section-muted { background: hsl(var(--muted)); }

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin-top: 0.75rem;
  color: hsl(var(--muted-fg));
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  font-size: 1.25rem;
}

.feature-card h3 { font-size: 1.125rem; font-weight: 600; }
.feature-card p { margin-top: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-fg)); }

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--muted-white));
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1.25rem; font-weight: 600; }
.step p { margin-top: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-fg)); }

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

/* ===== ACCESSIBILITY SECTION ===== */
.a11y-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.a11y-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.a11y-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsla(var(--secondary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: hsl(var(--secondary));
  font-size: 1.5rem;
}

.a11y-item h3 { font-size: 1.125rem; font-weight: 600; }
.a11y-item p { margin-top: 0.25rem; font-size: 0.875rem; color: hsl(var(--muted-fg)); }

/* ===== REPORTS & STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.25rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-icon.primary { background: hsla(var(--primary), 0.1); color: hsl(var(--primary)); }
.stat-icon.secondary { background: hsla(var(--secondary), 0.1); color: hsl(var(--secondary)); }
.stat-icon.destructive { background: hsla(var(--destructive), 0.1); color: hsl(var(--destructive)); }

.stat-value { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: 0.875rem; color: hsl(var(--muted-fg)); }

/* ===== PROGRESS ===== */
.progress-row { margin-bottom: 1.25rem; }

.progress-row .label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.progress-bar {
  height: 0.625rem;
  background: hsl(var(--muted));
  border-radius: 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 1rem;
  background: hsl(var(--primary));
  transition: width 0.5s;
}

.performer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: hsla(var(--muted), 0.5);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.performer-rank {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.performer-name { flex: 1; font-weight: 500; }

.performer-score {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

/* ===== CHARTS ===== */
.chart-placeholder {
  height: 180px;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-fg));
  font-size: 0.875rem;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 0.25rem;
}

.bar {
  border-radius: 4px 4px 0 0;
  width: 100%;
  transition: height 0.5s;
}

.bar-label { font-size: 0.7rem; color: hsl(var(--muted-fg)); }
.bar-value { font-size: 0.75rem; font-weight: 600; }

/* ===== QUESTION LEVEL ANALYSIS ===== */
.qla {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: var(--radius);
  margin-top: 2.5rem;
  overflow: hidden;
}

.qla-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  flex-wrap: wrap;
  gap: 1rem;
}

.qla-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-toggle {
  display: flex;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  background: hsl(var(--muted));
}

.view-toggle button {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  color: hsl(var(--muted-fg));
  transition: all 0.2s;
}

.view-toggle button.active {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.qla-summary {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsla(var(--muted), 0.3);
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
  flex-wrap: wrap;
}

.qla-summary strong { color: hsl(var(--foreground)); }

.q-row { border-bottom: 1px solid hsl(var(--border)); }
.q-row:last-child { border-bottom: none; }

.q-row-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 0.875rem;
  transition: background 0.15s;
}

.q-row-btn:hover { background: hsla(var(--muted), 0.5); }

.q-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsl(var(--muted));
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.q-type {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--muted-fg));
  flex-shrink: 0;
}

.q-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.q-result {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 0.875rem;
}

.q-result.correct { color: hsl(var(--secondary)); }
.q-result.incorrect { color: hsl(var(--destructive)); }

.q-marks { width: 4rem; text-align: right; font-weight: 600; flex-shrink: 0; }

.q-chevron {
  flex-shrink: 0;
  color: hsl(var(--muted-fg));
  transition: transform 0.2s;
}

.q-chevron.open { transform: rotate(180deg); }

.q-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.5rem;
  background: hsla(var(--muted), 0.3);
  border-top: 1px solid hsl(var(--border));
}

.q-detail.open { max-height: 600px; padding: 1rem 1.5rem; }
.q-detail p { font-size: 0.875rem; margin-bottom: 0.75rem; }

.q-options { margin-bottom: 1rem; }

.q-option {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  background: hsl(var(--card));
}

.q-option.correct-opt {
  border-color: hsla(var(--secondary), 0.5);
  background: hsla(var(--secondary), 0.1);
  color: hsl(var(--secondary));
  font-weight: 500;
}

.q-option.wrong-opt {
  border-color: hsla(var(--destructive), 0.5);
  background: hsla(var(--destructive), 0.1);
  color: hsl(var(--destructive));
  font-weight: 500;
}

.q-explanation {
  border: 1px solid hsla(var(--primary), 0.3);
  background: hsla(var(--primary), 0.05);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.q-explanation strong { color: hsl(var(--primary)); }

.answers-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.answer-box {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: hsl(var(--card));
}

.answer-box.correct-box {
  border-color: hsla(var(--secondary), 0.5);
  background: hsla(var(--secondary), 0.1);
}

.creator-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) { .creator-stats { grid-template-columns: repeat(2, 1fr); } }

.creator-stat {
  text-align: center;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 0.5rem;
}

.creator-stat .val { font-size: 1.125rem; font-weight: 700; }
.creator-stat .val.primary { color: hsl(var(--secondary)); }
.creator-stat .val.red { color: hsl(var(--destructive)); }
.creator-stat .lbl { font-size: 0.7rem; color: hsl(var(--muted-fg)); }

.difficulty-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}

.difficulty-badge.easy {
  background: hsla(var(--secondary), 0.1);
  color: hsl(var(--secondary));
  border-color: hsla(var(--secondary), 0.3);
}

.difficulty-badge.medium {
  background: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  border-color: hsla(var(--primary), 0.3);
}

.difficulty-badge.hard {
  background: hsla(var(--destructive), 0.1);
  color: hsl(var(--destructive));
  border-color: hsla(var(--destructive), 0.3);
}

/* ===== TRUSTED BY ===== */
.trusted {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  background: hsla(var(--muted), 0.5);
  padding: 3rem 0;
}

.trusted h2 {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--muted-fg));
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2rem;
}

.trusted-logos span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--border));
  user-select: none;
}

/* ===== CTA ===== */
.cta-box {
  max-width: 42rem;
  margin: 0 auto;
  background: hsl(var(--sky));
  border-radius: 0.75rem;
  padding: 3rem;
  text-align: center;
  color: hsl(var(--muted-white));
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.cta-box p { margin-top: 1rem; font-size: 1.125rem; }

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
