﻿:root {
  /* Roadvia brand colors */
  --deep-black: #131f2c;
  --dark-slate: #1A2B3C;
  --mid-slate: #243447;
  --electric-lime: #A8E63D;
  --lime-hover: #C6F16A;
  --off-white: #F8FAFC;
  --muted-blue-gray: #94A3B8;
  --dim-gray: #64748B;
  --max-width: 1160px;

  /* Utility tokens */
  --white: #ffffff;
  --light-gray: #f7f9fc;
  --line: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 70px rgba(15, 25, 35, 0.22);
  --radius: 22px;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--deep-black);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 5.6vw, 4.65rem);
  line-height: 1.03;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

p {
  color: var(--dim-gray);
}

.hero h1 em {
  color: var(--electric-lime);
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: var(--deep-black);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 135px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  display: none;
  padding: 1rem;
  background: var(--deep-black);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(15, 25, 35, 0.24);
}

.site-nav a,
.nav-dropdown-toggle {
  display: block;
  padding: 0.35rem 0;
  color: var(--off-white);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--electric-lime);
}

.nav-open .site-nav {
  display: grid;
  gap: 0.65rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  width: 100%;
  font-family: inherit;
  line-height: 1.2;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle span {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  display: none;
  gap: 0.15rem;
  margin-top: 0.45rem;
  padding: 0.45rem 0.5rem 0.45rem 0.75rem;
  background: var(--dark-slate);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-left: 3px solid var(--electric-lime);
  border-radius: 14px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 0.58rem 0.65rem;
  color: var(--off-white);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--electric-lime);
  background: var(--mid-slate);
}

.nav-cta {
  margin-top: 0;
  padding: 0.75rem 1.1rem !important;
  color: var(--deep-black) !important;
  background: var(--electric-lime);
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.nav-cta:hover {
  background: var(--lime-hover);
  color: var(--deep-black) !important;
}

.nav-toggle {
  justify-self: end;
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  background: var(--dark-slate);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--deep-black);
  background: var(--electric-lime);
}

.button-primary:hover {
  color: var(--deep-black);
  background: var(--lime-hover);
}

.button-secondary {
  color: var(--dark-slate);
  background: var(--white);
  border-color: rgba(15, 25, 35, 0.16);
}

.button-secondary:hover {
  border-color: var(--electric-lime);
}

.button-outline {
  color: var(--deep-black);
  background: var(--off-white);
  border-color: rgba(15, 25, 35, 0.16);
}

.button-outline:hover {
  border-color: var(--electric-lime);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--electric-lime);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.5rem 0.9rem;
  color: var(--dark-slate);
  background: var(--off-white);
  border: 2px solid var(--electric-lime);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.08);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--electric-lime);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
    animation: fadeInUp 0.8s ease both;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--electric-lime);
  border-radius: 50%;
  animation: statusBlink 1.4s ease-in-out infinite;
}

@keyframes statusBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  }

  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
  }
}

.section {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.08rem;
}

.hero {
  position: relative;
  display: grid;
  gap: 2.25rem;
  width: min(100% - 2rem, var(--max-width));
  min-height: auto;
  margin-inline: auto;
  padding: 1.5rem 0 4rem;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.5rem -8rem auto auto;
  z-index: -1;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.24), transparent 66%);
  border-radius: 50%;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-image-card {
  position: relative;
}

.hero-image-card > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.road-test-hero-image > img {
  height: 420px;
}

.teen-driver-hero-image {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.teen-driver-hero-image > img {
  display: block;
  height: auto;
  object-fit: cover;
  background: transparent;
}

.adult-lesson-hero-image > img,
.senior-refresher-hero-image > img {
  height: 420px;
}

.hero-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 310px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 25, 35, 0.18);
  backdrop-filter: blur(12px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 0.25rem;
  color: var(--deep-black);
}

.hero-card span {
  color: var(--dim-gray);
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.parent-visual {
  background: var(--dark-slate);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.pickup-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max-width)) / 2));
  background: var(--dark-slate);
}

.pickup-section h2,
.pickup-section h3 {
  color: var(--white);
}

.pickup-section p {
  color: var(--muted-blue-gray);
}

.pickup-grid {
  display: grid;
  gap: 1rem;
}

.pickup-grid div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.pickup-grid div i,
.pickup-grid div svg {
	width: 24px;
	height: 24px;
	color: var(--electric-lime);
	stroke-width: 2.2;
	margin-bottom: 0.5rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 330px;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(15, 25, 35, 0.07);
}

.package-card.featured {
  color: var(--white);
  background: var(--dark-slate);
  border-color: var(--dark-slate);
}

.package-card.featured p {
  color: var(--muted-blue-gray);
}

.package-card .button {
  margin-top: auto;
}

.badge {
  width: fit-content;
  padding: 0.4rem 0.55rem;
  color: var(--dark-slate);
  background: var(--electric-lime);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: inherit;
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-display {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin: 0;
}

.price-display .price {
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.price-original {
  color: var(--muted-blue-gray);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.package-card.featured .price-original {
  color: var(--muted-blue-gray);
}

.parent-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.parent-layout {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.parent-visual {
	overflow: hidden;
	border-radius: 18px;
}

.parent-visual img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.parent-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.parent-points div {
	padding: 1rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	transition: border-color 200ms ease, transform 200ms ease;
}

.parent-points div:hover {
	border-color: var(--electric-lime);
	transform: translateY(-2px);
}

.parent-points h3 {
	margin-bottom: 0.35rem;
}

.parent-points p {
	margin-bottom: 0;
}

@media (min-width: 820px) {
	.parent-layout {
		grid-template-columns: 0.9fr 1.1fr;
	}
}

@media (max-width: 560px) {
	.parent-points {
		grid-template-columns: 1fr;
	}
}
.service-area {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2.5rem;
  background: var(--deep-black);
  border-radius: 28px;
}

.service-area h2 {
  color: var(--off-white);
}

.service-area p {
  color: var(--muted-blue-gray);
}

.service-area .eyebrow {
  color: var(--electric-lime);
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.city-grid span {
  padding: 0.7rem 0.9rem;
  color: var(--off-white);
  background: var(--dim-gray);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
}

.faq-section {
  width: min(100% - 2rem, 920px);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 25, 35, 0.05);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--dark-slate);
  font-weight: 950;
}

details p {
  padding: 0 1.1rem 1.1rem;
  margin-bottom: 0;
}

.final-cta {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto 3rem;
  padding: 4rem 2.5rem;
  color: var(--white);
  background: var(--deep-black);
  border: none;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: var(--electric-lime);
}

.final-cta h2 {
  max-width: 780px;
  margin-inline: auto;
  color: var(--off-white);
}

.final-cta p {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted-blue-gray);
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button-secondary {
  color: var(--off-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.final-cta .button-secondary:hover {
  border-color: var(--electric-lime);
}

.site-footer {
  padding: 2.5rem max(1rem, calc((100% - var(--max-width)) / 2)) 1.25rem;
  color: var(--muted-blue-gray);
  background: var(--dark-slate);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-main {
  display: grid;
  gap: 1.75rem 1.35rem;
}

.site-footer img {
  width: 115px;
  margin-bottom: 0.75rem;
}

.site-footer h2 {
  margin: 0 0 0.65rem;
  color: var(--off-white);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0 0 0.35rem;
  color: var(--muted-blue-gray);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted-blue-gray);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--electric-lime);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  max-width: 260px;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
}

@media (min-width: 820px) {
  .footer-main {
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(130px, 0.8fr)) minmax(190px, 1fr);
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.35rem 0;
    font-size: 0.92rem;
  }

  .nav-dropdown-toggle {
    width: auto;
    padding: 0.35rem 0;
    font-size: 0.92rem;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 50%;
    z-index: 60;
    display: grid;
    min-width: 235px;
    margin-top: 0;
    padding: 0.5rem;
    background: var(--dark-slate);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(15, 25, 35, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown-toggle span,
  .nav-dropdown:focus-within .nav-dropdown-toggle span,
  .nav-dropdown.open .nav-dropdown-toggle span {
    transform: translateY(1px) rotate(225deg);
  }

  .nav-dropdown-menu a {
    padding: 0.68rem 0.75rem;
    white-space: nowrap;
  }

  .nav-cta {
    margin-top: 0;
    padding: 0.72rem 1rem !important;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 720px) {
  .pickup-grid,
  .package-grid,
  .parent-points,
  .split-section,
  .parent-section,
  .service-area {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1.25fr 0.9fr 0.9fr 1fr;
  }
}

@media (min-width: 1020px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .pickup-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}
@media (max-width: 719px) {
  .button {
    width: 100%;
  }

  .brand img {
    width: 125px;
    max-height: 56px;
  }

}

/* Trust + Benefits combined */
.trust-benefits {
  width: min(100% - 2rem, var(--max-width));
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 25, 35, 0.08);
}

.trust-benefits-heading {
  margin-bottom: 2rem;
}

.trust-benefits-heading h2 {
  color: var(--deep-black);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  margin-bottom: 0;
}

.trust-benefits-subhead {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--dim-gray);
  max-width: 560px;
  line-height: 1.55;
}

.trust-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.tb-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--light-gray);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  cursor: default;
}

.tb-item:hover {
  background: var(--off-white);
  border-color: var(--electric-lime);
  transform: translateY(-2px);
}

.tb-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(168, 230, 61, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.tb-item i,
.tb-item svg {
  width: 20px;
  height: 20px;
  color: var(--electric-lime);
  stroke-width: 2.4;
}

.tb-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tb-item strong {
  display: block;
  color: var(--deep-black);
  font-size: 0.95rem;
  font-weight: 800;
}

.tb-item p {
  margin: 0;
  color: var(--dim-gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .trust-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .trust-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Driver's Ed section */
.drivers-ed-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.de-layout {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.de-intro {
	font-size: 1.08rem;
	line-height: 1.7;
	max-width: 560px;
	margin-bottom: 2rem;
}

.de-details {
	display: grid;
	gap: 0.85rem;
	margin-bottom: 2rem;
}

.de-detail {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	transition: border-color 200ms ease, transform 200ms ease;
}

.de-detail:hover {
	border-color: var(--electric-lime);
	transform: translateY(-2px);
}

.de-detail i,
.de-detail svg {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	color: var(--electric-lime);
	stroke-width: 2.4;
	margin-top: 2px;
}

.de-detail strong {
	display: block;
	color: var(--dark-slate);
	font-size: 0.95rem;
	font-weight: 800;
	margin-bottom: 0.15rem;
}

.de-detail p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.5;
}

.de-cta {
	margin-top: 1.5rem;
}

.de-cta-note {
	margin-top: 0.6rem;
	font-size: 0.88rem;
	color: var(--dim-gray);
}

.de-image {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.de-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

@media (min-width: 820px) {
	.de-layout {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

@media (max-width: 560px) {
	.de-image img {
		height: 280px;
	}
}

/* Path Timeline */
.path-timeline {
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.path-timeline-inner {
	width: min(100% - 2rem, 820px);
	margin: 0 auto;
}

.path-timeline-intro {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--dim-gray);
	max-width: 600px;
	margin-bottom: 3rem;
}

.finish-marker {
	background: var(--electric-lime);
	border-color: var(--electric-lime);
}

.finish-marker i,
.finish-marker svg {
	width: 22px;
	height: 22px;
	color: var(--deep-black);
	stroke-width: 2.5;
}

/* Horizontal Journey Strip */
/* Journey Road Map */
.journey-section {
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.journey-header {
	max-width: 600px;
	margin-bottom: 2.5rem;
}

.journey-header p:last-child {
	font-size: 1.05rem;
}

.journey-road-map {
	max-width: 100%;
}

/* Rows */
.journey-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: start;
	gap: 0;
}

.row-finish {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 220px;
}

/* Stops */
.journey-stop {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 0.5rem;
}

.journey-img {
	width: 175px;
	height: 175px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--line);
	box-shadow: 0 6px 18px rgba(15, 25, 35, 0.1);
	margin-bottom: 0.6rem;
	transition: border-color 300ms ease, transform 300ms ease;
}

.journey-stop:hover .journey-img,
.journey-stop.snake-active-step .journey-img {
	border-color: var(--electric-lime);
	transform: scale(1.06);
}

.teen-journey-page .journey-stop:hover .journey-img,
.teen-journey-page .journey-stop.snake-active-step .journey-img,
.adult-journey-page .journey-stop:hover .journey-img,
.adult-journey-page .journey-stop.snake-active-step .journey-img,
.senior-journey-page .journey-stop:hover .journey-img,
.senior-journey-page .journey-stop.snake-active-step .journey-img,
.road-test-journey-page .journey-stop:hover .journey-img,
.road-test-journey-page .journey-stop.snake-active-step .journey-img {
  box-shadow:
    0 0 0 5px rgba(168, 230, 61, 0.22),
    0 0 28px rgba(168, 230, 61, 0.58),
    0 16px 34px rgba(15, 25, 35, 0.16);
}

.journey-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.journey-marker {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	background: var(--dark-slate);
	border: 2px solid var(--electric-lime);
	border-radius: 999px;
	margin-bottom: 0.5rem;
}

.journey-marker span {
	color: var(--electric-lime);
	font-size: 0.78rem;
	font-weight: 900;
}

.journey-marker.finish-marker {
	background: var(--electric-lime);
	border-color: var(--electric-lime);
}

.journey-marker.finish-marker i,
.journey-marker.finish-marker svg {
	width: 16px;
	height: 16px;
	color: var(--deep-black);
	stroke-width: 2.5;
}

.journey-stop h3 {
	font-size: 0.88rem;
	font-weight: 800;
	color: var(--dark-slate);
	margin-bottom: 0.25rem;
}

.journey-stop p {
	font-size: 0.78rem;
	line-height: 1.5;
	margin-bottom: 0;
	max-width: 200px;
}

.journey-stop .step-tag {
	font-size: 0.7rem;
	padding: 0.2rem 0.6rem;
	margin-top: 0.4rem;
}

/* Horizontal connectors */
.journey-connector-h {
	align-self: center;
	height: 4px;
	width: 100%;
	background: var(--electric-lime);
	border-radius: 4px;
	margin-top: -60px;
}

.turn-right {
	margin-left: auto;
	margin-right: 60px;
}

.turn-left {
	margin-left: 60px;
}

/* Finish */
.finish-stop {
	padding-bottom: 1rem;
}

.finish-img {
	border-color: var(--electric-lime);
}

.finish-stop h3 {
	color: var(--electric-lime);
	font-size: 1rem;
}

/* Mobile */
@media (max-width: 719px) {
	.journey-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.row-rtl {
		direction: ltr;
	}

	.journey-connector-h {
		width: 4px;
		height: 30px;
		margin: 0 auto;
		margin-top: 0;
	}

	.journey-connector-turn {
		margin: 0 auto;
	}

	.turn-right,
	.turn-left {
		margin-left: auto;
		margin-right: auto;
	}

	.journey-stop {
		padding: 0.5rem;
	}
}

.driver-paths {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 4rem 0;
}

.driver-paths .section-heading p:last-child {
  max-width: 520px;
  margin: 0 auto;
}

.path-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.path-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.1);
}

.path-card-v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
}

.path-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  background: var(--mid-slate);
  border-radius: 14px;
}

.path-icon i,
.path-icon svg {
  width: 24px;
  height: 24px;
  color: var(--electric-lime);
  stroke-width: 2.2;
}

.path-card-v2 h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--deep-black);
}

.path-card-v2 p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted-blue-gray);
  flex-grow: 1;
}

