/* ============================================================
   CrashCall landing page styles
   Mobile-first, desktop breakpoint at 960px
============================================================ */

:root {
  --orange: #E55B1F;
  --orange-dark: #C84B12;
  --orange-soft: #FFE5D6;
  --navy: #1D2026;
  --navy-soft: #2A2F36;
  --text: #1D2026;
  --text-muted: #6B6F7A;
  --cream: #FFFDF5;
  --cream-card: #FCF8E8;
  --gray-50: #F4F4F5;
  --gray-100: #E9E9EC;
  --gray-200: #D8D8DC;
  --yellow: #FFC634;
  --green: #6FB46B;
  --white: #fff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20,20,30,.06);
  --shadow-md: 0 8px 24px rgba(20,20,30,.08);
  --shadow-lg: 0 18px 50px rgba(20,20,30,.12);
  --container: 1240px;
  --container-narrow: 1100px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; color: var(--navy); line-height: 1.15; letter-spacing: -.01em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 960px) { .container { padding: 0 40px; } }

.text-orange { color: var(--orange); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}
.section-heading {
  margin: 0 auto 40px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  max-width: 800px;
}
.section-heading--upper { text-transform: uppercase; letter-spacing: -.005em; }
@media (min-width: 720px) { .section-heading { font-size: 36px; } }
@media (min-width: 960px) { .section-heading { font-size: 44px; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: background .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn__arrow { font-weight: 700; transform: translateY(-1px); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.nav__logo img { height: 28px; width: auto; }
@media (min-width: 960px) { .nav__logo img { height: 34px; } }

.nav__menu {
  display: none;
  gap: 36px;
}
.nav__menu a,
.nav__menu .nav__dropdown-toggle {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.nav__menu a:hover,
.nav__menu .nav__dropdown-toggle:hover { color: var(--orange); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle svg { transition: transform .2s; }
.nav__dropdown.is-open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 100;
}
.nav__dropdown.is-open .nav__dropdown-menu { display: flex; }
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover { background: var(--gray-50); color: var(--orange); }

/* Invisible bridge to make the gap between toggle and menu hoverable */
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

@media (hover: hover) {
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown-menu:hover { display: flex; }
  .nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}
.nav__phone svg { color: var(--orange); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drops below header */
@media (max-width: 959px) {
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav__menu.is-open { display: flex; max-height: 600px; }
  .nav__menu > a,
  .nav__menu .nav__dropdown-toggle {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }
  .nav__dropdown { width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav__dropdown-toggle { border-bottom: 0 !important; }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: var(--gray-50);
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 0;
    display: none;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { display: flex; }
  .nav__dropdown-menu a {
    padding: 14px 36px;
    border-radius: 0;
  }
  .nav__phone span { display: none; }
  .nav__phone { display: inline-flex; padding: 6px; }
  .nav__actions .btn { padding: 10px 18px; font-size: 14px; }
}

@media (min-width: 960px) {
  .nav__toggle { display: none; }
  .nav__menu { display: flex; }
  .nav__phone { display: inline-flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero__inner { position: relative; }
.hero__title {
  margin: 0 auto 32px;
  max-width: 880px;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
}
@media (min-width: 720px) { .hero__title { font-size: 42px; } }
@media (min-width: 960px) { .hero__title { font-size: 54px; margin-bottom: 48px; } }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.hero__bg-text {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  max-width: 1700px;
  aspect-ratio: 660 / 140;
  background: url("images/logo-orange-white.png") center/contain no-repeat;
  opacity: .10;
  z-index: 0;
  pointer-events: none;
  /* Visually-hidden text remains in DOM for screen readers */
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.hero__check-pill {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  z-index: 1;
}
.hero__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating chips */
.chip {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chip__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
}
.chip__icon--orange { background: var(--orange); }
.chip__icon--yellow { background: var(--yellow); border-radius: 50%; width: 28px; height: 28px; }
.chip__icon--green  { background: var(--green); border-radius: 50%; }
.chip__text { display: flex; flex-direction: column; line-height: 1.1; }
.chip__text strong { font-size: 16px; color: var(--navy); }
.chip__text span { font-size: 12px; color: var(--text-muted); }

.chip--shield   { bottom: 6%; left: 6%; padding: 8px; }
.chip--dollar   { top: 38%; right: 0%; padding: 8px; }

/* Hide chips on smallest screens */
@media (max-width: 559px) {
  .chip--dollar, .chip--shield { display: none; }
}

/* ============ WHY CHOOSE US ============ */
.why {
  background: var(--cream);
  padding: 64px 0 72px;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 24px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }

.why__item {
  text-align: center;
  position: relative;
}
.why__icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.why__item h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.why__item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 220px;
  margin-inline: auto;
  line-height: 1.5;
}

/* Dashed curve connectors (desktop only) */
@media (min-width: 960px) {
  .why__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    left: 60%;
    width: 80%;
    height: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' fill='none' stroke='%23E55B1F' stroke-width='1.5' stroke-dasharray='5 5' stroke-linecap='round'><path d='M0 20 Q 100 -10 200 20'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
  }
  .why__item:nth-child(even):not(:last-child)::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' fill='none' stroke='%23E55B1F' stroke-width='1.5' stroke-dasharray='5 5' stroke-linecap='round'><path d='M0 20 Q 100 50 200 20'/></svg>");
  }
}

/* ============ SERVICE SECTIONS (NAF / PPR) ============ */
.service { padding: 72px 0 80px; }
.service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .service__grid { grid-template-columns: 1.05fr .95fr; gap: 60px; }
}

.service__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  max-width: 920px;
  margin: -16px auto 36px;
  padding: 0 8px;
}
.service__highlights li {
  background: var(--cream-card);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid #F3E8C9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service__highlights li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service__media { position: relative; }
.service__photo {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

/* Before/after slider (unused on landing page right now, kept for future paired photos) */
.ba {
  --ba-pos: 50%;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
  touch-action: none;
  user-select: none;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba__before { /* fully visible underneath */ }
.ba__after  { clip-path: inset(0 0 0 var(--ba-pos)); }
.ba::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0,0,0,.18);
}
.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: grid; place-items: center;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,.25), 0 0 0 4px rgba(255,255,255,.4);
  cursor: ew-resize;
  touch-action: none;
}
.ba.is-dragging .ba__handle { transform: translate(-50%, -50%) scale(1.05); }

.service__list {
  display: grid;
  gap: 22px;
}
.service__list li {
  position: relative;
  padding-left: 38px;
}
.service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E55B1F'><path d='M5 4l10 8-10 8V4z'/></svg>") center/contain no-repeat;
}
.service__list h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.service__list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.service__cta {
  text-align: center;
  margin-top: 44px;
}
@media (min-width: 960px) {
  .service__cta { text-align: left; padding-left: 4px; }
  .service--reverse .service__cta { text-align: left; }
}

/* ============ AFTERCARE ============ */
.aftercare {
  padding: 64px 0 80px;
  background: var(--cream);
}
.aftercare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 800px) { .aftercare__grid { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.aftercare__copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.aftercare__services {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}
.aftercare__services li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.aftercare__bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============ COMPARE ============ */
.compare { padding: 72px 0; background: var(--white); }
.compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 800px) { .compare__grid { grid-template-columns: 1fr 1fr; } }

.compare-card {
  border-radius: var(--radius-md);
  padding: 36px 36px 44px;
  border-bottom: 4px solid;
  text-align: left;
}
.compare-card--with    { background: var(--cream-card); border-bottom-color: var(--orange); }
.compare-card--without { background: var(--gray-50);    border-bottom-color: var(--gray-200); }
.compare-card__illustration {
  display: block;
  margin: 0 auto 18px;
  height: 180px;
  width: auto;
  object-fit: contain;
}
.compare-card h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 22px;
}
.compare-card ul { display: grid; gap: 10px; }
.compare-card li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--gray-50);
  padding: 72px 0 80px;
}
.testimonials__head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
@media (min-width: 800px) {
  .testimonials__head { grid-template-columns: 1fr auto; }
  .testimonials__head .section-heading { margin-bottom: 0; text-align: left; }
}
.testimonials__controls { display: flex; gap: 12px; justify-content: center; }
.tcontrol {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .15s, color .15s;
}
.tcontrol--next { background: var(--orange); color: var(--white); }
.tcontrol:hover { transform: translateY(-1px); }

