:root {
  --yellow: #f5c518;
  --red: #e63946;
  --ink: #0e1116;
  --paper: #f6f4ef;
  --paper-2: #efebe2;
  --white: #ffffff;
  --muted: #626873;
  --line: #ded8cc;
  --green: #3a8054;
  --shadow: 0 18px 46px rgba(14, 17, 22, 0.14);
  --radius: 8px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
dl,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, background 160ms ease;
}

.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 239, 0.9);
  color: var(--ink);
  backdrop-filter: blur(14px) saturate(140%);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.site-header.is-solid {
  background: rgba(246, 244, 239, 0.97);
  box-shadow: 0 8px 24px rgba(14, 17, 22, 0.08);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-logo {
  width: 276px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a,
.footer-contact a,
.site-footer nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-contact a:hover,
.site-footer nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.social-icon-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-icon-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-icon-link i {
  font-size: 0.94rem;
  line-height: 1;
}

.header-social .social-icon-link {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.header-social .social-icon-link:hover {
  border-color: var(--ink);
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.header-call:hover {
  background: var(--red);
}

.site-nav a:focus-visible,
.header-call:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.social-icon-link:focus-visible,
.social-widget-fallback:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.footer-contact a:focus-visible,
.site-footer nav a:focus-visible,
.faq-item button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.section-dark .button:focus-visible,
.test-day .button:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--yellow);
}

.section,
.test-day,
.final-cta {
  scroll-margin-top: 76px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 86px;
  background:
    linear-gradient(90deg, rgba(245, 197, 24, 0.08), transparent 45%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 300px;
  background: repeating-linear-gradient(135deg, rgba(14, 17, 22, 0.045) 0 18px, transparent 18px 44px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 52px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: 7.8rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.6rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  font-weight: 900;
}

mark {
  color: inherit;
}

.tag-l,
.tag-p {
  display: inline-block;
  padding: 0 14px 6px;
  border-radius: var(--radius);
  line-height: 0.9;
}

.tag-l {
  background: var(--yellow);
}

.tag-p {
  background: var(--red);
  color: var(--white);
}

.hero-copy > p {
  max-width: 640px;
  margin-bottom: 30px;
  color: #343943;
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--red);
  border-color: var(--red);
}

.button-secondary {
  background: transparent;
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.92rem;
}

.contact-actions .button-secondary {
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1.2;
}

.button-detail {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 14px;
  max-width: 680px;
  margin-top: 44px;
}

.hero-stats div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 54px, rgba(255, 255, 255, 0.035) 54px 108px);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card-top {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52d273;
  box-shadow: 0 0 0 5px rgba(82, 210, 115, 0.14);
}

.plate-pair {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.plate {
  width: 116px;
  height: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.plate-l {
  background: var(--yellow);
  color: var(--ink);
}

.plate-p {
  background: var(--red);
  color: var(--white);
}

.plate-d {
  border: 5px solid var(--white);
  background: var(--white);
  color: var(--ink);
}

.lesson-ticket {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.ticket-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-ticket strong,
.ticket-price {
  font-size: 1.5rem;
  font-weight: 900;
}

.ticket-price {
  color: var(--yellow);
}

.progress-bars {
  display: flex;
  gap: 5px;
}

.progress-bars span {
  height: 5px;
  flex: 1;
  border-radius: 999px;
  background: var(--yellow);
}

.ticket-features {
  display: grid;
  gap: 8px;
}

.ticket-features li {
  position: relative;
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.32;
}

.ticket-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.43em;
  border-radius: 50%;
  background: var(--yellow);
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-size: 1.25rem;
  font-weight: 900;
}

.marquee-track b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.quick-contact {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.quick-contact-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quick-contact p {
  margin: 0;
}

.quick-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.section {
  padding: 98px 0;
}

.section-light {
  background: var(--paper-2);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 104px;
}

.section-intro p,
.section-heading p,
.instructor-copy p,
.faq-heading p,
.final-cta p,
.test-day p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-intro p,
.section-dark .section-heading p,
.section-dark .social-widget-header,
.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .eyebrow {
  color: var(--yellow);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card {
  min-height: 300px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-index,
.plan-label {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-dark .feature-index {
  color: var(--yellow);
}

.feature-card h3 {
  color: inherit;
}

.feature-card p,
.price-card li,
.review-card figcaption,
.faq-panel p {
  color: var(--muted);
}

.curriculum {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.curriculum h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: inherit;
}

.curriculum-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.curriculum-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 40px;
  align-items: end;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.review-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.price-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 17, 22, 0.5);
}

.price-card-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.price-card-test {
  background: var(--yellow);
  border-color: var(--yellow);
}

.price-card-featured li,
.price-card-featured .plan-label {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.price-card-featured .price {
  color: rgba(255, 255, 255, 0.72);
}

.price span {
  color: var(--ink);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}

.price-card-featured .price span {
  color: var(--yellow);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.price-card-test li::before,
.price-card-featured li::before {
  background: var(--red);
}

.price-card .button {
  margin-top: auto;
}

.price-card-featured .button-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.price-card-featured .button-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.test-day {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.test-day-inner {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 50px;
  align-items: center;
}

.test-day .eyebrow {
  color: var(--yellow);
}

.test-day h2 {
  max-width: 760px;
}

.test-day p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.car-slider {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  justify-self: center;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 26px 34px rgba(0, 0, 0, 0.24);
}

.car-slider::before {
  content: "Hyundai Kona";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14, 17, 22, 0.82);
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.car-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: carSlideFade 20s infinite;
  object-fit: cover;
}

.car-slider img:nth-child(2) {
  animation-delay: -15s;
}

.car-slider img:nth-child(3) {
  animation-delay: -10s;
}

.car-slider img:nth-child(4) {
  animation-delay: -5s;
}

@keyframes carSlideFade {
  0%,
  30% {
    opacity: 1;
  }

  35%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .car-slider img {
    animation: none;
  }

  .car-slider img:first-child {
    opacity: 1;
  }
}

.instructor-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.instructor-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.mini-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-stats dt {
  font-weight: 900;
}

.mini-stats dd {
  color: var(--muted);
  font-size: 0.88rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 11px 16px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.social-section {
  padding: 66px 0;
}

.social-embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 14px;
  align-items: start;
}

.social-widget-shell-instagram {
  grid-column: 1 / -1;
}

.social-widget-shell-facebook {
  grid-column: 2;
  grid-row: 2;
}

.social-widget-shell-tiktok {
  grid-column: 1;
  grid-row: 2;
}

.social-widget-shell {
  position: relative;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 20px);
}

.social-widget-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.social-widget-header {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: space-between;
  padding: 10px 2px 12px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-widget-frame {
  min-height: 360px;
  max-height: 430px;
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 6px;
  background: var(--white);
}

.instagram-widget-frame,
.sk-instagram-feed {
  min-height: 500px;
  max-height: 560px;
}

.social-widget-frame iframe,
.sk-instagram-feed iframe,
.tiktok-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.social-widget-frame-tiktok {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 440px;
  max-height: 500px;
}

.social-widget-frame-facebook {
  min-height: 440px;
  max-height: 500px;
  overflow: hidden;
  display: grid;
  justify-content: center;
  align-content: start;
}

.tiktok-embed {
  width: 100%;
  margin: 0 auto !important;
}

.social-widget-frame-facebook .fb-page,
.social-widget-frame-facebook iframe {
  max-width: 100%;
}

.sk-instagram-feed .sk_branding,
.sk-instagram-feed .tutorial_link.--custom-branding {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.social-widget-fallback {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.social-widget-fallback:hover {
  background: var(--yellow);
  color: var(--ink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  margin: 0;
  padding: 24px;
}

.review-card blockquote {
  margin: 0 0 26px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.22;
}

.review-card figcaption {
  font-weight: 900;
}

.faq-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.faq-heading h2 {
  max-width: 760px;
}

.faq-heading p:last-child {
  max-width: 620px;
}

.faq-list {
  column-count: 2;
  column-gap: 16px;
}

.faq-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 22px 22px;
}

.faq-panel p {
  margin-bottom: 0;
}

.final-cta {
  background: var(--yellow);
  color: var(--ink);
}

.final-cta-inner {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
  padding-block: 54px;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.contact-copy p {
  max-width: 520px;
}

.final-cta .eyebrow,
.final-cta p {
  color: #5f4c00;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta .button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.final-cta .button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(14, 17, 22, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.contact-form input,
.contact-form select {
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--red);
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-state="success"] {
  border-left: 5px solid #1f8f4d;
}

.form-status[data-state="error"] {
  border-left: 5px solid var(--red);
}

.form-status[data-state="pending"] {
  border-left: 5px solid var(--yellow);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.7fr 1fr;
  gap: 46px;
}

.site-footer p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  margin-top: 18px;
}

.footer-social .social-icon-link {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--paper);
}

.footer-social .social-icon-link:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  font-weight: 800;
}

.footer-grid > *,
.footer-contact,
.footer-contact a,
.site-footer nav,
.site-footer nav a,
.final-cta-inner > *,
.section-heading-split > *,
.instructor-grid > *,
.test-day-inner > * {
  min-width: 0;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 5.7rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 90;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .section-grid,
  .instructor-grid,
  .section-heading-split,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 500px;
  }

  .section-intro {
    position: static;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-embed-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  }

  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding-inline: 16px;
  }

  .brand img,
  .footer-logo {
    width: 202px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  h1 {
    font-size: 3.42rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-copy > p {
    max-width: 340px;
    font-size: 1.05rem;
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero .eyebrow {
    max-width: 330px;
  }

  .hero-actions,
  .contact-actions,
  .quick-contact-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .button,
  .contact-actions {
    width: 100%;
  }

  .contact-actions .button-secondary {
    min-height: 64px;
    flex-direction: column;
    gap: 3px;
    padding-block: 10px;
  }

  .hero-stats,
  .feature-list,
  .pricing-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .faq-list {
    column-count: 1;
  }

  .social-section {
    padding: 54px 0;
  }

  .back-to-top {
    display: none;
  }

  .social-embed-grid {
    grid-template-columns: 1fr;
  }

  .social-widget-shell-facebook,
  .social-widget-shell-instagram,
  .social-widget-shell-tiktok {
    grid-column: auto;
    grid-row: auto;
  }

  .social-widget-shell {
    padding: 10px;
  }

  .social-widget-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 2px 12px;
  }

  .social-widget-frame {
    min-height: 330px;
    max-height: 400px;
  }

  .instagram-widget-frame,
  .sk-instagram-feed {
    min-height: 520px;
    max-height: 560px;
  }

  .social-widget-frame-facebook {
    min-height: 380px;
    max-height: 380px;
  }

  .social-widget-frame-tiktok {
    min-height: 340px;
    max-height: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 6px;
  }

  .hero-card {
    min-height: 430px;
    padding: 22px;
  }

  .plate {
    width: 88px;
    height: 88px;
    font-size: 4.5rem;
  }

  .feature-card,
  .feature-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .price-card {
    min-height: auto;
  }

  .section {
    padding: 70px 0;
  }

  .test-day-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 56px;
  }

  .car-slider {
    width: 100%;
  }

  .final-cta-inner {
    min-height: auto;
    padding-block: 56px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .plate {
    width: 76px;
    height: 76px;
    font-size: 3.9rem;
  }

  .hero-card-top {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