.path-detail {
  padding: 0;
  margin-bottom: 2rem;
}

.path-detail-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 28px;
}

.path-detail:nth-child(odd) .path-detail-inner {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.path-detail:nth-child(even) .path-detail-inner {
  background: var(--dark-slate);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 70px rgba(15, 25, 35, 0.18);
}

.path-detail + .path-detail {
	border-top: 1px solid var(--line);
}

.path-detail-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.path-detail-inner > .eyebrow {
  margin-bottom: 0.5rem;
}

.path-detail-inner > h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark-slate);
  margin-bottom: 0.75rem;
}

.path-detail-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dim-gray);
  margin-bottom: 2.5rem;
}



.step-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--electric-lime);
  background: rgba(168, 230, 61, 0.1);
  border-radius: 999px;
  width: fit-content;
}

.path-cta {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.path-cta p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--dim-gray);
}

/* =============================================
   NEW SECTIONS - About, Packages, Policies, Footer
   ============================================= */

/* Package includes list */
.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: grid;
  gap: 0.45rem;
}

.package-includes li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dim-gray);
  line-height: 1.45;
}

.package-card.featured .package-includes li {
  color: var(--muted-blue-gray);
}

.package-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--electric-lime);
  font-weight: 900;
  font-size: 0.85rem;
}

.about-content {
	display: grid;
	gap: 2.5rem;
	align-items: start;
	margin-top: 1rem;
}

.about-story p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--dim-gray);
	margin-bottom: 1.25rem;
}

.about-details {
  display: grid;
  gap: 1rem;
}

.about-detail-item {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 25, 35, 0.05);
}

.about-detail-item h3 {
  margin-bottom: 0.4rem;
  color: var(--dark-slate);
  font-size: 1.1rem;
}

.about-detail-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-image {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 400px;
}

@media (min-width: 820px) {
	.about-content {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

@media (max-width: 819px) {
	.about-image img {
		min-height: 280px;
	}
}

/* @media (min-width: 720px) {
  .about-details {
    grid-template-columns: repeat(3, 1fr);
  }
} */

/* Policies section */
.policies-section {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 4rem 0;
}

.policies-grid {
  display: grid;
  gap: 1rem;
}

.policy-card {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 25, 35, 0.05);
}

.policy-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-slate);
  font-size: 1.05rem;
}

.policy-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (min-width: 720px) {
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer bottom bar */
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-blue-gray);
}

/* Carousel */
.carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.carousel-track-container {
	overflow: hidden;
	width: 100%;
	border-radius: var(--radius);
}

.carousel-track {
	display: flex;
	gap: 1rem;
	transition: transform 360ms ease;
}

.carousel-card {
	flex: 0 0 calc(33.333% - 0.67rem);
	min-width: 0;
}

.carousel-arrow {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	cursor: pointer;
	color: var(--dark-slate);
	box-shadow: 0 8px 24px rgba(15, 25, 35, 0.08);
	transition: background 160ms ease, border-color 160ms ease;
}

.carousel-arrow:hover {
	border-color: var(--electric-lime);
	color: var(--electric-lime);
}

.carousel-arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

.carousel-arrow:disabled:hover {
	border-color: var(--line);
	color: var(--dark-slate);
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--line);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 200ms ease, width 200ms ease;
}

.carousel-dot.active {
	width: 28px;
	background: var(--electric-lime);
}

/* Strikethrough price */
.price-strike {
	margin: 0;
	color: var(--muted-blue-gray);
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: line-through;
	line-height: 1;
}

.package-card.featured .price-strike {
	color: rgba(148, 163, 184, 0.6);
}

/* Package includes list */
.package-includes {
	list-style: none;
	padding: 0;
	margin: 0 0 0.5rem;
	display: grid;
	gap: 0.45rem;
}

.package-includes li {
	position: relative;
	padding-left: 1.25rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--dim-gray);
	line-height: 1.45;
}

.package-card.featured .package-includes li {
	color: var(--muted-blue-gray);
}

.package-includes li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: var(--electric-lime);
	font-weight: 900;
	font-size: 0.85rem;
}

@media (max-width: 899px) {
	.carousel-card {
		flex: 0 0 calc(50% - 0.5rem);
	}
}

@media (max-width: 560px) {
	.carousel-card {
		flex: 0 0 100%;
	}

	.carousel-arrow {
		display: none;
	}
}

/* ============================================
   SECTION BACKGROUND RHYTHM + CARDS + BUTTONS
   white -> navy-dark -> light-gray -> dim-gray
   ============================================ */

/* Contained section block style */
.driver-paths,
.drivers-ed-section,
#path-teen,
#path-adult,
#path-senior,
#path-defensive,
#path-confidence,
#path-roadtest,
.packages-section,
.service-area,
.pickup-section,
.faq-section,
.about-section {
	width: min(100% - 2rem, var(--max-width));
	max-width: var(--max-width);
	margin-inline: auto;
	margin-bottom: 1.5rem;
	border-radius: 28px;
	padding: 3rem 2.5rem;
}

.section + .section {
	margin-top: 1.5rem;
}

.trust-benefits {
	margin-bottom: 1.5rem;
}


/* 1. YOUR JOURNEY - WHITE */
.driver-paths {
	background: var(--white);
}

.driver-paths .path-card-v2 {
	background: var(--dim-gray);
	border-color: transparent;
}

.driver-paths .path-card-v2 h3 {
	color: var(--off-white);
}

.driver-paths .path-card-v2 p {
	color: rgba(255, 255, 255, 0.7);
}

.driver-paths .path-icon {
	background: var(--deep-black);
}

.driver-paths .path-card-link:hover {
	box-shadow: 0 12px 32px rgba(100, 116, 139, 0.3);
}


/* 2. DRIVER'S ED - NAVY-DARK */
.drivers-ed-section {
	background: var(--deep-black);
}

.drivers-ed-section h2 {
	color: var(--off-white);
}

.drivers-ed-section .de-intro {
	color: var(--muted-blue-gray);
}

.drivers-ed-section .de-detail {
	background: var(--dim-gray);
	border-color: transparent;
}

.drivers-ed-section .de-detail strong {
	color: var(--off-white);
}

.drivers-ed-section .de-detail p {
	color: rgba(255, 255, 255, 0.7);
}

.drivers-ed-section .de-detail:hover {
	border-color: var(--electric-lime);
}

.drivers-ed-section .de-cta-note {
	color: var(--muted-blue-gray);
}


/* 3. TEEN JOURNEY - LIGHT GRAY */
#path-teen {
	background: var(--light-gray);
}

#path-teen .journey-header h2 {
	color: var(--deep-black);
}

#path-teen .journey-header p {
	color: var(--dim-gray);
}

#path-teen .journey-stop h3 {
	color: var(--deep-black);
}

#path-teen .journey-stop p {
	color: var(--dim-gray);
}

#path-teen .finish-stop h3 {
	color: var(--electric-lime);
}

#path-teen .journey-marker {
	background: var(--deep-black);
}

#path-teen .step-tag {
	background: rgba(168, 230, 61, 0.1);
	color: var(--electric-lime);
}

#path-teen .path-cta {
	background: var(--dim-gray);
	border-color: transparent;
}

#path-teen .path-cta p {
	color: rgba(255, 255, 255, 0.7);
}


/* 4. FOR PARENTS - WHITE */
#path-teen .parent-section {
	background: var(--white);
	border-radius: 18px;
	margin: 2rem -2.5rem;
	padding: 3rem 2.5rem;
	width: calc(100% + 5rem);
}

#path-teen .parent-section .section-heading h2 {
	color: var(--deep-black);
}

#path-teen .parent-section .section-heading p {
	color: var(--dim-gray);
}

#path-teen .parent-points div {
	background: var(--dim-gray);
	border-color: transparent;
}

#path-teen .parent-points div:hover {
	border-color: var(--electric-lime);
}

#path-teen .parent-points h3 {
	color: var(--off-white);
}

#path-teen .parent-points p {
	color: rgba(255, 255, 255, 0.7);
}

#path-teen .parent-visual {
	background: var(--deep-black);
}


/* 5. ADULT JOURNEY - NAVY-DARK */
#path-adult {
	background: var(--dark-slate);
}

#path-adult .journey-header h2,
#path-adult .journey-stop h3,
#path-adult .finish-stop h3 {
	color: var(--off-white);
}

#path-adult .journey-header p,
#path-adult .journey-stop p {
	color: var(--muted-blue-gray);
}

#path-adult .journey-img {
	border-color: rgba(148, 163, 184, 0.25);
}

#path-adult .journey-marker {
	background: var(--deep-black);
}

#path-adult .step-tag {
	background: rgba(168, 230, 61, 0.15);
}

#path-adult .path-cta {
	background: var(--dim-gray);
	border-color: transparent;
}

#path-adult .path-cta p {
	color: rgba(255, 255, 255, 0.7);
}


/* 6. SENIOR JOURNEY - LIGHT GRAY */
#path-senior {
	background: var(--dark-slate);
}

#path-senior .journey-header h2,
#path-senior .journey-stop h3 {
	color: var(--off-white);
}

#path-senior .journey-header p,
#path-senior .journey-stop p {
	color: var(--muted-blue-gray);
}