.testimonials__viewport {
  overflow: hidden;
  margin: 0 -4px;
}
.testimonials__track {
  display: flex;
  gap: 20px;
  padding: 4px;
  transition: transform .4s ease;
}
.tcard {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
@media (min-width: 640px) { .tcard { flex-basis: calc(50% - 10px); } }
@media (min-width: 960px) { .tcard { flex-basis: calc(33.333% - 14px); } }

.tcard__stars {
  color: var(--yellow);
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 10px;
}
.tcard h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.tcard p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 14.5px;
  flex: 1;
}
.tcard__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  position: relative;
}
.tcard__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
}
.tcard__name { font-weight: 600; font-size: 14px; color: var(--navy); }
.tcard__quote {
  margin-left: auto;
  font-size: 36px;
  line-height: 0;
  color: var(--navy);
  font-family: Georgia, serif;
  transform: translateY(-4px);
}

/* ============ FAQ ============ */
.faq { padding: 72px 0 80px; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .faq__grid { grid-template-columns: 1fr 1.2fr; gap: 60px; } }

.faq__media {
  position: relative;
  border-radius: var(--radius-md);
}
.faq__media img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.faq__dots {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 130px; height: 100px;
  background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 2px);
  background-size: 14px 14px;
  opacity: .35;
  pointer-events: none;
  z-index: -1;
}

