:root {
  --bg: #08111f;
  --bg-alt: #0d182b;
  --surface: #122038;
  --surface-2: #172842;
  --surface-3: #1c3150;
  --line: rgba(216, 177, 107, 0.18);
  --line-strong: rgba(216, 177, 107, 0.32);
  --text: #f4f7fb;
  --muted: #a5b4d3;
  --muted-2: #7f90b4;
  --gold: #d8b16b;
  --gold-soft: #f1dbb0;
  --blue-soft: #88b7ff;
  --success: #38d39f;
  --danger: #ff9b8d;
  --card-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at top right,
      rgba(216, 177, 107, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at left 20%,
      rgba(136, 183, 255, 0.08),
      transparent 25%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.utility-bar {
  background: rgba(4, 10, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: var(--muted);
}
.utility-bar strong {
  color: var(--gold-soft);
  font-weight: 650;
}
.utility-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-mark {
  height: fit-content;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-copy span {
  display: block;
}
.brand-copy .brand-title {
  font-size: 1rem;
}
.brand-copy .brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted-2);
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0;
  position: relative;
}
.nav-toggle::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  top: 16px;
  left: 12px;
  box-shadow:
    0 8px 0 0 currentColor,
    0 16px 0 0 currentColor;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c18a3e);
  color: #151010;
  box-shadow: 0 12px 30px rgba(216, 177, 107, 0.22);
}
.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(216, 177, 107, 0.28);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}
.btn-link {
  padding: 0;
  min-height: auto;
  background: none;
  color: var(--gold-soft);
}
main {
  display: block;
}
.hero {
  padding: 72px 0 72px;
  position: relative;
  overflow: clip;
  background: url("https://www.ashlimoandcharterbuses.com/wp-content/uploads/2024/01/DSC05237-scaled.jpg")
    center/cover no-repeat;
  background-attachment: fixed;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 19, 0.4);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}
.hero h1,
.hero .eyebrow,
.hero .lead,
.hero .stat-chip {
  color: rgba(255, 255, 255, 0.94);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.03;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}