#path-senior .finish-stop h3 {
	color: var(--off-white);
}

#path-senior .journey-marker {
	background: var(--deep-black);
}

#path-senior .step-tag {
	background: rgba(168, 230, 61, 0.1);
}

#path-senior .path-cta {
	margin-top: 2.25rem;
	padding: 0;
	background: transparent;
	border: 0;
	border-color: transparent;
}

#path-senior .path-cta p {
	display: none;
}


/* 7. DEFENSIVE DRIVING - DIM GRAY */
#path-defensive {
	background: var(--dim-gray);
}

#path-defensive .journey-header h2,
#path-defensive .journey-stop h3,
#path-defensive .finish-stop h3 {
	color: var(--off-white);
}

#path-defensive .journey-header p,
#path-defensive .journey-stop p {
	color: rgba(255, 255, 255, 0.7);
}

#path-defensive .journey-img-icon {
	background: var(--deep-black);
	border-color: transparent;
}

#path-defensive .journey-img-icon i,
#path-defensive .journey-img-icon svg {
	color: var(--electric-lime);
}

#path-defensive .journey-marker {
	background: var(--dim-gray);
}

#path-defensive .step-tag {
	background: rgba(168, 230, 61, 0.15);
}

#path-defensive .path-cta {
	background: var(--deep-black);
	border-color: transparent;
}

#path-defensive .path-cta p {
	color: var(--muted-blue-gray);
}


/* 8. CONFIDENCE REFRESHER - WHITE */
#path-confidence {
	background: var(--white);
}

#path-confidence .journey-img-icon {
	background: var(--dim-gray);
	border-color: transparent;
}

#path-confidence .journey-img-icon i,
#path-confidence .journey-img-icon svg {
	color: var(--electric-lime);
}

#path-confidence .path-cta {
	background: var(--dim-gray);
	border-color: transparent;
}

#path-confidence .path-cta p {
	color: rgba(255, 255, 255, 0.7);
}


/* 9. ROAD TEST PREP - NAVY-DARK */
#path-roadtest {
	background: var(--dark-slate);
}

#path-roadtest .journey-header h2,
#path-roadtest .journey-stop h3,
#path-roadtest .finish-stop h3 {
	color: var(--off-white);
}

#path-roadtest .journey-header p,
#path-roadtest .journey-stop p {
	color: var(--muted-blue-gray);
}

#path-roadtest .journey-img {
	border-color: rgba(148, 163, 184, 0.25);
}

#path-roadtest .journey-marker {
	background: var(--deep-black);
}

#path-roadtest .step-tag {
	background: rgba(168, 230, 61, 0.15);
}

#path-roadtest .path-cta {
	margin-top: 2.25rem;
	padding: 0;
	background: transparent;
	border: 0;
	border-color: transparent;
}

#path-roadtest .path-cta p {
	display: none;
}


/* 10. PACKAGES - LIGHT GRAY */
.packages-section {
	background: var(--light-gray);
}

.packages-section .package-card:not(.featured) {
	background: var(--dim-gray);
	border-color: transparent;
	color: var(--off-white);
}

.packages-section .package-card:not(.featured) h3 {
	color: var(--off-white);
}

.packages-section .package-card:not(.featured) p {
	color: rgba(255, 255, 255, 0.7);
}

.packages-section .package-card:not(.featured) .price {
	color: var(--off-white);
}

.packages-section .package-card:not(.featured) .price-strike {
	color: rgba(255, 255, 255, 0.4);
}

.packages-section .package-card:not(.featured) .package-includes li {
	color: rgba(255, 255, 255, 0.7);
}

.packages-section .package-card:not(.featured) .button-outline {
	color: var(--off-white);
	border-color: rgba(255, 255, 255, 0.2);
}

.packages-section .package-card:not(.featured) .button-outline:hover {
	border-color: var(--electric-lime);
	color: var(--electric-lime);
}

.packages-section .carousel-arrow {
	background: var(--dim-gray);
	border-color: transparent;
	color: var(--off-white);
}

.packages-section .carousel-arrow:hover {
	border-color: var(--electric-lime);
	color: var(--electric-lime);
}


/* 13. PICKUP - LIGHT GRAY */
.pickup-section {
	background: var(--light-gray);
}

.pickup-section h2,
.pickup-section h3 {
	color: var(--deep-black);
}

.pickup-section p {
	color: var(--dim-gray);
}

.pickup-section .eyebrow {
	color: var(--electric-lime);
}

.pickup-grid div {
	background: var(--dim-gray);
	border-color: transparent;
}

.pickup-grid div i,
.pickup-grid div svg {
	color: var(--electric-lime);
}

.pickup-grid div h3 {
	color: var(--off-white);
}

.pickup-grid div p {
	color: rgba(255, 255, 255, 0.7);
}


/* 14. FAQ - DIM GRAY */
.faq-section {
	background: var(--deep-black);
	border-radius: 28px;
}

.faq-section .section-heading .eyebrow {
	color: var(--electric-lime);
}

.faq-section .section-heading h2 {
	color: var(--off-white);
}

.faq-section .section-heading p {
	color: var(--muted-blue-gray);
}

.faq-section details {
	position: relative;
	overflow: hidden;
	background: var(--dark-slate);
	border-color: rgba(148, 163, 184, 0.18);
	box-shadow: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.faq-section details::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: var(--electric-lime);
	opacity: 0;
	transition: opacity 180ms ease;
}

.faq-section details:hover,
.faq-section details[open] {
	border-color: rgba(168, 230, 61, 0.55);
}

.faq-section details:hover::before,
.faq-section details[open]::before {
	opacity: 1;
}

.faq-section details summary {
	color: var(--off-white);
}

.faq-section details p {
	color: var(--muted-blue-gray);
}


/* 15. ABOUT - WHITE */
.about-section {
	background: var(--white);
}

.about-section .section-heading h2 {
	color: var(--deep-black);
}

.about-section .eyebrow {
	color: var(--electric-lime);
}

.about-section .about-story p {
	color: var(--dim-gray);
}


/* DRIVER'S ED PAGE */
.de-page {
				width: min(100% - 2rem, var(--max-width));
				margin: 0 auto;
				padding: 3rem 0 5rem;
			}

			.de-hero {
				display: grid;
				gap: 2.5rem;
				align-items: center;
				margin-bottom: 3rem;
			}

			@media (min-width: 820px) {
				.de-hero {
					grid-template-columns: 1.1fr 0.9fr;
				}
			}

			.de-hero h1 {
				font-size: clamp(2.2rem, 4.5vw, 3.5rem);
				margin-bottom: 1rem;
			}

			.de-hero-lead {
				font-size: 1.1rem;
				line-height: 1.7;
				margin-bottom: 1.5rem;
			}

			.de-hero-image {
				border-radius: 28px;
				overflow: hidden;
				box-shadow: var(--shadow);
			}

			.de-hero-image img {
				width: 100%;
				height: 380px;
				object-fit: cover;
			}

			.de-price-badge {
				display: inline-flex;
				align-items: center;
				gap: 0.75rem;
				padding: 0.75rem 1.25rem;
				background: var(--deep-black);
				border-radius: 999px;
				margin-bottom: 1.5rem;
			}

			.de-price-badge .price-amount {
				color: var(--electric-lime);
				font-size: 1.5rem;
				font-weight: 950;
			}

			.de-price-badge .price-label {
				color: var(--off-white);
				font-size: 0.88rem;
				font-weight: 700;
			}

			.de-actions {
				display: flex;
				flex-wrap: wrap;
				gap: 0.75rem;
			}

			.de-section {
				margin-bottom: 3rem;
			}

			.de-section h2 {
				font-size: clamp(1.6rem, 3vw, 2.2rem);
				margin-bottom: 1rem;
			}

			.de-section p {
				font-size: 1.05rem;
				line-height: 1.75;
			}

			.de-why-section {
				align-items: stretch;
			}

			.de-parent-callout {
				position: relative;
				overflow: hidden;
				padding: 1.6rem;
				background: var(--dark-slate);
				border: 1px solid rgba(168, 230, 61, 0.28);
				border-radius: 24px;
				box-shadow: 0 20px 48px rgba(15, 25, 35, 0.14);
			}

			.de-parent-callout::before {
				content: "";
				position: absolute;
				inset: 0 auto 0 0;
				width: 5px;
				background: var(--electric-lime);
			}

			.de-callout-icon {
				display: grid;
				place-items: center;
				width: 46px;
				height: 46px;
				margin-bottom: 1rem;
				color: var(--electric-lime);
				background: rgba(168, 230, 61, 0.12);
				border: 1px solid rgba(168, 230, 61, 0.36);
				border-radius: 16px;
			}

			.de-callout-icon svg {
				width: 23px;
				height: 23px;
				stroke-width: 2.3;
			}

			.de-callout-label {
				margin-bottom: 0.4rem;
				color: var(--electric-lime);
				font-size: 0.78rem;
				font-weight: 950;
				letter-spacing: 0.08em;
				line-height: 1.2;
				text-transform: uppercase;
			}

			.de-parent-callout h3 {
				margin-bottom: 0.7rem;
				color: var(--off-white);
				font-size: clamp(1.25rem, 2vw, 1.55rem);
			}

			.de-parent-callout p:not(.de-callout-label) {
				color: var(--muted-blue-gray);
				font-size: 0.98rem;
				line-height: 1.65;
			}

			.de-mini-flow {
				display: grid;
				gap: 0.7rem;
				margin-top: 1.25rem;
			}

			.de-mini-flow div {
				display: flex;
				align-items: center;
				gap: 0.75rem;
				padding: 0.8rem 0.85rem;
				background: var(--mid-slate);
				border: 1px solid rgba(148, 163, 184, 0.18);
				border-radius: 16px;
			}

			.de-mini-flow span {
				display: grid;
				flex: 0 0 auto;
				place-items: center;
				width: 28px;
				height: 28px;
				color: var(--deep-black);
				background: var(--electric-lime);
				border-radius: 999px;
				font-size: 0.82rem;
				font-weight: 950;
				line-height: 1;
			}

			.de-mini-flow strong {
				color: var(--off-white);
				font-size: 0.92rem;
				line-height: 1.25;
			}

			/* How it works steps */
			.de-steps {
				display: grid;
				gap: 1rem;
				margin-top: 1.5rem;
			}

			@media (min-width: 720px) {
				.de-steps {
					grid-template-columns: repeat(2, 1fr);
				}
			}

			@media (min-width: 1020px) {
				.de-steps {
					grid-template-columns: repeat(4, 1fr);
				}
			}

			.de-step {
				padding: 1.5rem;
				background: var(--deep-black);
				border-radius: 18px;
				transition: transform 200ms ease;
			}

			.de-step:hover {
				transform: translateY(-2px);
			}

			.de-step-num {
				display: grid;
				place-items: center;
				width: 36px;
				height: 36px;
				background: var(--electric-lime);
				color: var(--deep-black);
				border-radius: 10px;
				font-weight: 900;
				font-size: 0.9rem;
				margin-bottom: 1rem;
			}

			.de-step h3 {
				color: var(--off-white);
				font-size: 1.05rem;
				margin-bottom: 0.4rem;
			}

			.de-step p {
				color: var(--muted-blue-gray);
				font-size: 0.9rem;
				line-height: 1.6;
				margin-bottom: 0;
			}

			/* What's covered */
			.de-topics {
				display: grid;
				grid-template-columns: repeat(3, minmax(0, 1fr));
				gap: 0.75rem;
				margin-top: 1.5rem;
			}

			@media (max-width: 899px) {
				.de-topics {
					grid-template-columns: repeat(2, 1fr);
				}
			}

			@media (max-width: 560px) {
				.de-topics {
					grid-template-columns: 1fr;
				}
			}

			.de-topic {
				display: flex;
				align-items: center;
				gap: 0.75rem;
				min-height: 54px;
				padding: 0.8rem 1rem;
				background: var(--off-white);
				border: 1px solid rgba(148, 163, 184, 0.18);
				border-radius: 999px;
				font-weight: 700;
				font-size: 0.95rem;
				color: var(--deep-black);
			}

			.de-topic i,
			.de-topic svg {
				width: 20px;
				height: 20px;
				color: var(--electric-lime);
				stroke-width: 2.4;
				flex: 0 0 20px;
			}

			/* Login card */
			.de-login-card {
				display: grid;
				gap: 2rem;
				align-items: center;
				padding: 2.5rem;
				background: var(--deep-black);
				border-radius: 28px;
				margin-top: 3rem;
				text-align: center;
			}

			@media (min-width: 720px) {
				.de-login-card {
					grid-template-columns: 1fr auto;
					text-align: left;
				}
			}

			.de-login-card h2 {
				color: var(--off-white);
				margin-bottom: 0.5rem;
				font-size: clamp(1.4rem, 2.5vw, 1.8rem);
			}

			.de-login-card p {
				color: var(--muted-blue-gray);
				margin-bottom: 0;
			}

			/* FAQ */
			.de-faq {
				margin-top: 1.5rem;
			}

			.de-faq details {
				margin-bottom: 0.6rem;
			}

			/* Bundle callout */
			.de-bundle {
				padding: clamp(1.25rem, 3vw, 2rem);
				background: var(--off-white);
				border: 1px solid rgba(148, 163, 184, 0.18);
				border-radius: 28px;
				margin-top: 2rem;
				box-shadow: 0 24px 60px rgba(15, 25, 35, 0.08);
			}

			.de-bundle-header {
				max-width: 780px;
				margin-bottom: 1.5rem;
				text-align: center;
				margin-inline: auto;
			}

			.de-bundle-header h2 {
				color: var(--deep-black);
				margin-bottom: 0.75rem;
			}

			.de-bundle-header p {
				color: var(--dim-gray);
				margin-bottom: 1rem;
				font-size: 1rem;
				line-height: 1.65;
			}

			.de-bundle-header .de-bundle-requirement {
				display: inline-flex;
				max-width: 720px;
				padding: 0.8rem 1rem;
				color: var(--deep-black);
				background: rgba(168, 230, 61, 0.14);
				border: 1px solid rgba(168, 230, 61, 0.38);
				border-radius: 16px;
				font-weight: 800;
			}

			.de-bundle-grid {
				display: grid;
				gap: 1rem;
				align-items: stretch;
			}

			@media (min-width: 920px) {
				.de-bundle-grid {
					grid-template-columns: repeat(3, minmax(0, 1fr));
					align-items: stretch;
				}
			}

			.de-bundle-card {
				position: relative;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				gap: 0.75rem;
				min-height: 100%;
				height: 100%;
				padding: 1.25rem;
				color: var(--deep-black);
				background: var(--off-white);
				border: 1px solid rgba(148, 163, 184, 0.2);
				border-radius: 22px;
				box-shadow: 0 12px 28px rgba(15, 25, 35, 0.055);
				transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
			}

			.de-bundle-card:hover {
				transform: translateY(-3px);
				border-color: rgba(168, 230, 61, 0.62);
				box-shadow: 0 16px 36px rgba(15, 25, 35, 0.09);
			}

			.de-bundle-basic {
				border-top: 4px solid var(--electric-lime);
			}

			.de-bundle-card h3 {
				color: inherit;
				font-size: 1.15rem;
				margin-bottom: 0;
			}

			.de-bundle-card p {
				color: var(--dim-gray);
				font-size: 0.92rem;
				line-height: 1.5;
				margin-bottom: 0;
			}

			.de-bundle-card ul {
				display: grid;
				gap: 0.45rem;
				margin: 0;
				padding: 0;
				list-style: none;
			}

			.de-bundle-card li {
				position: relative;
				padding-left: 1.35rem;
				color: var(--dim-gray);
				font-size: 0.9rem;
				line-height: 1.38;
			}

			.de-bundle-card li::before {
				content: "";
				position: absolute;
				left: 0;
				top: 0.42rem;
				width: 0.5rem;
				height: 0.5rem;
				background: var(--electric-lime);
				border-radius: 999px;
			}

			.de-bundle-card .button {
				width: 100%;
				margin-top: auto;
				color: var(--deep-black) !important;
				background: var(--electric-lime);
				min-height: 46px;
			}

			.de-bundle-card .button:hover {
				background: var(--lime-hover);
			}

			.de-bundle-card .price {
				color: inherit;
				font-size: clamp(1.95rem, 3.2vw, 2.5rem);
			}

			.de-bundle-card .price-original {
				color: var(--muted-blue-gray);
				font-size: 1rem;
			}

			.de-card-badge {
				width: fit-content;
				padding: 0.34rem 0.55rem;
				color: var(--deep-black);
				background: var(--electric-lime);
				border-radius: 999px;
				font-size: 0.72rem;
				font-weight: 950;
				line-height: 1;
				letter-spacing: 0.08em;
				text-transform: uppercase;
			}

			.de-bundle-recommended,
			.de-bundle-value {
				color: var(--off-white);
				background: var(--dark-slate);
				border-color: rgba(168, 230, 61, 0.34);
			}

			.de-bundle-recommended {
				box-shadow: 0 14px 34px rgba(15, 25, 35, 0.12);
			}

			.de-bundle-recommended p,
			.de-bundle-value p,
			.de-bundle-recommended li,
			.de-bundle-value li {
				color: var(--muted-blue-gray);
			}

			.de-bundle-card .de-savings-note {
				display: inline-flex;
				align-items: center;
				width: fit-content;
				max-width: 100%;
				padding: 0.52rem 0.72rem;
				color: var(--deep-black);
				background: rgba(168, 230, 61, 0.12);
				border: 1px solid rgba(168, 230, 61, 0.28);
				border-radius: 999px;
				font-size: 0.85rem;
				font-weight: 800;
				line-height: 1.35;
			}

			.de-bundle-recommended .de-savings-note,
			.de-bundle-value .de-savings-note {
				color: var(--off-white);
			}

      /* CHATBOT */