.faq__content .eyebrow { text-align: left; margin-bottom: 16px; }
.faq__list { display: grid; gap: 0; }
.faq__item { border-bottom: 1px solid var(--gray-100); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--navy);
  transition: transform .2s;
}
.faq__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item.is-open .faq__icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq__a p {
  margin: 0 0 18px;
  padding-right: 30px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq__item.is-open .faq__a { max-height: 400px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 24px 0 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner__inner {
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 800px) {
  .cta-banner__inner { grid-template-columns: 1.3fr 1fr; }
}
.cta-banner__text {
  padding: 36px 28px;
  color: var(--white);
}
@media (min-width: 800px) { .cta-banner__text { padding: 56px 56px 56px 64px; } }
.cta-banner__text h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: none;
  font-weight: 700;
}
@media (min-width: 800px) { .cta-banner__text h2 { font-size: 38px; } }
.cta-banner__text h2 strong {
  font-weight: 900;
  letter-spacing: .02em;
}
.cta-banner__text p {
  margin: 0 0 22px;
  max-width: 460px;
  opacity: .95;
  font-size: 15px;
  line-height: 1.55;
}
.cta-banner__media {
  position: relative;
  height: 220px;
}
@media (min-width: 800px) { .cta-banner__media { height: 280px; } }
.cta-banner__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Circular mask on desktop */
}
@media (min-width: 800px) {
  .cta-banner__media {
    height: auto;
    align-self: stretch;
    padding: 32px;
  }
  .cta-banner__media img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding-top: 0;
  margin-top: -2px;
  position: relative;
  overflow: hidden;
}
.site-footer__wordmark {
  width: 100%;
  height: 0;
  padding-top: calc(100% * 140 / 660); /* preserve aspect 660:140 */
  max-height: 200px;
  background: url("images/logo-orange-dark.png") center/contain no-repeat;
  opacity: .22;
  margin-top: 12px;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  /* Visually-hidden text remains in DOM for screen readers */
  font-size: 0;
  color: transparent;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 24px;
  padding-bottom: 50px;
  position: relative;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }

