  :root {
      --color-bg: #0f172a;
      /* page background */
      --color-surface: #111827;
      /* dark panels */
      --color-light: #f3f4f6;
      /* light sections */
      --color-primary: #1d4ed8;
      /* blue */
      --color-accent: #f97316;
      /* orange CTA */
      --color-text-main: #111827;
      --color-text-muted: #6b7280;
      --color-text-inverse: #f9fafb;
      --radius-lg: 1.5rem;
      --radius-pill: 999px;
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.25);
  }

  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      overflow-x: hidden;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
          sans-serif;
      color: var(--color-text-main);
      background: #020617;
  }

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

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

  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
  }


  .pill {
      border-radius: var(--radius-pill);
      padding: 0.55rem 1.2rem;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, color 0.2s ease, border 0.2s ease,
          transform 0.1s ease;
  }

  .pill-primary {
      background: var(--color-accent);
      color: #111827;
      border-color: var(--color-accent);
  }

  .pill-primary:hover {
      background: #ea580c;
      border-color: #ea580c;
      transform: translateY(-1px);
  }

  .pill-outline {
      background: transparent;
      color: #e5e7eb;
      border-color: rgba(148, 163, 184, 0.7);
  }

  .pill-outline:hover {
      background: rgba(15, 23, 42, 0.85);
      border-color: #e5e7eb;
  }

  /* Hero */
  .hero {
      background: radial-gradient(circle at top left, #1e293b, #020617 60%);
      color: var(--color-text-inverse);
      padding: 2.1rem 0 1.7rem;
  }

  .hero-inner {
      display: flex;
      gap: 2.4rem;
      align-items: flex-start;
  }

  .hero-left,
  .hero-right {
      flex: 1;
  }

  .hero-kicker {
      display: none;

      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #a5b4fc;
      margin-bottom: 0.75rem;
  }

  .hero-title {
      font-size: 2.5rem;
      line-height: 1.1;
      margin: 0 0 0.55rem;
  }

  .hero-title-line1 {
      display: block;
      font-size: 3.1rem;
      line-height: 1.05;
      margin-bottom: 0.15rem;
  }

  .hero-title-line2 {
      display: block;
      font-size: 2.05rem;
      line-height: 1.12;
      letter-spacing: 0.01em;
      white-space: nowrap;
  }


  .hero-subtitle {
      font-size: 1.05rem;
      color: #cbd5f5;
      margin-bottom: 1rem;
      max-width: 32rem;
  }

  /* van directly under text */
  .hero-van-inline {
      margin: 0.55rem 0 0.55rem;
  }

  .hero-van-image {
      border-radius: 1.25rem;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top, #1e293b, #020617 60%);
      padding: 0.75rem;
  }

  .hero-van-photo {
      width: 100%;
      height: auto;
      border-radius: 1rem;
      object-fit: contain;
      background: #020617;
  }

  .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
  }

  .hero-chip {
      padding: 0.45rem 0.9rem;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.8rem;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
  }


  /* HERO CTA: slightly larger buttons (hero only) */
  .hero-actions .pill {
      padding: 0.62rem 1.35rem;
      font-size: 0.95rem;
  }

  /* HERO CTA: Quick Quote accent (not orange) */
  .hero-actions .hero-quote-btn {

      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(147, 197, 253, 0.85);
      color: #0b1220;
      box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.10), 0 10px 24px rgba(0, 0, 0, 0.20);
  }

  .hero-actions .hero-quote-btn:hover {

      background: rgba(219, 234, 254, 0.85);
      border-color: rgba(191, 219, 254, 0.98);
      transform: translateY(-1px);
  }

  .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.75rem;
      color: #9ca3af;
  }

  .hero-meta strong {
      display: block;
      color: #e5e7eb;
      font-size: 0.9rem;
  }


  .hero-van-card {
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
      display: block;
  }


  .hero-van-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .hero-van-header span {
      font-size: 0.85rem;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.12em;
  }

  .hero-van-header strong {
      color: #e5e7eb;
      font-size: 0.95rem;
  }

  .hero-van-tag {
      background: rgba(22, 163, 74, 0.16);
      border-radius: var(--radius-pill);
      padding: 0.25rem 0.7rem;
      font-size: 0.75rem;
      color: #bbf7d0;
  }

  .hero-map {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-items: center;

      display: flex;
      justify-content: center;
  }

  /* NEW: real map image */

  .hero-map-graphic {
      border-radius: 1rem;
      border: 1px solid rgba(148, 163, 184, 0.55);
      padding: 0.25rem;
      background: transparent;
      overflow: hidden;
      max-width: 380px;
      max-height: 480px;
      width: 100%;
      height: 480px;
      margin: 0 auto;
  }


  .hero-map-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 0.9rem;

      width: 100%;
      height: 100%;
  }

  .hero-map-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
  }

  .hero-map-title {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #9ca3af;
      margin: 0 0 0.35rem;
  }

  .map-btn {
      width: 100%;
      border-radius: var(--radius-pill);
      padding: 0.5rem 0.75rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.7);
      color: #e5e7eb;
      font-size: 0.85rem;
      text-align: left;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.1s ease,
          border-color 0.15s ease;
  }

  .map-btn span {
      font-size: 0.75rem;
      color: #9ca3af;
      display: block;
  }

  .map-btn:hover {
      background: rgba(37, 99, 235, 0.18);
      border-color: #60a5fa;
      transform: translateY(-1px);
  }

  /* NEW: hero footer row for CTAs + stats */
  .hero-footer-row {
      margin-top: 0.85rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.25rem 1.75rem;
  }

  .hero-footer-row .hero-actions {
      margin-bottom: 0;
  }

  .hero-footer-row .hero-meta {
      margin-bottom: 0;
  }

  /* Section shell */
  section {
      padding: 3rem 0;
  }

  .section-header {
      text-align: center;
      margin-bottom: 2rem;
  }

  .section-kicker {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #6b7280;
      margin-bottom: 0.5rem;
  }

  .section-title {
      font-size: 1.9rem;
      margin: 0 0 0.4rem;
  }

  .section-subtitle {
      font-size: 0.95rem;
      color: #6b7280;
      max-width: 36rem;
      margin: 0.25rem auto 0;
  }

  /* Select vehicle */
  .select-vehicle {
      background: #f9fafb;
  }

  .vehicle-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 1.25rem;
      margin-bottom: 1.5rem;
  }

  .vehicle-grid {
      max-width: 75%;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
      display: flex;
      padding-bottom: 28px;
  }

  .vehicle-card {
      min-width: 130px;
  }

  /* .vehicle-sec {
    text-align: -webkit-center;
} */

  .vehicle-card {
      background: white;
      border-radius: 1rem;
      padding: 1rem;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      border: 1px solid rgba(148, 163, 184, 0.35);
  }

  .vehicle-card h3 {
      margin: 0;
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
  }

  .vehicle-badge {
      width: 72px;
      height: 72px;
      border-radius: 999px;
      background: #f3f4f6;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  }

  .vehicle-badge img {
      max-width: 70%;
      max-height: 70%;
      object-fit: contain;
  }

  .vehicle-footer {
      text-align: center;
      font-size: 0.85rem;
      color: #6b7280;
  }

  /* How it works */
  .how-it-works {
      background: white;
  }

  .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 1.25rem;
  }

  .step {
      position: relative;
      background: #f9fafb;
      border-radius: 1.25rem;
      padding: 1.25rem;
      border: 1px solid rgba(148, 163, 184, 0.5);
  }

  .step-number {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: var(--color-primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
  }

  .step-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
  }

  .step-text {
      font-size: 0.85rem;
      color: #6b7280;
  }

  /* SEO text section */
  .seo-text {
      background: var(--color-light);
  }

  .seo-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
      gap: 2.5rem;
      align-items: flex-start;
  }

  .seo-inner p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #4b5563;
  }

  .seo-inner ul {
      padding-left: 1.15rem;
      margin: 0.5rem 0 0;
      font-size: 0.9rem;
      color: #4b5563;
  }

  .seo-highlight-box {
      background: white;
      border-radius: 1.25rem;
      padding: 1.4rem 1.6rem;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(148, 163, 184, 0.45);
  }

  .seo-highlight-box h3 {
      margin: 0 0 0.7rem;
      font-size: 1rem;
  }

  .seo-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.75rem;
  }

  .seo-tag {
      font-size: 0.75rem;
      padding: 0.3rem 0.65rem;
      border-radius: var(--radius-pill);
      background: #eff6ff;
      color: #1d4ed8;
      border: 1px solid #bfdbfe;
  }

  /* Reviews */
  .reviews {
      background: white;
  }

  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
  }


  /* ===== Reviews text tweaks (no screenshots) ===== */
  .reviews-col .coming-soon {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: 0.02em;
  }

  .reviews-col .review-item {
      margin: 0.55rem 0;
      line-height: 1.35;
  }

  .reviews-col .review-meta {
      color: rgba(17, 24, 39, 0.65);
      font-weight: 500;
      font-size: 0.95em;
  }

  /* =========================================================
   TEMP: CUSTOMER REVIEWS — SITE REVIEWS HIDDEN ON MOBILE
   (Remove this block later when Site Reviews are ready)
   ========================================================= */
  .review-snippet.review-images {
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .review-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
  }

  @media (max-width: 640px) {
      .review-column.site-reviews {
          display: none !important;
      }
  }


  /* Reviews text formatting (no star badges) */
  .review-snippet.coming-soon {
      font-size: 1.05rem;
      font-weight: 700;
      margin-top: 10px;
  }

  .review-item {
      margin-top: 14px;
  }

  .review-item:first-child {
      margin-top: 0;
  }

  .review-quote {
      line-height: 1.5;
  }

  .review-author {
      margin-top: 6px;
      font-weight: 700;
  }

  .review-column {
      border-radius: 1.25rem;
      border: 1px solid rgba(148, 163, 184, 0.45);
      padding: 1.25rem 1.3rem;
      background: #f9fafb;
  }

  .review-column-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
  }

  .review-column-header span {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #6b7280;
  }

  .stars {
      font-size: 0.85rem;
      color: #f59e0b;
  }

  .review-snippet {
      font-size: 0.85rem;
      color: #4b5563;
      margin-bottom: 0.7rem;
  }

  .review-author {
      font-size: 0.8rem;
      color: #6b7280;
  }

  .review-controls {
      margin-top: 0.5rem;
      display: flex;
      justify-content: flex-end;
      gap: 0.4rem;
      font-size: 0.8rem;
      color: #9ca3af;
  }


  /* Footer */
  footer {
      background: #020617;
      color: #9ca3af;
      border-top: 1px solid rgba(148, 163, 184, 0.35);
      padding: 1.25rem 0;
      font-size: 0.8rem;
  }

  .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
  }

  .footer-left {
      display: flex;
      align-items: center;
      gap: 0.6rem;
  }

  .footer-left span {
      font-weight: 500;
      color: #e5e7eb;
  }

  .footer-center {
      text-align: center;
      flex: 1;
  }

  .footer-right {
      text-align: right;
  }

  /* .vehicle-card:hover {
      box-shadow: 0 6px 16px rgb(249 115 22 / 50%);
  } */


  /* Responsive */
  @media (max-width: 1024px) {
      .hero-inner {
          flex-direction: column;
      }

      .hero-right {
          /* width: 100%; */
          /* display: none; */
          margin: 0 auto;
      }

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

      .seo-inner {
          grid-template-columns: minmax(0, 1fr);
      }

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

      .contact-inner {
          grid-template-columns: minmax(0, 1fr);
      }

      .nav-menu {
          gap: 1rem;
      }

      .hero-footer-row {
          align-items: flex-start;
      }
  }

  @media (max-width: 768px) {
      /* .top-bar-right {
          display: none;
      } */

      .hero-subtitle {
          display: none;
      }

      .hero-right {
          /* display: none; */
      }

      .hero-title-line1 {
          display: block;
          font-size: 3.1rem;
          line-height: 1.05;
          margin-bottom: 0.15rem;
      }

      .hero-title-line2 {
          display: block;
          font-size: 2.05rem;
          line-height: 1.12;
          letter-spacing: 0.01em;
          white-space: nowrap;
      }

      .top-bar-inner {
          flex-direction: column;
          gap: 0.3rem;
      }

      .nav {
          flex-wrap: wrap;
          gap: 0.75rem;
      }

      .nav-menu {
          display: none;
          /* basic mobile */
      }

      .hero {
          padding-top: 2.5rem;
      }

      .hero-title {
          font-size: 2rem;
      }

      section {
          padding: 2.5rem 0;
      }

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

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

      .contact form {
          grid-template-columns: minmax(0, 1fr);
      }

      .footer-inner {
          flex-direction: column;
          align-items: flex-start;
      }

      .footer-center,
      .footer-right {
          text-align: left;
      }

      .hero-footer-row {
          flex-direction: column;
      }
  }


  html {
      scroll-behavior: smooth;
  }

  [id] {
      scroll-margin-top: 110px;
  }

  @media (max-width: 768px) {
      [id] {
          scroll-margin-top: 92px;
      }
  }


  .label-mobile {
      display: none;
  }

  @media (max-width: 768px) {
      .label-desktop {
          display: none;
      }

      .label-mobile {
          display: inline;
      }
  }

  @media (max-width: 1024px) {
      .hero-title-line1 {
          font-size: 2.75rem;
      }

      .hero-title-line2 {
          font-size: 1.9rem;
      }
  }

  @media (max-width: 768px) {
      .hero-title-line1 {
          font-size: 2.2rem;
      }

      .hero-title-line2 {
          font-size: 1.6rem;
          white-space: normal;
      }
  }


  /* HERO: desktop-only bullet chips under van */
  .hero-chips {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      width: 100%;
      max-width: 680px;
      margin: 0.25rem auto 18px;
      justify-items: stretch;
  }

  .hero-chip {
      padding: 0.45rem 0.9rem;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.8rem;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  /* Tighten spacing between van/chips/buttons (desktop) */
  .hero-van-inline {
      margin: 0.45rem 0 0.35rem;
  }

  .hero-actions {
      margin: 0.35rem 0 0;
  }

  /* Service Area block (desktop only) */
  .service-area-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0.75rem;
      text-align: center;
  }

  .service-area-map {
      width: 100%;
      height: auto;
      max-width: 340px;
      max-height: 440px;
      border-radius: 0.9rem;
      display: block;
  }


  .service-area-block .section-title {
      font-size: 2.15rem;
      margin-bottom: 0.25rem;
  }

  @media (max-width: 768px) {

      /* Mobile: revert hero CTA sizing to base pill size */
      .hero-actions .pill {
          padding: 0.55rem 1.2rem;
          font-size: 0.9rem;
      }

      /* Mobile: keep a small gap between van and buttons area (chips hidden) */
      .hero-actions {
          margin-top: 18px;
      }
  }

  @media (max-width: 768px) {
      /* .hero-chips {
          display: none;
      } */

      .hero-right {
          /* display: none; */
      }
  }

  @media (max-width: 767px) {
      .hero-chips {
          grid-template-columns: repeat(1, minmax(0, 1fr));
          padding-bottom: 10px;
      }
  }



  /* === HERO: Service Locations (map + list bubble) === */
  .service-locations-card {
      width: 100%;
      max-width: 660px;
      margin-left: auto;
      border-radius: 22px;
      padding: 14px;
      background: rgba(10, 18, 34, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
      display: grid;
      grid-template-columns: 1fr 230px;
      gap: 14px;
      height: 480px;
      /* keep hero height stable; no map scrolling */
  }

  .sl-map-wrap {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.18);
      height: 100%;
  }

  .sl-map-iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
  }

  .sl-list-wrap {
      border-radius: 18px;
      border: 1px solid rgba(11, 27, 50, 0.12);
      background: #ffffff;
      height: 100%;
      overflow: hidden;
      /* prevent internal scrolling */
      box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  }

  .sl-list-inner {
      height: 100%;
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .sl-list-title {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.3px;
      color: #0b1b32;
      text-align: center;
  }

  .sl-divider {
      height: 1px;
      width: 100%;
      background: rgba(11, 27, 50, 0.14);
  }

  .sl-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
  }

  .sl-group-title {
      font-size: 16px;
      font-weight: 800;
      color: #0b1b32;
      text-align: center;
  }

  .sl-pill {
      width: 100%;
      max-width: 170px;
      text-align: center;
      padding: 10px 12px;
      border-radius: 999px;
      border: 3px solid rgba(20, 92, 132, 0.95);
      color: #0b1b32;
      background: #ffffff;
      box-shadow: 0 0 0 1px rgba(20, 92, 132, 0.14), 0 10px 18px rgba(0, 0, 0, 0.18);
      font-weight: 800;
      letter-spacing: 0.2px;
      line-height: 1.05;
  }

  .sl-pill-multi {
      padding: 10px 12px 8px;
  }

  .sl-pill-main {
      display: block;
  }

  .sl-pill-sub {
      display: block;
      margin-top: 4px;
      font-size: 11px;
      font-weight: 700;
      color: rgba(11, 27, 50, 0.70);
  }

  /* keep existing mobile behavior: hide hero-right area */
  @media (max-width: 768px) {
      .service-locations-card {
          grid-template-columns: auto;
          height: auto;
          /* display: none; */
      }

      iframe.sl-map-iframe {
          min-height: 500px;
      }
  }


  @media (min-width: 769px) {
      .contact-inner {
          display: block;
      }

  }