.roadvia-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 56px;
  min-width: 56px;
  height: 56px;
  padding: 0;
  color: var(--deep-black);
  background: var(--electric-lime);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 25, 35, 0.28);
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition:
    width 220ms ease,
    min-width 220ms ease,
    padding 220ms ease,
    gap 220ms ease,
    background 160ms ease,
    color 160ms ease;
}

.chat-launcher svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  stroke-width: 2.6;
}

.chat-launcher span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition:
    max-width 220ms ease,
    opacity 160ms ease;
}

/* expand on hover/focus/open/bottom */
.chat-launcher:hover,
.chat-launcher:focus-visible,
.roadvia-chat.open .chat-launcher,
.roadvia-chat.near-bottom .chat-launcher {
  width: 245px;
  min-width: 245px;
  padding: 0 1.15rem;
  gap: 0.55rem;
}

.chat-launcher:hover span,
.chat-launcher:focus-visible span,
.roadvia-chat.open .chat-launcher span,
.roadvia-chat.near-bottom .chat-launcher span {
  max-width: 190px;
  opacity: 1;
}

.roadvia-chat.open .chat-launcher {
  color: var(--off-white);
  background: var(--deep-black);
}

.roadvia-chat.open .chat-launcher svg {
  color: var(--electric-lime);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  width: min(390px, calc(100vw - 2rem));
  max-height: 0;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(15, 25, 35, 0.32);

  opacity: 0;
  transform: translateY(18px);
  transform-origin: bottom right;
  pointer-events: none;
  visibility: hidden;

  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    transform 220ms ease,
    visibility 0ms linear 260ms;
}

.roadvia-chat.open .chat-panel {
  max-height: 620px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;

  transition:
    max-height 300ms ease,
    opacity 180ms ease,
    transform 220ms ease,
    visibility 0ms;
}

.roadvia-chat.open .chat-launcher {
  background: var(--deep-black);
  color: var(--off-white);
}

.roadvia-chat.open .chat-launcher svg {
  color: var(--electric-lime);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--deep-black);
}

.chat-header p {
  margin: 0;
  color: var(--off-white);
  font-size: 1rem;
  font-weight: 950;
}

.chat-header span {
  display: block;
  color: var(--muted-blue-gray);
  font-size: 0.78rem;
  font-weight: 700;
}

.chat-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  cursor: pointer;
}

.chat-close svg {
  width: 18px;
  height: 18px;
}

.chat-body {
  max-height: 430px;
  padding: 1rem;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 0.85rem;
}

.chat-message p {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-message.bot p {
  color: var(--deep-black);
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.chat-message.user {
  display: flex;
  justify-content: flex-end;
}

.chat-message.user p {
  color: var(--deep-black);
  background: var(--electric-lime);
  font-weight: 850;
}

.chat-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.chat-options button,
.chat-action {
  min-height: 42px;
  padding: 0.65rem 0.7rem;
  color: var(--deep-black);
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.chat-options button:hover,
.chat-action:hover {
  border-color: var(--electric-lime);
}

.chat-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.9rem 1rem 1rem;
  background: var(--white);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.chat-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 950;
}

.chat-footer a:first-child {
  color: var(--deep-black);
  background: var(--electric-lime);
}

.chat-footer a:last-child {
  color: var(--deep-black);
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

@media (max-width: 520px) {
  .roadvia-chat {
    right: 1rem;
    bottom: 1rem;
  }

  .chat-options {
    grid-template-columns: 1fr;
  }
}

/* Policy pages */
.policy-page {
  background: var(--light-gray);
  padding: 0;
}

.policy-hero {
  width: min(100% - 2rem, 900px);
  margin: 0 auto;
  padding: 4rem 0 1.5rem;
}

.policy-hero h1 {
  max-width: 850px;
  margin-bottom: 0.75rem;
  color: var(--deep-black);
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.policy-hero p:last-child {
  color: var(--dim-gray);
}

.policy-content {
  width: min(100% - 2rem, 900px);
  margin: 0 auto 5rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 25, 35, 0.08);
}

.policy-content h2 {
  margin: 2rem 0 0.75rem;
  color: var(--deep-black);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--dim-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.25rem;
}

.policy-content a {
  color: var(--deep-black);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--electric-lime);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .policy-hero {
    padding-top: 3rem;
  }

  .policy-content {
    padding: 1.15rem;
    border-radius: 22px;
  }
}

/* PRELAUNCH */
.prelaunch-banner {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--deep-black);
  background: var(--electric-lime);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 750;
  position: relative;
  z-index: 60;
}

.prelaunch-banner strong {
  font-weight: 950;
}

body:not(.prelaunch-active) .prelaunch-banner {
  display: none;
}

.home-hero,
.lessons-hero,
.packages-hero {
  min-height: auto;
}

.hero h1 em {
  color: var(--electric-lime);
  font-style: normal;
}

.path-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.path-card-link {
  display: block;
}

.split-section,
.lesson-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.split-section > img,
.lesson-detail > img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 25, 35, 0.12);
}

.step-list-card,
.info-card,
.visual-card,
.recommended-card {
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 25, 35, 0.08);
}

.step-list-card,
.info-card,
.visual-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.clean-steps {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clean-steps li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.clean-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.clean-steps strong {
  color: var(--deep-black);
}

.clean-steps span {
  color: var(--dim-gray);
}

.simple-flow {
  align-items: stretch;
}

.full-package-grid {
  align-items: stretch;
}

.full-package-grid .package-card {
  min-height: 100%;
}

.road-test-packages-section {
  padding-top: 0;
}

.package-finder {
  width: min(100% - 2rem, var(--max-width));
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--deep-black);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 25, 35, 0.14);
}

.package-finder .section-heading {
  max-width: 720px;
  margin-inline: auto;
}

.package-finder .section-heading .eyebrow {
  color: var(--electric-lime);
}

.package-finder .section-heading h2 {
  color: var(--off-white);
}

.package-finder .section-heading p {
  color: var(--muted-blue-gray);
}

.package-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.package-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.5;
  color: var(--electric-lime);
}

.finder-shell {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.finder-panel,
.finder-result {
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--dark-slate);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
}

