/* ============================================================
   IGNITE TUTORING — STYLES
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:       #FF5C1A;
  --orange-light: #FF7A42;
  --orange-glow:  #FF5C1A33;
  --dark:         #0E0E12;
  --dark-2:       #16161C;
  --dark-3:       #1E1E26;
  --text:         #E8E8F0;
  --text-muted:   #8888A0;
  --border:       #2A2A36;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.4);
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4,
.word-rotator {
  font-family: 'Quicksand', sans-serif;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ───────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }

.section-dark {
  background: var(--dark-2);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 12px 0 16px;
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  position: relative;
  padding: 14px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: none;
  color: var(--orange-light);
  border: none;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.badge-light {
  color: rgba(255,255,255,0.65);
}

.badge-light::before {
  background: rgba(255,255,255,0.35);
}

.highlight,
.rotator-outer .word-rotator {
  color: var(--orange-light);
}

/* ── Word rotator ────────────────────────────────────────── */
.rotator-outer {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.word-rotator {
  display: inline-block;
}

.chalk-line {
  position: absolute;
  bottom: 0;
  left: -3%;
  width: 106%;
  height: 12px;
  pointer-events: none;
  overflow: visible;
}

.chalk-p1,
.chalk-p2 {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

@keyframes chalk-draw-1 {
  to { stroke-dashoffset: 0; }
}
@keyframes chalk-draw-2 {
  to { stroke-dashoffset: 0; }
}

.chalk-line.draw .chalk-p1 {
  animation: chalk-draw-1 0.45s ease-out forwards;
}
.chalk-line.draw .chalk-p2 {
  animation: chalk-draw-2 0.55s ease-out 0.06s forwards;
}

@keyframes rotator-exit {
  to { opacity: 0; transform: translateY(-22px); }
}
@keyframes rotator-enter {
  from { opacity: 0; transform: translateY(26px); }
  60%  { opacity: 1; transform: translateY(-6px); }
  80%  { transform: translateY(3px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 24px rgba(255,92,26,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-full { width: 100%; }

.btn-cta,
.nav-links .btn-cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 92, 26, 0.35);
}

.btn-cta:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 20px rgba(255, 92, 26, 0.45) !important;
  animation: none;
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,14,18,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

#flame-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,92,26,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,154,60,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: -.02em;
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}

/* ── Subjects ────────────────────────────────────────────── */
.subject-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 56px;
  border-top: 1px solid var(--border);
}

.subject {
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--border);
}

.subject h3 {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  transition: color var(--transition);
}

/* Chalk stroke, drawn on hover — same motif as the hero underline */
.subject h3::after {
  content: '';
  position: absolute;
  left: -2px;
  bottom: -7px;
  width: calc(100% + 6px);
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M4,8%20C32,5%2064,10%2096,7%20C128,4%20158,9%20190,6%20C220,3%20252,8%20278,6%20C287,4%20295,7%20297,6' stroke='%23FF5C1A' stroke-width='3.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-out;
  pointer-events: none;
}

.subject:hover h3 { color: var(--orange-light); }
.subject:hover h3::after { clip-path: inset(0 0 0 0); }

.subject p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Meet Eylish intro ───────────────────────────────────── */
.tutor-intro {
  max-width: 720px;
  margin: 0 auto 56px;
}

.tutor-name {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.tutor-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 26px;
}

.tutor-intro-body p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.tutor-intro-body p:last-child { margin-bottom: 0; }

.tutor-intro-body strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Credentials ─────────────────────────────────────────── */
.cred-list {
  max-width: 860px;
  margin: 0 auto;
}

.cred {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 8px 48px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.cred:last-child {
  border-bottom: 1px solid var(--border);
}

.cred h3 {
  justify-self: start;
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  transition: color var(--transition);
}

.cred h3::after {
  content: '';
  position: absolute;
  left: -2px;
  bottom: -6px;
  width: calc(100% + 6px);
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M4,8%20C32,5%2064,10%2096,7%20C128,4%20158,9%20190,6%20C220,3%20252,8%20278,6%20C287,4%20295,7%20297,6' stroke='%23FF5C1A' stroke-width='3.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-out;
  pointer-events: none;
}

.cred:hover h3 { color: var(--orange-light); }
.cred:hover h3::after { clip-path: inset(0 0 0 0); }

.cred p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── How It Works ────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
}

.step-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 20px;
}