.lead {
  font-size: 1.1rem;
  color: rgba(245, 245, 247, 0.88);
  max-width: 62ch;
}
.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hero-actions .btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
}
.hero-actions .btn-primary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  color: #151010;
}
.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.hero-actions .btn:hover {
  background: rgba(255, 255, 255, 0.24);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.stat-chip,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 249, 251, 0.88);
  font-weight: 600;
}
.stat-chip strong,
.pill strong,
.tag strong {
  color: var(--text);
}
.hero-panel,
.card,
.quote-summary,
.metric-card,
.timeline-item,
.faq-item,
.policy-card,
.notice,
.table-wrap {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
}
.hero-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-panel::before,
.card::before,
.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 177, 107, 0.18),
    transparent 70%
  );
  filter: blur(6px);
  pointer-events: none;
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.panel-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 19, 0.32);
}
.panel-card h3,
.card h3,
.section-title {
  margin: 0 0 10px;
}
.panel-card p,
.card p,
.section-copy,
.muted {
  color: var(--muted);
}
.page-hero {
  padding: 72px 0 38px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: stretch;
}
.page-hero-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.page-hero-card ul,
.card ul,
.clean-list,
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-hero-card li,
.card li,
.feature-list li {
  padding-left: 24px;
  position: relative;
  margin-top: 10px;
  color: var(--muted);
}
.page-hero-card li::before,
.card li::before,
.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.56em;
  background: linear-gradient(135deg, var(--gold), var(--blue-soft));
}
.section {
  padding: 32px 0 78px;
}
.section-light {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0)
  );
}
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.card h3 {
  font-size: 1.35rem;
}
.card .meta {
  color: var(--muted-2);
  font-size: 0.95rem;
}
.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(216, 177, 107, 0.12),
    rgba(136, 183, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-soft);
}
.metric-card {
  padding: 22px;
}
.metric-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}
.quote-cta-bar {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: center;
}
.quote-cta-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.quote-cta-form a,
.quick-chip {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(4, 10, 19, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 650;
}
.quick-chip:hover {
  border-color: var(--line-strong);
}
.location-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.location-cloud .pill {
  background: rgba(255, 255, 255, 0.025);
}
.banner {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(216, 177, 107, 0.14),
    rgba(136, 183, 255, 0.08)
  );
  border: 1px solid rgba(216, 177, 107, 0.18);
}
.banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}
.banner-grid img {
  border-radius: 18px;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  padding: 18px;
}
.timeline-item strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.compare-table th {
  color: var(--gold-soft);
  font-size: 0.95rem;
}
.compare-table td {
  color: var(--muted);
}
.table-wrap {
  overflow: auto;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.filter-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.filter-button.active,
.filter-button:hover {
  color: var(--text);
  border-color: rgba(216, 177, 107, 0.34);
  background: rgba(216, 177, 107, 0.08);
}
.vehicle-card {
  display: grid;
  gap: 16px;
}
.vehicle-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.vehicle-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}
.vehicle-icon {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-icon img {
  border-radius: 20px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: start;
}
.quote-wizard,
.quote-summary {
  padding: 24px;
}
.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.step-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 700;
}
.step-chip.active {
  color: var(--text);
  border-color: rgba(216, 177, 107, 0.34);
  background: rgba(216, 177, 107, 0.08);
}
.wizard-step {
  display: none;
}
.wizard-step.active {
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-weight: 700;
  color: var(--text);
}
.input,
select,
textarea,
.radio-card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 19, 0.38);
  color: var(--text);
  padding: 14px 16px;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.radio-card {
  position: relative;
  cursor: pointer;
  min-height: 100px;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.radio-card span {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}
.radio-card small {
  display: block;
  color: var(--muted);
}
.radio-card.is-selected,
.radio-card:has(input:checked) {
  border-color: rgba(216, 177, 107, 0.4);
  background: rgba(216, 177, 107, 0.08);
}
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.check-pill input {
  width: 18px;
  height: 18px;
}
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.summary-block {
  padding: 18px;
  border-radius: 18px;
  background: rgba(4, 10, 19, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: var(--muted);
}
.summary-row strong {
  color: var(--text);
}
.notice {
  padding: 16px 18px;
}
.notice strong {
  display: block;
  margin-bottom: 6px;
}
.success-message {
  display: none;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(56, 211, 159, 0.3);
  background: rgba(56, 211, 159, 0.08);
  margin-top: 18px;
}
.success-message.is-visible {
  display: block;
}
.accordion-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 750;
  text-align: left;
}
.accordion-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-soft);
  transition: transform 0.2s ease;
}
.faq-item.open .accordion-trigger svg {
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}
.accordion-panel-inner {
  padding: 0 22px 22px;
  color: var(--muted);
}
.policy-grid {
  display: grid;
  gap: 18px;
}
.policy-card {
  padding: 22px;
}
.footer {
  padding: 54px 0 94px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 7, 14, 0.62);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 22px;
}
.footer p,
.footer li,
.footer a {
  color: var(--muted);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer h3,
.footer h4 {
  margin-top: 0;
}
.mobile-sticky {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 420px);
  border-radius: 22px;
  padding: 10px;
  display: none;
  gap: 10px;
  background: rgba(6, 13, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  z-index: 40;
}
.mobile-sticky .btn {
  flex: 1;
  min-height: 46px;
}
.center {
  text-align: center;
}
.hide {
  display: none !important;
}
@media (max-width: 1100px) {
  .hero .container,
  .page-hero-grid,
  .split,
  .banner-grid,
  .quote-layout,
  .quote-cta-bar,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-cta-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .site-header .container {
    min-height: 76px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }
  .nav-shell {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 13, 24, 0.96);
    box-shadow: var(--card-shadow);
    display: none;
  }
  .nav-shell.is-open {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu a {
    border-radius: 14px;
  }
  .header-actions {
    order: 2;
  }
  .header-actions .desktop-only {
    display: none;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .panel-grid,
  .form-grid,
  .form-grid-3,
  .radio-grid {
    grid-template-columns: 1fr;
  }
  .section-top {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .utility-bar .container {
    flex-direction: column;
    align-items: start;
  }
  .hero,
  .page-hero {
    padding-top: 56px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }
  .hero-panel,
  .quote-wizard,
  .quote-summary,
  .card,
  .policy-card,
  .timeline-item {
    padding: 20px;
  }
  .quote-cta-form,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-bottom: 120px;
  }
  .mobile-sticky {
    display: flex;
  }
}

/* Publish-ready light theme */
.theme-light {
  --bg: #f6f8fb;
  --bg-alt: #eef3f9;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #eef5ff;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.16);
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --gold: #c78f2d;
  --gold-soft: #8a6324;
  --blue-soft: #2563eb;
  --success: #16a34a;
  --danger: #dc2626;
  --card-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(
      circle at top right,
      rgba(37, 99, 235, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at left 18%,
      rgba(34, 197, 94, 0.05),
      transparent 24%
    ),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  color: var(--text);
}
.theme-light .utility-bar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .utility-bar strong {
  color: var(--gold-soft);
}
.theme-light .site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .brand-mark {
  padding-block: 20px;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.theme-light .nav-menu {
  gap: 10px;
}
.theme-light .nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  color: var(--muted);
  background: transparent;
}
.theme-light .nav-menu a:hover,
.theme-light .nav-menu a.active {
  color: var(--text);
  background: rgba(15, 23, 42, 0.06);
}
.theme-light .nav-menu .nav-cta {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.22);
  position: relative;
  border: 1px solid rgba(22, 163, 74, 0.22);
}
.theme-light .nav-menu .nav-cta:hover,
.theme-light .nav-menu .nav-cta.active {
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.28);
}
.theme-light .nav-menu .nav-cta::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  margin-left: 8px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
  animation: attentionPulse 2s infinite;
}
@keyframes attentionPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.theme-light .nav-toggle {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}
.theme-light .btn-primary {
  background: linear-gradient(135deg, var(--gold), #e2a947);
  color: #201708;
  box-shadow: 0 12px 28px rgba(199, 143, 45, 0.22);
}
.theme-light .btn-secondary {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--text);
}
.theme-light .btn-ghost {
  border-color: rgba(15, 23, 42, 0.14);
  color: var(--text);
}
.theme-light .btn-link {
  color: var(--gold-soft);
}
.theme-light .hero h1,
.theme-light .page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.theme-light .section-title {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.12;
}
.theme-light .card h3 {
  font-size: 1.22rem;
}
.theme-light .lead {
  font-size: 1.02rem;
  color: #ffffff;
}
.theme-light .eyebrow {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--blue-soft);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.theme-light .stat-chip,
.theme-light .pill,
.theme-light .tag {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.theme-light .hero-panel,
.theme-light .card,
.theme-light .quote-summary,
.theme-light .metric-card,
.theme-light .timeline-item,
.theme-light .faq-item,
.theme-light .policy-card,
.theme-light .notice,
.theme-light .table-wrap {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--card-shadow);
}
.theme-light .panel-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(244, 247, 251, 0.96)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .page-hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .section-light {
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.03),
    rgba(255, 255, 255, 0)
  );
}
.theme-light .quote-cta-bar {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(249, 250, 251, 0.95)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--card-shadow);
}
.theme-light .quote-cta-form a,
.theme-light .quick-chip {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}
.theme-light .quick-chip:hover {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.12);
}
.theme-light .location-cloud .pill {
  background: rgba(255, 255, 255, 0.95);
}
.theme-light .icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(199, 143, 45, 0.14),
    rgba(37, 99, 235, 0.08)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .icon-wrap svg {
  stroke: var(--blue-soft);
}
.theme-light .banner {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.1),
    rgba(37, 99, 235, 0.05)
  );
  border: 1px solid rgba(22, 163, 74, 0.18);
}
.theme-light .compare-table th,
.theme-light .compare-table td {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .filter-button {
  border-color: rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: var(--muted);
}
.theme-light .filter-button.active,
.theme-light .filter-button:hover {
  color: var(--text);
  border-color: rgba(22, 163, 74, 0.28);
  background: rgba(22, 163, 74, 0.08);
}
.theme-light .stat-badge {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.theme-light .step-chip {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: var(--muted);
}
.theme-light .step-chip.active {
  color: var(--text);
  border-color: rgba(22, 163, 74, 0.28);
  background: rgba(22, 163, 74, 0.08);
}
.theme-light .input,
.theme-light select,
.theme-light textarea,
.theme-light .radio-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.theme-light .radio-card.is-selected,
.theme-light .radio-card:has(input:checked) {
  border-color: rgba(22, 163, 74, 0.32);
  background: rgba(22, 163, 74, 0.08);
}
.theme-light .check-pill {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
}
.theme-light .summary-block {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 252, 0.98)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .success-message {
  border: 1px solid rgba(22, 163, 74, 0.25);
  background: rgba(22, 163, 74, 0.08);
}
.theme-light .footer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(244, 247, 251, 0.96)
  );
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.theme-light .mobile-sticky {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}
.theme-light .panel-card p,
.theme-light .card p,
.theme-light .section-copy,
.theme-light .muted,
.theme-light .footer p,
.theme-light .footer li,
.theme-light .footer a {
  color: var(--muted);
}
.theme-light .hero-panel img,
.theme-light .page-hero-card img {
  width: 100%;
  border-radius: 18px;
}
@media (max-width: 920px) {
  .theme-light .nav-shell {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  .theme-light .nav-menu .nav-cta {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .theme-light .hero h1,
  .theme-light .page-hero h1 {
    font-size: clamp(1.95rem, 11vw, 2.85rem);
  }
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  margin: 0 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.2rem;
  color: #e2e8f0;
}

.star.filled {
  color: #fbbf24;
}

.review-source {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  background: var(--bg-alt);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  font-family: serif;
}

.testimonial-card cite {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  display: block;
  text-align: right;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
  transition: all 0.2s ease;
  box-shadow: var(--card-shadow);
}

.carousel-btn:hover {
  background: var(--gold);
  color: #201708;
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-dot.active {
  background: var(--gold);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-nav {
    gap: 0.5rem;
  }

  .carousel-dots {
    gap: 0.25rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}
