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

:root {
  --accent: #3b8ef3;
  --accent-dim: #2563eb;
  --accent-light: #60a5fa;
  --bg: #05091a;
  --surface: #0d1b2a;
  --surface-2: #0f2035;
  --border: rgba(59, 142, 243, 0.12);
  --border-accent: rgba(59, 142, 243, 0.3);
  --text: #f0f4ff;
  --text-muted: #94a3b8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* ── Background glows ── */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: rgba(59, 142, 243, 0.09);
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-glow-2 {
  width: 500px; height: 500px;
  top: 30%; right: -180px;
  background: rgba(96, 165, 250, 0.06);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
.bg-glow-3 {
  width: 400px; height: 400px;
  bottom: 0; left: 30%;
  background: rgba(37, 99, 235, 0.05);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

/* ── Nav ── */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--accent-light); }
.nav-cta:active { transform: scale(0.98); }

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 90px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 80px rgba(59, 142, 243, 0.2);
}
.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Stat pills ── */
.stat-pills {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 28px;
  margin-bottom: 36px;
  gap: 0;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 15px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(59, 142, 243, 0.28);
}
.hero-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 0 48px rgba(59, 142, 243, 0.45);
}
.hero-cta:active { transform: scale(0.98); }

/* ── Hero slab image ── */
.hero-slab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slab-img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(59, 142, 243, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(59, 142, 243, 0.12);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ── Shared section styles ── */
.section {
  position: relative;
  z-index: 5;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header-left {
  text-align: left;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── About two-col ── */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.about-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.rule-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Grades grid ── */
.grades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.grade-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-top-width: 3px;
}
.grade-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(59, 142, 243, 0.12);
}
.grade-pristine { border-top-color: var(--accent-light); }
.grade-gem      { border-top-color: var(--accent); }
.grade-mint     { border-top-color: var(--accent-dim); }
.grade-score {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.grade-pristine .grade-score { color: var(--accent-light); }
.grade-gem      .grade-score { color: var(--accent); }
.grade-mint     .grade-score { color: var(--accent-dim); }
.grade-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 16px;
}
.grade-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Steps ── */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-arrow {
  font-size: 24px;
  color: var(--accent);
  padding: 40px 10px 0;
  flex-shrink: 0;
  opacity: 0.5;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.04em;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.link {
  color: var(--accent-light);
  text-decoration: none;
}
.link:hover { text-decoration: underline; }

/* ── Pause banner ── */
.pause-banner {
  max-width: 640px;
  margin: 0 auto 48px;
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pause-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  align-self: flex-start;
}
.pause-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulse-dot 2s ease-in-out infinite;
}
.pause-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fbbf24;
}
.pause-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.2;
}
.pause-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.waitlist-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.waitlist-input { flex: 1; }
.btn-waitlist {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.btn-waitlist:hover { background: var(--accent-light); }
.btn-waitlist:active { transform: scale(0.98); }
.waitlist-success {
  font-size: 13px;
  color: var(--accent-light);
  min-height: 18px;
  margin-top: 4px;
}
.submit-form-hidden { display: none; }

/* ── Contact / Submission form ── */
.section-contact {
  background: linear-gradient(180deg, transparent 0%, rgba(59, 142, 243, 0.04) 100%);
}
.submit-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input:focus {
  border-color: rgba(59, 142, 243, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 142, 243, 0.1);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-select option { background: #0d1b2a; }
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-textarea-sm { min-height: 80px; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.5;
}
.form-submit { flex-shrink: 0; }
.form-success {
  text-align: center;
  font-size: 14px;
  color: var(--accent-light);
  min-height: 20px;
  letter-spacing: 0.02em;
}

.contact-cta {
  display: flex;
  justify-content: center;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  padding: 18px 48px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(59, 142, 243, 0.28);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 60px rgba(59, 142, 243, 0.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: scale(0.98); }

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 24px;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px 50px;
    gap: 48px;
  }
  .hero-text { align-items: center; }
  .hero-sub { max-width: 100%; }
  .stat-pills { align-self: center; }
  .hero-cta { align-self: center; }
  .hero-slab { order: -1; }
  .slab-img { width: 220px; }
  .section-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-header-left { text-align: center; }
  .grades-grid { gap: 16px; }
  .steps {
    flex-direction: column;
    align-items: stretch;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .grades-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .contact-email-link { font-size: clamp(22px, 6vw, 32px); }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 61px;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    z-index: 9;
  }
  .nav-links.open .nav-link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open .nav-cta {
    margin-top: 14px;
    width: 100%;
    text-align: center;
  }
  .stat-pills {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    align-self: stretch;
  }
  .stat-divider { width: 60px; height: 1px; }
  .grades-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .faq-list { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-submit { width: 100%; text-align: center; }
  .pause-banner { padding: 28px 24px; }
  .waitlist-row { flex-direction: column; }
  .btn-waitlist { width: 100%; }
  .hero-cta { width: 100%; text-align: center; }
  .btn-primary { width: 100%; text-align: center; }
  .step { padding: 24px 20px; }
  .grade-card { padding: 28px 20px; }
}

/* ── Splash screen ── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
#splash.splash-exit {
  animation: splashExit 0.55s ease forwards;
  pointer-events: none;
}
@keyframes splashExit {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.04); }
}
.splash-logo {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 140px);
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(59, 142, 243, 0.5));
  animation: logoPulse 1.8s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(59, 142, 243, 0.4)); }
  50%       { filter: drop-shadow(0 0 60px rgba(59, 142, 243, 0.7)); }
}
.splash-sub {
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 0.6s 0.3s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s;
}
.nav-hamburger:hover span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav { position: relative; }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(59, 142, 243, 0.1);
  border-left-color: var(--accent-light);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.5;
  user-select: none;
}
.quote-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.quote-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.author-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── Contact simple ── */
.section-contact-simple {
  text-align: center;
}
.contact-email-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-email-link {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: filter 0.2s;
}
.contact-email-link:hover {
  filter: brightness(1.2);
}
.contact-response {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── FAQ ── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-accent); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-light); }
.faq-chevron {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── Responsive: testimonials (must come after .testimonials-grid base styles) ── */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