.step-arrow img {
  width: 120px;
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* ── CTA / Contact ───────────────────────────────────────── */
.section-cta {
  background:
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.referral-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255, 92, 26, 0.04);
  border: 1px solid rgba(255, 92, 26, 0.12);
  border-radius: 10px;
}
.referral-text strong {
  font-size: 0.88rem;
  color: var(--orange-light);
  display: block;
  margin-bottom: 4px;
}
.referral-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 4px;
}
.referral-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}

.pricing-cta {
  text-align: center;
  margin-top: 44px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-cta a {
  color: var(--orange-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-cta a:hover { color: var(--orange); }

.pricing-policy-note {
  text-align: center;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.7;
}
.pricing-policy-note a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.pricing-policy-note a:hover { color: var(--orange-light); }

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-text .badge { margin-bottom: 20px; }

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-perks li {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}
.cta-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.cta-phone {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.cta-phone a {
  color: var(--orange-light);
  font-weight: 600;
  text-decoration: none;
}
.cta-phone a:hover { text-decoration: underline; }

/* ── Form ────────────────────────────────────────────────── */
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option { background: var(--dark-2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.contact-method-group {
  display: flex;
  gap: 12px;
  padding-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  flex: 1;
  transition: all var(--transition);
}

.radio-label:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-glow);
  color: var(--white);
}

.radio-label input[type="radio"] {
  accent-color: var(--orange);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -8px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.76rem;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.footer-legal a:hover {
  opacity: 1;
  color: var(--text-muted);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-copy a {
  color: var(--orange-light);
  text-decoration: none;
}
.footer-copy a:hover { text-decoration: underline; }

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-group {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-group-label {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.pricing-group-area {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table thead th:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--border);
}

.pricing-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--border);
}

.pt-tier {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.pt-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.pt-note {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pt-best-row td {
  background: rgba(255, 92, 26, 0.06);
}

.pt-save {
  color: var(--orange-light);
}

.pt-best-note {
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
  color: var(--orange-light);
  margin-left: 8px;
}

/* ── Group Sessions ──────────────────────────────────────── */
.gs-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gs-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.gs-big-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.gs-per {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.gs-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.gs-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gs-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.gs-day {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.gs-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-light);
}
.gs-availability {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Assessments ─────────────────────────────────────────── */
.assessments-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 20px;
  align-items: stretch;
}

.ac-or {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.ac-or::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border);
}

.ac-or span {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 500;
  padding: 8px 4px;
}

.assessments-subjects-label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* Left: Full Diagnostic featured card */
.ac-featured {
  background: rgba(255, 92, 26, 0.07);
  border: 1px solid rgba(255, 92, 26, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.ac-featured-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.ac-featured-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.ac-featured-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Right: 2×2 subject grid */
.assessments-subjects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.assessment-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.assessment-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.ac-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.ac-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange-light);
}

@media (max-width: 900px) {
  .pricing-wrapper   { grid-template-columns: 1fr; }
  .assessments-split { grid-template-columns: 1fr; gap: 16px 0; }

  .ac-or {
    flex-direction: row;
    padding: 4px 0;
  }
  .ac-or::before {
    top: 50%; bottom: auto;
    left: 0; right: 0;
    width: auto; height: 1px;
  }
  .ac-or span { padding: 0 12px; }
}

@media (max-width: 540px) {
  .assessments-subjects { grid-template-columns: 1fr 1fr; }
}

/* ── Hero kinetic entrance ───────────────────────────────── */
@keyframes k-word {
  0%   { opacity: 0; transform: translateY(64px) rotate(-6deg); }
  55%  { opacity: 1; transform: translateY(-14px) rotate(2.5deg); }
  74%  { transform: translateY(7px) rotate(-1deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes k-rise {
  0%   { opacity: 0; transform: translateY(36px); }
  60%  { opacity: 1; transform: translateY(-7px); }
  80%  { transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hw {
  display: inline-block;
  opacity: 0;
  animation: k-word 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-sub {
  opacity: 0;
  animation: k-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

.hero-actions {
  opacity: 0;
  animation: k-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.94s both;
}

.hero-trust {
  opacity: 0;
  animation: k-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.12s both;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 20px;
  }
  .nav-toggle { display: block; }

  .cred { grid-template-columns: 1fr; gap: 6px; }

  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: center; }

  .cta-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .contact-form { padding: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