.finder-step-label,
.finder-result-label {
  margin: 0 0 0.55rem;
  color: var(--electric-lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-panel h3,
.finder-result h3 {
  margin-bottom: 0.85rem;
  color: var(--off-white);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.finder-result p:not(.finder-result-label) {
  color: var(--muted-blue-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.finder-option {
  min-height: 58px;
  padding: 0.9rem 1rem;
  color: var(--off-white);
  background: var(--mid-slate);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.finder-option:hover,
.finder-option:focus-visible {
  transform: translateY(-2px);
  border-color: var(--electric-lime);
  background: var(--dark-slate);
  outline: none;
}

.finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.finder-cta,
.finder-start-over {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
}

.finder-cta.primary {
  color: var(--deep-black);
  background: var(--electric-lime);
}

.finder-cta.secondary,
.finder-start-over {
  color: var(--off-white);
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.32);
}

.finder-cta.primary:hover {
  background: var(--lime-hover);
}

.finder-cta.secondary:hover,
.finder-start-over:hover {
  color: var(--electric-lime);
  border-color: var(--electric-lime);
}

.finder-start-over {
  margin-top: 1rem;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 640px) {
  .finder-options {
    grid-template-columns: 1fr;
  }

  .finder-actions,
  .finder-cta,
  .finder-start-over {
    width: 100%;
  }
}

@media (min-width: 1020px) {
  .packages-section .full-package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .packages-section .road-test-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.packages-section .full-package-grid .package-card {
  color: var(--deep-black);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(15, 25, 35, 0.07);
}

.packages-section .full-package-grid .package-card.featured,
.packages-section .full-package-grid #teen-starter-bundle {
  color: var(--off-white);
  background: var(--dark-slate);
  border-color: rgba(168, 230, 61, 0.45);
  box-shadow: 0 20px 48px rgba(15, 25, 35, 0.16);
}

.packages-section .full-package-grid .package-card h3,
.packages-section .full-package-grid .package-card .price {
  color: var(--deep-black);
}

.packages-section .full-package-grid .package-card p {
  color: var(--dim-gray);
}

.packages-section .full-package-grid .package-card.featured h3,
.packages-section .full-package-grid .package-card.featured .price,
.packages-section .full-package-grid #teen-starter-bundle h3,
.packages-section .full-package-grid #teen-starter-bundle .price {
  color: var(--off-white);
}

.packages-section .full-package-grid .package-card.featured p,
.packages-section .full-package-grid .package-card.featured .package-includes li,
.packages-section .full-package-grid #teen-starter-bundle p,
.packages-section .full-package-grid #teen-starter-bundle .package-includes li {
  color: var(--muted-blue-gray);
}

.packages-section .full-package-grid .package-includes li {
  color: var(--dim-gray);
}

.packages-section .full-package-grid .package-card:not(.featured):not(#teen-starter-bundle) .package-includes li {
  color: var(--dim-gray);
}

.packages-section .full-package-grid .price-display {
  align-items: baseline;
  gap: 0.4rem 0.7rem;
  padding: 0.25rem 0 0.1rem;
}

.packages-section .full-package-grid .price {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  letter-spacing: 0;
}

.packages-section .full-package-grid .price-original {
  color: var(--muted-blue-gray);
  font-size: 1rem;
}

.packages-section .full-package-grid .badge {
  position: absolute;
  top: 0;
  right: 1.2rem;
  transform: translateY(-75%);
  color: var(--deep-black);
  background: var(--electric-lime);
  border: 1px solid rgba(168, 230, 61, 0.45);
  box-shadow: none;
}

.packages-section .full-package-grid .package-card.featured,
.packages-section .full-package-grid #teen-starter-bundle {
  padding-top: 1.75rem;
}

.packages-section .full-package-grid .button,
.packages-section .full-package-grid .button-outline,
.packages-section .full-package-grid .button-primary {
  color: var(--deep-black) !important;
  background: var(--electric-lime);
  border-color: var(--electric-lime);
}

.packages-section .full-package-grid .button:hover,
.packages-section .full-package-grid .button-outline:hover,
.packages-section .full-package-grid .button-primary:hover {
  color: var(--deep-black) !important;
  background: var(--lime-hover);
  border-color: var(--lime-hover);
}

.lesson-detail {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.lesson-detail.alternate {
  background: var(--deep-black);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.lesson-detail.alternate h2,
.lesson-detail.alternate h3,
.lesson-detail.alternate .recommended-card,
.visual-card h3 {
  color: var(--deep-black);
}

.lesson-detail.alternate .lesson-copy h2,
.lesson-detail.alternate .lesson-copy p:not(.eyebrow) {
  color: var(--off-white);
}

.lesson-detail.alternate .eyebrow {
  color: var(--electric-lime);
}

.recommended-card {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding: 0.9rem 1rem;
  color: var(--deep-black);
  font-weight: 750;
}

.visual-card {
  display: grid;
  gap: 0.65rem;
  min-height: 250px;
  align-content: center;
}

.visual-card svg {
  width: 42px;
  height: 42px;
  color: var(--electric-lime);
}

.de-hero.page-hero {
  align-items: center;
  margin-top: 0;
}

@media (max-width: 900px) {
  .split-section,
  .lesson-detail {
    grid-template-columns: 1fr;
  }

  .lesson-detail.alternate {
    border-radius: 0;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    align-items: stretch;
  }

  .path-card-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .recommended-card {
    display: grid;
  }
}

/* Teen driver journey page */
.teen-driver-hero {
  padding-top: 2rem;
}

.teen-journey-page {
  --teen-step-img: clamp(128px, 18vw, 175px);
  --teen-line: 4px;
  --teen-arrow: 9px;
  padding-bottom: 3rem;
}

.teen-journey-page .journey-header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.teen-journey-page .journey-road-map {
  position: relative;
}

.teen-journey-page .journey-row {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr);
  column-gap: 0;
}

.teen-journey-page .journey-stop {
  position: relative;
  z-index: 2;
  padding-inline: 0.9rem;
}

.teen-journey-page .journey-stop p {
  margin-bottom: 0.45rem;
}

.teen-journey-page .journey-connector-h {
  position: relative;
  align-self: start;
  min-width: 52px;
  height: var(--teen-line);
  margin-top: calc((var(--teen-step-img) / 2) - (var(--teen-line) / 2));
  background: var(--electric-lime);
  box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
}

.teen-journey-page .journey-connector-h::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
}

.teen-journey-page .row-ltr .journey-connector-h::after {
  right: calc(var(--teen-arrow) * -0.7);
  border-top: var(--teen-arrow) solid transparent;
  border-bottom: var(--teen-arrow) solid transparent;
  border-left: calc(var(--teen-arrow) * 1.15) solid var(--electric-lime);
}

.teen-journey-page .row-rtl .journey-connector-h::after {
  left: calc(var(--teen-arrow) * -0.7);
  border-top: var(--teen-arrow) solid transparent;
  border-bottom: var(--teen-arrow) solid transparent;
  border-right: calc(var(--teen-arrow) * 1.15) solid var(--electric-lime);
}

.teen-journey-page .journey-connector-turn {
  position: relative;
  display: block;
  height: clamp(4.25rem, 6vw, 6rem);
  background: transparent;
}

.teen-journey-page .journey-connector-turn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.teen-journey-page .turn-right {
  width: var(--teen-line);
  margin: 0 clamp(4.75rem, 9vw, 8.5rem) 0 auto;
  background: var(--electric-lime);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
}

.teen-journey-page .turn-right::after {
  left: 50%;
  bottom: calc(var(--teen-arrow) * -0.65);
  transform: translateX(-50%);
  border-left: var(--teen-arrow) solid transparent;
  border-right: var(--teen-arrow) solid transparent;
  border-top: calc(var(--teen-arrow) * 1.15) solid var(--electric-lime);
}

.teen-journey-page .turn-left {
  width: min(38%, 360px);
  margin: 0 0 0 clamp(4.75rem, 9vw, 8.5rem);
  border-left: var(--teen-line) solid var(--electric-lime);
  border-bottom: var(--teen-line) solid var(--electric-lime);
  border-radius: 0 0 0 24px;
  box-shadow: -6px 6px 0 rgba(168, 230, 61, 0.11);
}

.teen-journey-page .turn-left::after {
  right: calc(var(--teen-arrow) * -0.65);
  bottom: calc(var(--teen-arrow) * -0.7);
  border-top: var(--teen-arrow) solid transparent;
  border-bottom: var(--teen-arrow) solid transparent;
  border-left: calc(var(--teen-arrow) * 1.15) solid var(--electric-lime);
}

.teen-finish-row {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr);
}

.teen-finish-row .finish-stop {
  grid-column: 3;
  justify-self: center;
  width: min(100%, 240px);
  padding-inline: 0.9rem;
}

.teen-finish-row .finish-stop h3,
.teen-finish-row .finish-stop p {
  width: 100%;
  max-width: 220px;
}

.teen-journey-page .journey-marker.finish-marker {
  background: var(--dark-slate);
  border-color: var(--electric-lime);
}

.teen-journey-page .journey-marker.finish-marker i,
.teen-journey-page .journey-marker.finish-marker svg {
  color: var(--electric-lime);
}

.teen-package-section .package-card {
  min-height: 100%;
  padding-top: 1.8rem;
  overflow: visible;
}

.teen-package-section .badge {
  position: absolute;
  top: -15px;
  right: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: min(78%, 270px);
  padding: 0.35rem 0.75rem;
  color: var(--deep-black);
  background: var(--electric-lime);
  border: 1px solid rgba(168, 230, 61, 0.45);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 25, 35, 0.18);
  font-size: 0.68rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 1020px) {
  .teen-package-section .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.teen-journey-page .journey-img {
  position: relative;
  z-index: 3;
  width: var(--teen-step-img);
  height: auto;
  aspect-ratio: 1;
}

.teen-journey-page .journey-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teen-journey-page .teen-snake-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.teen-journey-page .teen-snake-track,
.teen-journey-page .teen-snake-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.teen-journey-page .teen-snake-track {
  stroke: rgba(168, 230, 61, 0.22);
  stroke-width: 7;
}

.teen-journey-page .teen-snake-progress {
  stroke: var(--electric-lime);
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(168, 230, 61, 0.45));
}

.teen-journey-page .teen-snake-arrow {
  fill: var(--electric-lime);
  filter: drop-shadow(0 2px 7px rgba(15, 25, 35, 0.22));
}

.teen-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
.teen-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
  visibility: hidden;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.teen-journey-page .journey-road-map.snake-svg-active .journey-connector-h::after,
.teen-journey-page .journey-road-map.snake-svg-active .journey-connector-turn::after {
  display: none;
}

#path-teen.teen-journey-page .parent-section {
  width: 100%;
  margin: 3rem 0 0;
}

#path-teen.teen-journey-page .parent-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

#path-teen.teen-journey-page .parent-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

#path-teen.teen-journey-page .parent-points div {
  position: relative;
  padding-left: 3.2rem;
  background: var(--dark-slate);
  border-color: rgba(148, 163, 184, 0.18);
}

#path-teen.teen-journey-page .parent-points h3 {
  color: var(--off-white);
}

#path-teen.teen-journey-page .parent-points p {
  color: var(--muted-blue-gray);
}

#path-teen.teen-journey-page .parent-points div::before {
  content: "\2713";
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--deep-black);
  background: var(--electric-lime);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
  line-height: 1;
}