.site-footer__col h5 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer__col ul { display: grid; gap: 10px; }
.site-footer__col li a {
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  transition: color .15s;
}
.site-footer__col li a.is-active {
  color: var(--white);
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.site-footer__col li a:hover { color: var(--white); }

.site-footer__col--brand p {
  font-size: 14px;
  margin: 0 0 22px;
  max-width: 280px;
  line-height: 1.6;
}
.site-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer__col .socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--white);
  transition: background .15s;
}
.socials a:hover { background: var(--orange); }
.socials .is-active a { background: var(--orange); }

/* Active nav link state for current page */
.nav__menu a.is-current { color: var(--orange); }

/* ============ ABOUT PAGE (/about) ============ */
.about-page { background: var(--white); }
.about-hero {
  background: var(--cream);
  padding: 64px 0 56px;
}
.about-hero .eyebrow { text-align: left; }
.about-hero h1 {
  font-size: 30px;
  margin: 0;
  max-width: 820px;
  font-weight: 800;
  line-height: 1.18;
}
@media (min-width: 720px) { .about-hero h1 { font-size: 42px; } }
@media (min-width: 960px) { .about-hero h1 { font-size: 52px; } }

.about-body { padding: 64px 0 80px; }
.about-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .about-body__grid { grid-template-columns: 1.1fr 1fr; gap: 60px; } }
.about-body__copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
}
.about-body__media {
  margin: 0;
  position: relative;
}
.about-body__media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-body__media figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-cta .btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.about-cta .btn--ghost:hover { background: var(--gray-50); }

/* ============ FORM PAGES (/quote, /apply) ============ */
.form-page { background: var(--gray-50); }
.form-hero {
  position: relative;
  padding: 64px 0 80px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.form-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20,22,28,.55), rgba(20,22,28,.75)), url("../assets/images/form-hero-fleet.jpg") center/cover no-repeat;
  z-index: -1;
}
.form-hero__inner { max-width: 760px; }
.form-hero .eyebrow { color: var(--orange); text-align: left; margin-bottom: 8px; }
.form-hero h1 {
  font-size: 32px;
  color: var(--white);
  margin: 0 0 14px;
  font-weight: 800;
}
@media (min-width: 720px) { .form-hero h1 { font-size: 44px; } }
.form-hero__lead {
  font-size: 16px;
  margin: 0;
  max-width: 540px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

.form-section { padding: 0 0 72px; }
.form-card {
  max-width: 820px;
  margin: -48px auto 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 26px;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
}
@media (min-width: 720px) { .form-card { padding: 40px 44px; } }

.form-card fieldset { border: 0; padding: 0; margin: 0; }
.form-card legend {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 14px;
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 18px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 6px; }
.field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,91,31,.15);
}
.field textarea { resize: vertical; min-height: 96px; }
.field__hint { font-size: 12.5px; color: var(--text-muted); font-weight: 400; margin-top: 2px; }
.field--file { grid-column: 1 / -1; }
.field--file input[type=file] {
  padding: 10px;
  border: 1px dashed var(--gray-200);
  background: var(--gray-50);
  cursor: pointer;
}
.field--full { grid-column: 1 / -1; }

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 8px;
}
.form-actions .btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.form-actions .btn--ghost:hover { background: var(--gray-50); }

/* Wizard progress dots (NAF) */
.wprogress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 28px;
}
.wprogress__dot {
  width: 28px; height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  transition: background .2s;
}
.wprogress__dot.is-active { background: var(--orange); }
.wprogress__dot.is-done   { background: var(--orange); opacity: .55; }
.wstep { display: grid; gap: 28px; }
.wstep__title {
  margin: 0;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}
.wstep__intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.form-success {
  max-width: 600px;
  margin: -48px auto 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.form-success__icon {
  width: 72px; height: 72px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.form-success h2 {
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 10px;
}
.form-success p {
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.55;
}