@media (max-width: 900px) {
  .teen-journey-page .journey-img {
    width: 150px;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 719px) {
  .teen-journey-page .teen-snake-path {
    display: none;
  }

  .teen-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
  .teen-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
    visibility: visible;
  }

  .teen-journey-page .journey-row {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .teen-journey-page .row-rtl .journey-stop:nth-child(1) {
    order: 5;
  }

  .teen-journey-page .row-rtl .journey-connector-h:nth-child(2) {
    order: 4;
  }

  .teen-journey-page .row-rtl .journey-stop:nth-child(3) {
    order: 3;
  }

  .teen-journey-page .row-rtl .journey-connector-h:nth-child(4) {
    order: 2;
  }

  .teen-journey-page .row-rtl .journey-stop:nth-child(5) {
    order: 1;
  }

  .teen-journey-page .journey-connector-h {
    width: var(--teen-line);
    min-width: 0;
    height: 34px;
    margin: 0.1rem auto;
  }

  .teen-journey-page .journey-connector-turn {
    width: var(--teen-line);
    height: 34px;
    margin: 0.1rem auto;
    background: var(--electric-lime);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
  }

  .teen-journey-page .turn-right,
  .teen-journey-page .turn-left {
    width: var(--teen-line);
    margin: 0.1rem auto;
    background: var(--electric-lime);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
  }

  .teen-journey-page .row-ltr .journey-connector-h::after,
  .teen-journey-page .row-rtl .journey-connector-h::after,
  .teen-journey-page .turn-right::after,
  .teen-journey-page .turn-left::after {
    top: auto;
    right: auto;
    bottom: calc(var(--teen-arrow) * -0.65);
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    border-left: var(--teen-arrow) solid transparent;
    border-right: var(--teen-arrow) solid transparent;
    border-top: calc(var(--teen-arrow) * 1.15) solid var(--electric-lime);
  }

  .teen-journey-page .journey-stop {
    padding-block: 1rem;
  }

  #path-teen.teen-journey-page .parent-section {
    padding: 2rem 1rem;
  }

  .teen-finish-row {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .teen-finish-row .finish-stop {
    grid-column: 1;
  }
}

/* Adult lessons page */
.adult-lessons-hero {
  padding-top: 2rem;
}

.adult-options,
.senior-audience,
.road-test-options {
  padding-top: 3rem;
  background: var(--off-white);
}

.adult-options .section-heading h2,
.senior-audience .section-heading h2,
.road-test-options .section-heading h2 {
  color: var(--deep-black);
}

.adult-options .section-heading p:last-child,
.senior-audience .section-heading p:last-child,
.road-test-options .section-heading p:last-child {
  color: var(--dim-gray);
}

.adult-options :is(.path-card-link, .path-card-v2),
.driver-paths#journey :is(.path-card-link, .path-card-v2),
.senior-audience :is(.path-card-link, .path-card-v2),
.road-test-options :is(.path-card-link, .path-card-v2) {
  position: relative;
  min-height: 238px;
  padding: 1.45rem;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  animation: pathCardIn 520ms ease both;
}

.adult-options :is(.path-card-link, .path-card-v2)::after,
.driver-paths#journey :is(.path-card-link, .path-card-v2)::after,
.senior-audience :is(.path-card-link, .path-card-v2)::after,
.road-test-options :is(.path-card-link, .path-card-v2)::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0;
  height: 3px;
  background: var(--electric-lime);
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.adult-options :is(.path-card-link, .path-card-v2):hover,
.adult-options :is(.path-card-link, .path-card-v2):focus-visible,
.driver-paths#journey :is(.path-card-link, .path-card-v2):hover,
.driver-paths#journey :is(.path-card-link, .path-card-v2):focus-visible,
.senior-audience :is(.path-card-link, .path-card-v2):hover,
.senior-audience :is(.path-card-link, .path-card-v2):focus-visible,
.road-test-options :is(.path-card-link, .path-card-v2):hover,
.road-test-options :is(.path-card-link, .path-card-v2):focus-visible {
  transform: translateY(-5px);
  border-color: rgba(168, 230, 61, 0.85);
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.12);
}

.adult-options :is(.path-card-link, .path-card-v2):hover::after,
.adult-options :is(.path-card-link, .path-card-v2):focus-visible::after,
.driver-paths#journey :is(.path-card-link, .path-card-v2):hover::after,
.driver-paths#journey :is(.path-card-link, .path-card-v2):focus-visible::after,
.senior-audience :is(.path-card-link, .path-card-v2):hover::after,
.senior-audience :is(.path-card-link, .path-card-v2):focus-visible::after,
.road-test-options :is(.path-card-link, .path-card-v2):hover::after,
.road-test-options :is(.path-card-link, .path-card-v2):focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.adult-options .path-icon,
.driver-paths#journey .path-icon,
.senior-audience .path-icon,
.road-test-options .path-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  color: var(--electric-lime);
  background: rgba(168, 230, 61, 0.12);
  border: 1px solid rgba(168, 230, 61, 0.45);
  border-radius: 16px;
}

.adult-options .path-icon i,
.adult-options .path-icon svg,
.driver-paths#journey .path-icon i,
.driver-paths#journey .path-icon svg,
.senior-audience .path-icon i,
.senior-audience .path-icon svg,
.road-test-options .path-icon i,
.road-test-options .path-icon svg {
  width: 25px;
  height: 25px;
  color: var(--electric-lime);
  stroke-width: 2.1;
}

.adult-options .path-card-v2 h3,
.driver-paths#journey .path-card-v2 h3,
.senior-audience .path-card-v2 h3,
.road-test-options .path-card-v2 h3 {
  color: var(--deep-black);
  font-size: 1.14rem;
}

.adult-options .path-card-v2 p,
.driver-paths#journey .path-card-v2 p,
.senior-audience .path-card-v2 p,
.road-test-options .path-card-v2 p {
  color: var(--muted-blue-gray);
  font-size: 0.94rem;
  line-height: 1.6;
}

.adult-options .path-card-grid,
.driver-paths#journey .path-card-grid,
.road-test-options .path-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.adult-options :is(.path-card-link, .path-card-v2):nth-child(2),
.driver-paths#journey :is(.path-card-link, .path-card-v2):nth-child(2),
.road-test-options :is(.path-card-link, .path-card-v2):nth-child(2) {
  animation-delay: 60ms;
}

.adult-options :is(.path-card-link, .path-card-v2):nth-child(3),
.driver-paths#journey :is(.path-card-link, .path-card-v2):nth-child(3),
.road-test-options :is(.path-card-link, .path-card-v2):nth-child(3) {
  animation-delay: 120ms;
}

.adult-options-note {
  margin: 1.35rem auto 0;
  color: var(--dim-gray);
  font-weight: 700;
  text-align: center;
}

.adult-options-note a {
  color: var(--deep-black);
  text-decoration-color: var(--electric-lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.adult-options-note a:hover,
.adult-options-note a:focus-visible {
  color: var(--electric-lime);
}

@media (max-width: 900px) {
  .senior-audience .path-card-grid,
  .road-test-options .path-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .senior-journey-page .journey-img,
  .road-test-journey-page .journey-img {
    width: 150px;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 719px) {
  .senior-audience .path-card-grid,
  .road-test-options .path-card-grid {
    grid-template-columns: 1fr;
  }

  .senior-audience .path-card-v2,
  .road-test-options .path-card-link {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .adult-options .path-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .adult-options .path-card-grid {
    grid-template-columns: 1fr;
  }

  .adult-options .path-card-link {
    min-height: 0;
  }
}

.adult-journey-page {
  --adult-step-img: clamp(128px, 18vw, 175px);
  --adult-line: 4px;
  --adult-arrow: 9px;
  border-radius: 0;
}

.adult-journey-page .journey-header {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.adult-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding-block: 3rem;
}

.adult-feature-media {
  overflow: hidden;
  min-height: 340px;
  background: var(--dark-slate);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.1);
}

.adult-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.adult-feature-panel {
  display: grid;
  gap: 1rem;
}

.adult-feature-panel h2 {
  color: var(--deep-black);
}

.adult-feature-panel > p:not(.eyebrow) {
  color: var(--dim-gray);
  font-size: 1.04rem;
  line-height: 1.7;
}

.adult-focus-list {
  display: grid;
  gap: 0.75rem;
  margin: 0.35rem 0 0.25rem;
}

.adult-focus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  color: var(--deep-black);
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 25, 35, 0.055);
}

.adult-focus-item span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--deep-black);
  background: var(--electric-lime);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.adult-feature-panel .button {
  width: fit-content;
}

@media (min-width: 900px) {
  .adult-feature-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
  }

  .adult-feature-section.feature-reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.adult-journey-page .journey-road-map {
  position: relative;
}

.adult-journey-page .journey-row {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr);
  column-gap: 0;
}

.adult-journey-page .journey-stop {
  position: relative;
  z-index: 2;
  padding-inline: 0.9rem;
}

.adult-journey-page .journey-stop p {
  margin-bottom: 0.45rem;
}

.adult-journey-page .journey-img {
  position: relative;
  z-index: 3;
  width: var(--adult-step-img);
  height: auto;
  aspect-ratio: 1;
}

.adult-journey-page .journey-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adult-journey-page .journey-marker.finish-marker {
  background: var(--dark-slate);
  border-color: var(--electric-lime);
}

.adult-journey-page .journey-marker.finish-marker i,
.adult-journey-page .journey-marker.finish-marker svg {
  color: var(--electric-lime);
}

#path-adult.adult-journey-page .path-cta {
  margin-top: 2.25rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

#path-adult.adult-journey-page .path-cta .button {
  min-width: 180px;
}

.adult-journey-page .journey-connector-h {
  min-width: 52px;
  height: var(--adult-line);
  margin-top: calc((var(--adult-step-img) / 2) - (var(--adult-line) / 2));
}

.adult-journey-page .journey-connector-turn {
  display: block;
  height: clamp(4.25rem, 6vw, 6rem);
}

.adult-journey-page .teen-snake-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.adult-journey-page .teen-snake-track,
.adult-journey-page .teen-snake-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adult-journey-page .teen-snake-track {
  stroke: rgba(168, 230, 61, 0.2);
  stroke-width: 7;
}

.adult-journey-page .teen-snake-progress {
  stroke: var(--electric-lime);
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(168, 230, 61, 0.45));
}

.adult-journey-page .teen-snake-arrow {
  fill: var(--electric-lime);
  filter: drop-shadow(0 2px 7px rgba(15, 25, 35, 0.22));
}

.adult-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
.adult-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
  visibility: hidden;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.adult-journey-page .journey-road-map.snake-svg-active .journey-connector-h::after,
.adult-journey-page .journey-road-map.snake-svg-active .journey-connector-turn::after {
  display: none;
}

.journey-img-icon {
  display: grid;
  place-items: center;
}

.journey-img-icon i,
.journey-img-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.8;
}

.adult-finish-row {
  margin: 0 auto;
}

.adult-hidden-stop,
.adult-hidden-connector {
  visibility: hidden;
}

@media (max-width: 900px) {
  .adult-journey-page .journey-img {
    width: 150px;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 719px) {
  .adult-journey-page .teen-snake-path {
    display: none;
  }

  .adult-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
  .adult-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
    visibility: visible;
  }

  .adult-journey-page .journey-row {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .adult-journey-page .row-rtl .finish-stop:nth-child(1) {
    order: 5;
  }

  .adult-journey-page .row-rtl .journey-connector-h:nth-child(2) {
    order: 4;
  }

  .adult-journey-page .row-rtl .journey-stop:nth-child(3) {
    order: 3;
  }

  .adult-journey-page .row-rtl .journey-connector-h:nth-child(4) {
    order: 2;
  }

  .adult-journey-page .row-rtl .journey-stop:nth-child(5) {
    order: 1;
  }

  .adult-journey-page .journey-connector-h,
  .adult-journey-page .journey-connector-turn {
    width: var(--adult-line);
    min-width: 0;
    height: 34px;
    margin: 0.1rem auto;
    background: var(--electric-lime);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
  }

  .adult-journey-page .journey-stop {
    padding-block: 1rem;
  }

  .adult-hidden-stop,
  .adult-hidden-connector {
    display: none;
  }

  .adult-finish-row {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .adult-feature-media,
  .adult-feature-media img {
    min-height: 260px;
  }

  .adult-feature-panel .button {
    width: 100%;
  }
}

/* Senior refresher page */
.senior-refresher-hero {
  padding-top: 2rem;
}

.senior-audience .path-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.senior-journey-page {
  --senior-step-img: clamp(128px, 18vw, 175px);
  --senior-line: 4px;
  --senior-arrow: 9px;
  padding-top: 0;
}

.senior-journey-page #path-senior {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 28px;
}

.senior-journey-page .journey-header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.senior-finish-row {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr);
}

.senior-finish-row .finish-stop {
  grid-column: 3;
  justify-self: center;
  width: min(100%, 240px);
  padding-inline: 0.9rem;
}

.senior-finish-row .finish-stop h3,
.senior-finish-row .finish-stop p {
  width: 100%;
  max-width: 220px;
}

.senior-journey-page .journey-road-map {
  position: relative;
}

.senior-journey-page .journey-row {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr);
  column-gap: 0;
}

.senior-journey-page .journey-stop {
  position: relative;
  z-index: 2;
  padding-inline: 0.9rem;
}

.senior-journey-page .journey-stop p {
  margin-bottom: 0.45rem;
}

.senior-journey-page .journey-img {
  position: relative;
  z-index: 3;
  width: var(--senior-step-img);
  height: auto;
  aspect-ratio: 1;
}

.senior-journey-page .journey-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.senior-journey-page .journey-marker.finish-marker {
  background: var(--deep-black);
  border-color: var(--electric-lime);
}

.senior-journey-page .journey-marker.finish-marker i,
.senior-journey-page .journey-marker.finish-marker svg {
  color: var(--electric-lime);
}

.senior-journey-page .journey-connector-h {
  min-width: 52px;
  height: var(--senior-line);
  margin-top: calc((var(--senior-step-img) / 2) - (var(--senior-line) / 2));
}

.senior-journey-page .journey-connector-turn {
  display: block;
  height: clamp(4.25rem, 6vw, 6rem);
}

.senior-journey-page .teen-snake-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.senior-journey-page .teen-snake-track,
.senior-journey-page .teen-snake-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.senior-journey-page .teen-snake-track {
  stroke: rgba(168, 230, 61, 0.2);
  stroke-width: 7;
}

.senior-journey-page .teen-snake-progress {
  stroke: var(--electric-lime);
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(168, 230, 61, 0.45));
}

.senior-journey-page .teen-snake-arrow {
  fill: var(--electric-lime);
  filter: drop-shadow(0 2px 7px rgba(15, 25, 35, 0.22));
}

.senior-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
.senior-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
  visibility: hidden;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.senior-journey-page .journey-road-map.snake-svg-active .journey-connector-h::after,
.senior-journey-page .journey-road-map.snake-svg-active .journey-connector-turn::after {
  display: none;
}

@media (max-width: 719px) {
  .senior-journey-page #path-senior {
    margin-inline: -1rem;
    padding-inline: 1rem;
    border-radius: 0;
  }

  .senior-journey-page .teen-snake-path {
    display: none;
  }

  .senior-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
  .senior-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
    visibility: visible;
  }

  .senior-journey-page .journey-row {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .senior-journey-page .journey-connector-h,
  .senior-journey-page .journey-connector-turn {
    width: var(--senior-line);
    min-width: 0;
    height: 34px;
    margin: 0.1rem auto;
    background: var(--electric-lime);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
  }

  .senior-journey-page .journey-stop {
    padding-block: 1rem;
  }

  .senior-finish-row {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .senior-finish-row .finish-stop {
    grid-column: 1;
  }
}

/* Road test prep page */
.road-test-hero {
  padding-top: 2rem;
}

.road-test-journey-page {
  --road-test-step-img: clamp(128px, 18vw, 175px);
  --road-test-line: 4px;
  --road-test-arrow: 9px;
  padding-top: 0;
}

.road-test-journey-page #path-roadtest {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 28px;
}

.road-test-journey-page .journey-header {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.road-test-journey-page .journey-road-map {
  position: relative;
}

.road-test-journey-page .journey-row {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr)
    minmax(52px, 0.32fr)
    minmax(0, 1fr);
  column-gap: 0;
}

.road-test-journey-page .journey-stop {
  position: relative;
  z-index: 2;
  padding-inline: 0.9rem;
}

.road-test-journey-page .journey-stop p {
  margin-bottom: 0.45rem;
}

.road-test-journey-page .journey-img {
  position: relative;
  z-index: 3;
  width: var(--road-test-step-img);
  height: auto;
  aspect-ratio: 1;
}

.road-test-journey-page .journey-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.road-test-journey-page .journey-connector-h {
  min-width: 52px;
  height: var(--road-test-line);
  margin-top: calc((var(--road-test-step-img) / 2) - (var(--road-test-line) / 2));
}

.road-test-journey-page .journey-connector-turn {
  display: none;
}

.road-test-journey-page .teen-snake-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.road-test-journey-page .teen-snake-track,
.road-test-journey-page .teen-snake-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.road-test-journey-page .teen-snake-track {
  stroke: rgba(168, 230, 61, 0.2);
  stroke-width: 7;
}

.road-test-journey-page .teen-snake-progress {
  stroke: var(--electric-lime);
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(168, 230, 61, 0.45));
}

.road-test-journey-page .teen-snake-arrow {
  fill: var(--electric-lime);
  filter: drop-shadow(0 2px 7px rgba(15, 25, 35, 0.22));
}

.road-test-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
.road-test-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
  visibility: hidden;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.road-test-journey-page .journey-road-map.snake-svg-active .journey-connector-h::after,
.road-test-journey-page .journey-road-map.snake-svg-active .journey-connector-turn::after {
  display: none;
}

.clean-checklist {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clean-checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--dim-gray);
  font-weight: 750;
}

.clean-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--electric-lime);
  border-radius: 999px;
}

.failed-test-section .button {
  margin-top: 0.6rem;
}

@media (max-width: 719px) {
  .road-test-journey-page #path-roadtest {
    margin-inline: -1rem;
    padding-inline: 1rem;
    border-radius: 0;
  }

  .road-test-journey-page .teen-snake-path {
    display: none;
  }

  .road-test-journey-page .journey-road-map.snake-svg-active .journey-connector-h,
  .road-test-journey-page .journey-road-map.snake-svg-active .journey-connector-turn {
    visibility: visible;
  }

  .road-test-journey-page .journey-row {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .road-test-journey-page .journey-connector-h {
    width: var(--road-test-line);
    min-width: 0;
    height: 34px;
    margin: 0.1rem auto;
    background: var(--electric-lime);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(168, 230, 61, 0.11);
  }

  .road-test-journey-page .journey-stop {
    padding-block: 1rem;
  }
}

/* Homepage path picker refresh */
#journey.driver-paths {
  background: var(--off-white);
}

#journey .path-card-link:nth-child(4) {
  animation-delay: 180ms;
}

#journey .path-card-link:nth-child(5) {
  animation-delay: 240ms;
}

#journey .path-card-link:nth-child(6) {
  animation-delay: 300ms;
}

.path-grid-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1rem;
  margin: 2rem auto 0;
  padding: 1rem 1.15rem;
  width: min(100%, 680px);
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06);
}

.path-grid-cta p {
  margin: 0;
  color: var(--deep-black);
  font-weight: 850;
}

.path-grid-cta .button {
  min-height: 44px;
  padding: 0.75rem 1rem;
}

@keyframes pathCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #journey .path-card-link {
    animation: none;
  }
}

@media (max-width: 900px) {
  #journey .path-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  #journey .path-card-grid {
    grid-template-columns: 1fr;
  }

  #journey .path-card-link {
    min-height: 0;
  }

  .path-grid-cta {
    align-items: stretch;
    text-align: center;
  }
}

/* Homepage hero visual carousel */
.hero-visual-carousel {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark-slate);
}

.hero-visual-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(
    to top,
    rgba(15, 25, 35, 0.72),
    rgba(15, 25, 35, 0.28),
    transparent
  );
  pointer-events: none;
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-visual-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-visual-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 32px;
}

.hero-visual-carousel .hero-slide-caption {
  position: absolute;
  left: 1.5rem;
  right: auto;
  bottom: 1.5rem;
  z-index: 2;
  max-width: 70%;
  min-height: 0;
  padding: 0;
  color: var(--off-white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 3px 14px rgba(15, 25, 35, 0.95);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease;
}

.hero-visual-slide.active .hero-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.hero-visual-carousel .hero-slide-caption strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--off-white);
  font-size: 1.25rem;
  font-weight: 950;
  text-shadow: 0 3px 14px rgba(15, 25, 35, 0.95);
}

.hero-visual-carousel .hero-slide-caption span {
  display: block;
  color: var(--off-white);
  font-size: 0.99rem;
  line-height: 1.45;
  text-shadow: 0 3px 14px rgba(15, 25, 35, 0.95);
}

.hero-visual-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem;
  background: rgba(15, 25, 35, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-visual-dots button {
  width: 0.6rem;
  height: 0.6rem;
  padding: 0;
  background: var(--muted-blue-gray);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.72;
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.hero-visual-dots button.active {
  width: 1.65rem;
  background: var(--electric-lime);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-slide {
    transition: none;
  }
}

@media (max-width: 560px) {
  .hero-visual-carousel {
    min-height: 420px;
    border-radius: 24px;
  }

  .hero-visual-slide img {
    height: 420px;
    border-radius: 24px;
  }

  .hero-visual-carousel .hero-slide-caption {
    left: 1rem;
    right: 1rem;
    bottom: 3.4rem;
    max-width: none;
  }
}

/* Homepage featured package carousel */
#packages-preview.packages-section {
  width: min(100% - 2rem, var(--max-width));
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem);
  background: var(--deep-black);
  border-radius: 28px;
}

#packages-preview .section-heading .eyebrow {
  color: var(--electric-lime);
}

#packages-preview .section-heading h2 {
  color: var(--off-white);
}

#packages-preview .section-heading p:not(.eyebrow) {
  color: var(--muted-blue-gray);
}

#packages-preview .featured-packages-carousel {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

#packages-preview .carousel-track-container {
  border-radius: 18px;
  padding-top: 18px;
}

#packages-preview .carousel-track {
  align-items: stretch;
}

#packages-preview .carousel-card:nth-child(1) {
  order: 2;
}

#packages-preview .carousel-card:nth-child(2) {
  order: 3;
}

#packages-preview .carousel-card:nth-child(3) {
  order: 1;
}

#packages-preview .carousel-card:nth-child(4) {
  order: 4;
}

#packages-preview .carousel-card:nth-child(5) {
  order: 5;
}

#packages-preview .carousel-card:nth-child(6) {
  order: 6;
}

#packages-preview .package-card {
  position: relative;
  min-height: 360px;
  padding: 1.45rem;
  color: var(--deep-black);
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(15, 25, 35, 0.08);
}

#packages-preview .package-card h3 {
  color: var(--deep-black);
  font-size: 1.18rem;
}

#packages-preview .package-card .price {
  color: var(--deep-black);
}

#packages-preview .package-card p:not(.price) {
  color: var(--dim-gray);
}

#packages-preview .package-card.featured {
  color: var(--off-white);
  background: var(--dark-slate);
  border-color: var(--electric-lime);
  box-shadow: 0 18px 44px rgba(168, 230, 61, 0.14);
}

#packages-preview .package-card.featured h3,
#packages-preview .package-card.featured .price {
  color: var(--off-white);
}

#packages-preview .package-card.featured p:not(.price) {
  color: var(--muted-blue-gray);
}

#packages-preview .package-card:not(.featured) .badge {
  display: none;
}

#packages-preview .badge {
  position: absolute;
  top: -14px;
  right: 1.35rem;
  z-index: 2;
  color: var(--deep-black);
  background: var(--electric-lime);
  border: 1px solid rgba(168, 230, 61, 0.45);
  box-shadow: 0 10px 24px rgba(15, 25, 35, 0.18);
}

#packages-preview .package-card .button {
  width: 100%;
  color: var(--deep-black) !important;
  background: var(--electric-lime);
  border-color: var(--electric-lime);
}

#packages-preview .package-card .button:hover {
  background: var(--lime-hover);
  border-color: var(--lime-hover);
}

#packages-preview .carousel-arrow {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--deep-black);
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.1);
}

#packages-preview .carousel-arrow svg {
  width: 22px;
  height: 22px;
}

#packages-preview .carousel-arrow:hover {
  color: var(--deep-black);
  background: var(--electric-lime);
  border-color: var(--electric-lime);
}

#packages-preview .carousel-dots {
  margin-top: 1.25rem;
}

#packages-preview .carousel-dot {
  background: rgba(148, 163, 184, 0.36);
}

#packages-preview .carousel-dot.active {
  background: var(--electric-lime);
}

@media (max-width: 560px) {
  #packages-preview .carousel-arrow {
    display: grid;
  }
}

.online-booking-flow {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.booking-step-pill {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 68px;
  padding: 0.9rem 1rem;
  color: var(--off-white);
  background: var(--dark-slate);
  border: 1px solid rgba(168, 230, 61, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.booking-step-pill:hover {
  transform: translateY(-3px);
  border-color: var(--electric-lime);
  box-shadow: 0 16px 36px rgba(15, 25, 35, 0.14);
}

.booking-step-pill i,
.booking-step-pill svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--electric-lime);
  stroke-width: 2.2;
}

.booking-step-pill span {
  flex: 0 0 auto;
  color: var(--electric-lime);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.booking-step-pill strong {
  color: var(--off-white);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .online-booking-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .booking-step-pill {
    flex: 1 1 300px;
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .online-booking-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-step-pill,
  .booking-step-pill:nth-child(5),
  .booking-step-pill:nth-child(6),
  .booking-step-pill:nth-child(7),
  .booking-step-pill:nth-child(8) {
    grid-column: auto;
    max-width: none;
    width: 100%;
    border-radius: 18px;
  }
}

/* Unified FAQ styling */
.faq-section,
.de-section#faq {
  background: var(--off-white);
  border-radius: 0;
  box-shadow: none;
}

.faq-section .section-heading {
  text-align: left;
  margin-inline: 0;
}

.faq-section .section-heading .eyebrow,
.de-section#faq > .eyebrow {
  color: var(--electric-lime);
}

.faq-section .section-heading h2,
.de-section#faq > h2 {
  color: var(--deep-black);
}

.faq-section .section-heading p:not(.eyebrow) {
  color: var(--dim-gray);
}

.faq-section details,
.de-section#faq details {
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(15, 25, 35, 0.06);
}

.faq-section details::before,
.de-section#faq details::before {
  display: none;
}

.faq-section details:hover,
.faq-section details[open],
.de-section#faq details:hover,
.de-section#faq details[open] {
  border-color: rgba(168, 230, 61, 0.55);
}

.faq-section details summary,
.de-section#faq details summary {
  color: var(--deep-black);
  font-weight: 950;
}

.faq-section details p,
.de-section#faq details p {
  color: var(--dim-gray);
}

/* Pickup cards match homepage path card styling */
.pickup-grid div {
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pickup-grid div:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 230, 61, 0.85);
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.12);
}

.pickup-grid div i,
.pickup-grid div svg {
  box-sizing: content-box;
  width: 25px;
  height: 25px;
  margin-bottom: 1.15rem;
  padding: 0.8rem;
  color: var(--electric-lime);
  background: rgba(168, 230, 61, 0.12);
  border: 1px solid rgba(168, 230, 61, 0.45);
  border-radius: 16px;
  stroke-width: 2.1;
}

.pickup-grid div h3 {
  color: var(--deep-black);
}

.pickup-grid div p {
  color: var(--muted-blue-gray);
}

/* How it Works */
.home-teach {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: var(--off-white);
}

.home-teach-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.home-teach-heading {
  max-width: 840px;
  margin-bottom: 2rem;
}

.home-teach-heading h2 {
  max-width: 760px;
  margin-bottom: 0.85rem;
  color: var(--deep-black);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.home-teach-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0.75rem;
  color: var(--dim-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.home-teach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.home-teach-card {
  position: relative;
  min-height: 220px;
  padding: 1.45rem;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-teach-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0;
  height: 3px;
  background: var(--electric-lime);
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-teach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 230, 61, 0.85);
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.12);
}

.home-teach-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.home-teach-card span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  color: var(--electric-lime);
  background: rgba(168, 230, 61, 0.12);
  border: 1px solid rgba(168, 230, 61, 0.45);
  border-radius: 16px;
}

.home-teach-card svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.1;
}

.home-teach-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--deep-black);
  font-size: 1.14rem;
  font-weight: 850;
  line-height: 1.15;
}

.home-teach-card p {
  margin: 0;
  color: var(--muted-blue-gray);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .home-teach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .home-teach-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.how-it-works {
  padding: 4.5rem 0;
}

.how-it-works-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.how-it-works-heading {
  margin-bottom: 2.5rem;
}

.how-it-works-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  color: var(--deep-black);
  margin-bottom: 0;
}

.how-it-works-subhead {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: var(--muted-blue-gray);
  line-height: 1.5;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hiw-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 238px;
  gap: 1.15rem;
  padding: 1.45rem;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hiw-step::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0;
  height: 3px;
  background: var(--electric-lime);
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hiw-step:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 230, 61, 0.85);
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.12);
}

.hiw-step:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--electric-lime);
  background: rgba(168, 230, 61, 0.12);
  border: 1px solid rgba(168, 230, 61, 0.45);
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.hiw-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hiw-step-content strong {
  display: block;
  font-size: 1.14rem;
  font-weight: 850;
  color: var(--deep-black);
  line-height: 1.15;
}

.hiw-step-content p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted-blue-gray);
  line-height: 1.6;
}

@media (min-width: 720px) {
  .how-it-works-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .how-it-works-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ABOUT PAGE */

.about-hero {
  padding: 5rem 0 3.5rem;
}

.about-hero-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--deep-black);
  margin-bottom: 1.25rem;
}

.about-hero-text h1 em {
  font-style: normal;
  color: var(--electric-lime);
}

.about-hero-text p {
  font-size: 1.05rem;
  color: var(--muted-blue-gray);
  line-height: 1.65;
  max-width: 540px;
}

.about-hero-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Story */
.about-story {
  padding: 4rem 0;
  background: var(--white);
}

.about-story-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.about-story-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--deep-black);
  margin-bottom: 1.25rem;
}

.about-story-text p {
  font-size: 0.975rem;
  color: var(--muted-blue-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-story-text p:last-child { margin-bottom: 0; }

.about-story-text p strong {
  color: var(--deep-black);
  font-weight: 600;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
}

.about-value-item span {
  display: grid;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  place-items: center;
  background: rgba(168, 230, 61, 0.12);
  border-radius: 8px;
}

.about-value-item i,
.about-value-item svg {
  width: 18px;
  height: 18px;
  color: var(--electric-lime);
  stroke-width: 2.4;
}

.about-value-item div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.15rem;
}

.about-value-item div p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-blue-gray);
  line-height: 1.45;
}

/* How We Teach */
.about-approach {
  padding: 4rem 0;
}

.about-approach-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.about-approach-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.about-approach-inner > p {
  font-size: 0.975rem;
  color: var(--muted-blue-gray);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.approach-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.approach-item:hover {
  border-color: var(--electric-lime);
  transform: translateY(-2px);
}

.approach-item span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgba(168, 230, 61, 0.12);
  border-radius: 9px;
}

.approach-item i,
.approach-item svg {
  width: 18px;
  height: 18px;
  color: var(--electric-lime);
  stroke-width: 2.4;
}

.approach-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--deep-black);
}

.approach-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted-blue-gray);
  line-height: 1.5;
}

/* Credentials */
.about-credentials {
  padding: 4rem 0;
  background: var(--white);
}

.about-credentials-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.about-credentials-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.about-credentials-inner > p {
  font-size: 0.975rem;
  color: var(--muted-blue-gray);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
}

.credential-item span {
  display: grid;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  place-items: center;
  background: rgba(168, 230, 61, 0.12);
  border-radius: 10px;
}

.credential-item i,
.credential-item svg {
  width: 20px;
  height: 20px;
  color: var(--electric-lime);
  stroke-width: 2.4;
}

.credential-item div strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.2rem;
}

.credential-item div p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted-blue-gray);
  line-height: 1.5;
}

/* Vehicle */
.about-vehicle {
  padding: 4rem 0;
}

.about-vehicle-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-vehicle-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--deep-black);
  margin-bottom: 1rem;
}

.about-vehicle-content p {
  font-size: 0.975rem;
  color: var(--muted-blue-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.vehicle-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vehicle-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--deep-black);
  font-weight: 500;
}

.vehicle-feature i,
.vehicle-feature svg {
  width: 16px;
  height: 16px;
  color: var(--electric-lime);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.about-vehicle-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (min-width: 720px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1020px) {
  .about-hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about-story-inner { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .about-vehicle-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* About page polish */
.site-nav .nav-active {
  color: var(--electric-lime);
}

.about-page {
  background: var(--off-white);
}

.about-page .about-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--off-white);
}

.about-page .about-hero-text h1 {
  max-width: 660px;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.about-page .about-hero-text p,
.about-page .about-story-text p,
.about-page .about-approach-inner > p,
.about-page .about-credentials-inner > p,
.about-page .about-vehicle-content p {
  color: var(--dim-gray);
}

.about-page .about-hero-image,
.about-page .about-vehicle-image {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 25, 35, 0.12);
}

.about-page .about-story,
.about-page .about-credentials {
  background: var(--off-white);
}

.about-page .about-story,
.about-page .about-approach,
.about-page .about-credentials,
.about-page .about-vehicle {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-page .about-values,
.about-page .approach-grid,
.about-page .credentials-grid {
  gap: 1rem;
}

.about-page .about-value-item,
.about-page .approach-item,
.about-page .credential-item {
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-page .about-value-item:hover,
.about-page .approach-item:hover,
.about-page .credential-item:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 230, 61, 0.75);
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.12);
}

.about-page .about-value-item span,
.about-page .approach-item span,
.about-page .credential-item span {
  color: var(--electric-lime);
  background: rgba(168, 230, 61, 0.12);
  border: 1px solid rgba(168, 230, 61, 0.45);
  border-radius: 16px;
}

.about-page .about-value-item div strong,
.about-page .approach-item strong,
.about-page .credential-item div strong,
.about-page .vehicle-feature {
  color: var(--deep-black);
  font-weight: 850;
}

.about-page .about-value-item div p,
.about-page .approach-item p,
.about-page .credential-item div p {
  color: var(--muted-blue-gray);
}

.about-page .about-approach {
  background: var(--deep-black);
}

.about-page .about-approach .eyebrow {
  color: var(--electric-lime);
}

.about-page .about-approach-inner h2,
.about-page .about-approach-inner > p {
  color: var(--off-white);
}

.about-page .about-approach .approach-item {
  background: var(--dark-slate);
  border-color: rgba(148, 163, 184, 0.18);
}

.about-page .about-approach .approach-item strong {
  color: var(--off-white);
}

.about-page .about-approach .approach-item p {
  color: var(--muted-blue-gray);
}

.about-page .vehicle-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.about-page .vehicle-feature {
  padding: 0.75rem 0.9rem;
  background: var(--off-white);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
}

.about-footer-bottom div {
  display: none;
}

.about-footer-bottom::before {
  content: "\00a9 2026 Roadvia Driving School. All rights reserved.";
  color: var(--muted-blue-gray);
  font-size: 0.8rem;
}

@media (min-width: 720px) {
  .about-page .vehicle-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile responsive image fixes */
@media (max-width: 640px) {
  .hero-image-card:not(.hero-visual-carousel) > img,
  .de-image img,
  .de-hero-image img,
  .about-image img,
  .lesson-detail > img,
  .adult-feature-media img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none;
    object-fit: contain;
  }

  .hero-image-card:not(.hero-visual-carousel),
  .de-hero-image,
  .about-image,
  .adult-feature-media,
  .about-hero-image,
  .about-vehicle-image {
    height: auto;
    min-height: 0;
  }

  .hero-visual-carousel {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .hero-visual-slide img {
    height: 100%;
    object-fit: contain;
    background: var(--dark-slate);
    border-radius: 24px;
  }

  .journey-img img,
  .finish-img img,
  .parent-visual img,
  .about-hero-image img,
  .about-vehicle-image img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
  }

  .teen-journey-page .journey-img img,
  .teen-journey-page .finish-img img {
    height: 100% !important;
    object-fit: cover;
  }

  .about-hero-image,
  .about-vehicle-image {
    aspect-ratio: auto;
  }

}

.trust-bar {
  max-width: 1200px;          /* match your other sections' container width */
  margin: 0 auto;
  padding: 0 1.5rem;          /* match your standard horizontal page padding */
}

.trust-bar-inner {
  background: var(--deep-black);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: left;
  color: var(--off-white);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.trust-bar-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 2;
  color: var(--electric-lime);
}

@media (max-width: 900px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }
}

.package-card .package-audience {
	display: block;
	width: fit-content;
	margin: 0 0 1.4rem;
	padding: 0;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: #a8e63d !important;
	font-size: 1.05rem;
	font-weight: 950;
	line-height: 1.1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-shadow: 0 0 14px rgba(168, 230, 61, 0.35);
}

/* Homepage package carousel cleanup */
.featured-packages-carousel .package-audience {
	display: block;
	width: fit-content;
	margin: 0 0 1.15rem;
	padding: 0;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: var(--electric-lime) !important;
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-shadow: 0 0 14px rgba(168, 230, 61, 0.35);
}

.featured-packages-carousel .package-features {
	list-style: none;
	margin: 1.15rem 0 1.4rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.featured-packages-carousel .package-features li {
	display: grid;
	grid-template-columns: 1.1rem 1fr;
	align-items: start;
	gap: 0.65rem;
	color: var(--muted-blue-gray);
	line-height: 1.45;
}

.featured-packages-carousel .package-features li i,
.featured-packages-carousel .package-features li svg {
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	color: var(--electric-lime);
	stroke-width: 2.5;
	flex-shrink: 0;
}

.featured-packages-carousel .package-card .badge {
	background: var(--electric-lime);
	color: var(--deep-black);
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.packages-section .section-cta {
	margin-top: 2rem;
}
