  :root {
      --ink: #12213A;
      --ink-soft: #1E3358;
      --amber: #FFB020;
      --amber-deep: #E8940A;
      --kraft: #D8C9AE;
      --cloud: #F7F3EC;
      --route-red: #E14434;
      --steel: #5C6779;
      --white: #FFFFFF;
      --line: rgba(18, 33, 58, 0.12);
      --radius: 14px;
      --nav-bg: rgba(247, 243, 236, 0.92);
      --card-bg: #FFFFFF;
      --card-border: #e2e8f0;
      --bg-alt: #f8fafc;
      --text-muted: #64748b;
      --number-watermark: #f1f5f9;
  }

  [data-theme="dark"] {
      --ink: #f8fafc;
      --ink-soft: #cbd5e1;
      --cloud: #0f172a;
      --kraft: #1e2d45;
      --steel: #94a3b8;
      --white: #1e293b;
      --line: rgba(255, 255, 255, 0.12);
      --nav-bg: rgba(15, 23, 42, 0.92);
      --card-bg: #1e293b;
      --card-border: #334155;
      --bg-alt: #0f172a;
      --text-muted: #94a3b8;
      --number-watermark: #334155;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: var(--cloud);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      transition: background-color 0.3s ease, color 0.3s ease;
  }

  h1,
  h2,
  h3,
  .display {
      font-family: 'Archivo Black', sans-serif;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      line-height: 0.98;
      margin: 0;
  }

  .mono {
      font-family: 'IBM Plex Mono', monospace;
  }

  a {
      color: inherit;
  }

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

  :focus-visible {
      outline: 3px solid var(--amber-deep);
      outline-offset: 2px;
  }

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
  }

  /* ===== BREADCRUMBS ===== */
  .breadcrumb-nav {
      background: var(--cloud);
      border-bottom: 1px solid var(--line);
      padding: 10px 0;
  }

  .breadcrumb-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 2px;
  }

  .breadcrumb-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      font-weight: 500;
      color: var(--steel);
  }

  .breadcrumb-item a {
      color: var(--steel);
      text-decoration: none;
      transition: color 0.15s ease;
  }

  .breadcrumb-item a:hover {
      color: var(--amber);
  }

  .breadcrumb-current span {
      color: var(--ink);
      font-weight: 600;
  }

  .breadcrumb-sep {
      color: var(--steel);
      opacity: 0.5;
      display: flex;
      align-items: center;
  }

  .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--route-red);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .eyebrow::before {
      content: "";
      width: 22px;
      height: 2px;
      background: var(--route-red);
      display: inline-block;
  }

  section {
      position: relative;
  }

  /* ===== NAV ===== */
  header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--nav-bg);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
      transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 28px;
      max-width: 1180px;
      margin: 0 auto;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Archivo Black';
      font-size: 19px;
      text-transform: uppercase;
      text-decoration: unset;
  }

  .logo .dot {
      width: 11px;
      height: 11px;
      background: var(--route-red);
      border-radius: 2px;
      transform: rotate(45deg);
  }

  .navlinks {
      display: flex;
      gap: 6px;
      align-items: center;
      font-size: 14.5px;
      font-weight: 600;
  }

  .navlinks a {
      text-decoration: none;
      opacity: 0.75;
      transition: opacity .2s;
  }

  .navlinks a:hover {
      opacity: 1;
  }

  .nav-item {
      position: relative;
  }

  .nav-item>a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 10px 12px;
      border-radius: 8px;
  }

  .nav-item>a:hover {
      opacity: 1;
      background: rgba(18, 33, 58, 0.06);
  }

  .nav-item .chev {
      width: 10px;
      height: 10px;
      transition: transform .18s ease;
      opacity: 0.6;
  }

  .nav-item:hover .chev {
      transform: rotate(180deg);
  }

  .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 230px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 10px;
      box-shadow: 0 20px 40px -18px rgba(18, 33, 58, 0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity .16s ease, transform .16s ease, visibility .16s;
      display: flex;
      flex-direction: column;
      gap: 1px;
      z-index: 60;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown a {
      display: block;
      padding: 9px 12px;
      border-radius: 8px;
      font-size: 13.8px;
      font-weight: 600;
      opacity: 0.82;
      white-space: nowrap;
  }

  .dropdown a:hover {
      opacity: 1;
      background: var(--cloud);
  }

  .dropdown .all-link {
      margin-top: 6px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
      color: var(--route-red);
      font-weight: 700;
      font-size: 13px;
  }

  .dropdown .region-label {
      font-family: 'IBM Plex Mono';
      font-size: 10.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--steel);
      padding: 8px 12px 2px;
      opacity: 0.7;
  }

  .navphone {
      font-family: 'IBM Plex Mono';
      font-weight: 600;
      font-size: 14.5px;
      white-space: nowrap;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: var(--cloud);
      font-weight: 700;
      font-size: 14px;
      padding: 13px 22px;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform .15s ease, background .2s ease;
  }

  .btn:hover {
      background: var(--ink-soft);
      transform: translateY(-2px);
  }

  .btn-amber {
      background: var(--amber);
      color: var(--ink);
  }

  .btn-amber:hover {
      background: var(--amber-deep);
  }

  /* ===== MOBILE HEADER & DRAWER MENU ===== */
  .nav-icon-btn {
      background: var(--white);
      border: 1px solid var(--line);
      color: var(--ink);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  }

  .mobile-menu-btn {
      display: none;
      background: var(--white);
      border: 1px solid var(--line);
      color: var(--ink);
      width: 40px;
      height: 40px;
      border-radius: 10px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  }

  .hamburger-box {
      width: 20px;
      height: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
  }

  .hamburger-box span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(4px);
      z-index: 9998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  .mobile-menu-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 320px;
      max-width: 86vw;
      background: var(--card-bg);
      color: var(--ink);
      z-index: 9999;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  }
  .mobile-menu-drawer.active {
      transform: translateX(0);
  }

  .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
  }

  .mobile-menu-close-btn {
      background: var(--cloud);
      border: 1px solid var(--line);
      color: var(--ink);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .mobile-menu-body {
      padding: 16px 20px 28px;
      overflow-y: auto;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .mobile-nav-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .mobile-acc {
      border-bottom: 1px solid var(--line);
      padding: 6px 0;
  }

  .mobile-acc summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 4px;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      cursor: pointer;
      user-select: none;
  }

  .mobile-acc summary .m-chev {
      width: 16px;
      height: 16px;
      stroke: var(--steel);
      transition: transform 0.2s ease;
  }
  .mobile-acc[open] summary .m-chev {
      transform: rotate(180deg);
  }

  .mobile-acc-content {
      padding: 6px 0 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .mobile-acc-content a {
      font-size: 14.5px;
      color: var(--steel);
      text-decoration: none;
      font-weight: 500;
      padding: 4px 0;
  }
  .mobile-acc-content a.all-link {
      color: var(--route-red);
      font-weight: 700;
  }

  .mobile-single-link {
      display: block;
      padding: 14px 4px;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--line);
  }

  .mobile-menu-footer {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .mobile-phone-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      background: var(--cloud);
      border: 1px solid var(--line);
      border-radius: 10px;
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 600;
      font-size: 14px;
      color: var(--ink);
      text-decoration: none;
  }

  @media (max-width:1050px) {
      .navlinks {
          display: none;
      }
      .mobile-menu-btn {
          display: flex;
      }
      .desktop-only {
          display: none !important;
      }
  }

  /* ===== ROUTE LINE (signature element) ===== */
  .route-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      transform: translateX(-50%);
      background-image: linear-gradient(var(--ink) 60%, transparent 0%);
      background-size: 4px 26px;
      background-repeat: repeat-y;
      opacity: 0.14;
      z-index: 0;
  }

  @media (max-width:900px) {
      .route-line {
          display: none;
      }
  }

  /* ===== HERO ===== */
  .hero {
      padding: 88px 0 60px;
      overflow: hidden;
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 50px;
      align-items: center;
  }

  .hero h1 {
      font-size: clamp(40px, 6vw, 74px);
  }

  .hero h1 span {
      color: var(--route-red);
  }

  .hero p.lead {
      font-size: 18px;
      color: var(--steel);
      max-width: 480px;
      margin: 22px 0 30px;
      font-weight: 500;
      line-height: 1.55;
  }

  .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .badges {
      display: flex;
      gap: 22px;
      margin-top: 38px;
      flex-wrap: wrap;
  }

  .badge {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink-soft);
  }

  .badge svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
  }

  .hero-art {
      position: relative;
  }

  .sign {
      background: var(--ink);
      border-radius: 20px;
      padding: 34px 30px;
      color: var(--cloud);
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 50px -20px rgba(18, 33, 58, 0.45);
  }

  .sign::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, rgba(255, 176, 32, 0.06) 0 14px, transparent 14px 28px);
  }

  .sign-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
  }

  .sign-head .maple {
      width: 34px;
      height: 34px;
      color: var(--amber);
  }

  .odometer {
      font-family: 'IBM Plex Mono';
      font-size: 46px;
      font-weight: 600;
      margin-top: 22px;
      position: relative;
      color: var(--amber);
  }

  .odometer+p {
      opacity: 0.72;
      font-size: 13px;
      margin-top: 6px;
      position: relative;
  }

  .sign-route {
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px dashed rgba(255, 255, 255, 0.25);
      position: relative;
  }

  .sign-route .r {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      padding: 7px 0;
      font-weight: 600;
      opacity: 0.9;
  }

  .sign-route .r span:last-child {
      color: var(--amber);
      font-family: 'IBM Plex Mono';
  }

  /* ===== TRUST STRIP ===== */
  .trust {
      background: var(--ink);
      color: var(--cloud);
      padding: 16px 0;
  }

  .trust .wrap {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px 34px;
  }

  .trust span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      gap: 9px;
      opacity: 0.9;
  }

  .trust svg {
      width: 16px;
      height: 16px;
      color: var(--amber);
  }

  /* ===== SERVICES ===== */
  .services {
      padding: 96px 0 60px;
  }

  .section-head {
      max-width: 620px;
      margin-bottom: 52px;
  }

  .section-head h2 {
      font-size: clamp(30px, 4vw, 44px);
      margin-top: 14px;
  }

  .section-head p {
      color: var(--steel);
      font-size: 16px;
      margin-top: 14px;
      font-weight: 500;
      line-height: 1.6;
  }

  /* ===== IMAGE SERVICE CARDS ===== */
  .srv-img-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
  }

  .srv-img-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
      display: flex;
      flex-direction: column;
      position: relative;
  }

  .srv-img-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
      border-color: var(--amber);
  }

  .srv-img-card-thumb {
      position: relative;
      width: 100%;
      height: 190px;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-alt);
  }

  .srv-img-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
  }

  .srv-img-card:hover .srv-img-card-thumb img {
      transform: scale(1.08);
  }

  .srv-img-card-icon {
      position: absolute;
      bottom: -18px;
      left: 18px;
      width: 42px;
      height: 42px;
      background: var(--amber);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
      border: 3px solid var(--card-bg);
      z-index: 2;
  }

  .srv-img-card-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--ink);
  }

  .srv-img-card-popular {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--amber);
      color: var(--ink);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .srv-img-card-body {
      padding: 32px 20px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .srv-img-card-body h3 {
      font-family: 'Inter', sans-serif;
      text-transform: none;
      font-size: 17px;
      font-weight: 800;
      color: var(--ink);
      margin: 0 0 8px;
      line-height: 1.3;
  }

  .srv-img-card-body p {
      font-size: 13.8px;
      color: var(--steel);
      line-height: 1.55;
      flex: 1;
      margin: 0;
      font-weight: 500;
  }

  .srv-img-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 700;
      color: var(--route-red);
      text-decoration: none;
      transition: gap 0.2s ease;
  }

  .srv-img-card-link:hover {
      gap: 10px;
  }

  @media (max-width: 1100px) {
      .srv-img-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 860px) {
      .srv-img-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .srv-img-card-thumb { height: 160px; }
  }
  @media (max-width: 580px) {
      .srv-img-grid { grid-template-columns: 1fr; }
  }

  .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
  }

  .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px 20px;
      position: relative;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px -24px rgba(18, 33, 58, 0.35);
      border-color: transparent;
  }

  .service-card .tag {
      position: absolute;
      top: -1px;
      right: 20px;
      background: var(--amber);
      color: var(--ink);
      font-family: 'IBM Plex Mono';
      font-size: 10.5px;
      font-weight: 600;
      padding: 4px 9px 5px;
      border-radius: 0 0 6px 6px;
      letter-spacing: 0.04em;
  }

  .service-card svg {
      width: 32px;
      height: 32px;
      color: var(--route-red);
      margin-bottom: 16px;
  }

  .service-card h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
      letter-spacing: 0;
  }

  .service-card p {
      font-size: 13.8px;
      color: var(--steel);
      margin-top: 9px;
      line-height: 1.5;
      font-weight: 500;
  }

  .service-card svg {
      width: 28px;
      height: 28px;
      color: var(--route-red);
      margin-bottom: 14px;
  }

  @media (max-width:1100px) {
      .service-grid {
          grid-template-columns: 1fr 1fr 1fr;
      }
  }

  @media (max-width:900px) {
      .service-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width:600px) {
      .service-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ===== HOW IT WORKS — route journey ===== */
  .journey {
      padding: 70px 0 100px;
  }

  .stops {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
  }

  .stop {
      background: var(--white);
      border-radius: var(--radius);
      padding: 26px 22px 24px;
      border: 1px solid var(--line);
      position: relative;
  }

  .stop .mile {
      font-family: 'IBM Plex Mono';
      font-size: 12px;
      color: var(--route-red);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
  }

  .stop .mile::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--route-red);
      box-shadow: 0 0 0 4px rgba(225, 68, 52, 0.15);
  }

  .stop h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
  }

  .stop p {
      font-size: 13.8px;
      color: var(--steel);
      margin-top: 8px;
      line-height: 1.55;
      font-weight: 500;
  }

  .stops::after {
      content: "";
      position: absolute;
      top: 32px;
      left: 6%;
      right: 6%;
      height: 2px;
      background-image: linear-gradient(90deg, var(--ink) 50%, transparent 0%);
      background-size: 16px 2px;
      opacity: 0.18;
      z-index: -1;
  }

  @media (max-width:900px) {
      .stops {
          grid-template-columns: 1fr 1fr;
      }

      .stops::after {
          display: none;
      }
  }

  @media (max-width:600px) {
      .stops {
          grid-template-columns: 1fr;
      }
  }

  /* ===== STATS BAND ===== */
  .stats {
      background: var(--ink);
      color: var(--cloud);
      padding: 60px 0;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
  }

  .stat .num {
      font-family: 'IBM Plex Mono';
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 600;
      color: var(--amber);
  }

  .stat .lbl {
      font-size: 12.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.7;
      margin-top: 8px;
      font-weight: 700;
  }

  @media (max-width:700px) {
      .stats-grid {
          grid-template-columns: 1fr 1fr;
          row-gap: 34px;
      }
  }

  /* ===== WHY US ===== */
  .why {
      padding: 100px 0;
  }

  .why-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: start;
  }

  .why-list {
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .why-item {
      display: flex;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
  }

  .why-item:first-child {
      padding-top: 0;
  }

  .why-item .n {
      font-family: 'IBM Plex Mono';
      font-weight: 600;
      color: var(--route-red);
      font-size: 14px;
      padding-top: 3px;
  }

  .why-item h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
  }

  .why-item p {
      font-size: 14.5px;
      color: var(--steel);
      margin-top: 6px;
      font-weight: 500;
      line-height: 1.55;
  }

  .quote-card {
      background: var(--kraft);
      border-radius: 20px;
      padding: 40px 34px;
      position: relative;
      overflow: hidden;
  }

  .quote-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(0deg, rgba(18, 33, 58, 0.05) 0 1px, transparent 1px 38px);
  }

  .quote-card blockquote {
      font-family: 'Archivo Black';
      text-transform: none;
      font-size: 22px;
      line-height: 1.35;
      position: relative;
      margin: 0;
  }

  .quote-card .who {
      margin-top: 22px;
      font-size: 13.5px;
      font-weight: 700;
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .quote-card .who .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Archivo Black';
      font-size: 15px;
  }

  .stars {
      display: flex;
      gap: 3px;
      margin-top: 16px;
      position: relative;
  }

  .stars svg {
      width: 16px;
      height: 16px;
      color: var(--amber-deep);
  }

  /* ===== MOVING TIPS ===== */
  .tips {
      padding: 20px 0 100px;
  }

  .tips-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
  }

  .tip-card {
      background: var(--kraft);
      border-radius: var(--radius);
      padding: 26px 22px 24px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      transition: background 0.3s ease, border-color 0.3s ease;
  }

  .tip-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 22px;
      width: 54px;
      height: 16px;
      background: var(--line);
      border-left: 1px dashed var(--line);
      border-right: 1px dashed var(--line);
  }

  .tip-card .tip-no {
      font-family: 'IBM Plex Mono';
      font-size: 12px;
      font-weight: 700;
      color: var(--route-red);
      letter-spacing: 0.06em;
      margin-top: 10px;
  }

  .tip-card h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
      margin-top: 10px;
      color: var(--ink);
  }

  .tip-card p {
      font-size: 13.8px;
      color: var(--ink-soft);
      margin-top: 8px;
      line-height: 1.55;
      font-weight: 500;
      opacity: 0.85;
  }

  .tip-card svg {
      width: 26px;
      height: 26px;
      color: var(--ink);
      margin-top: 16px;
      opacity: 0.75;
  }

  .tips-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 34px;
      flex-wrap: wrap;
      gap: 16px;
  }

  .tips-foot p {
      font-size: 14px;
      color: var(--steel);
      font-weight: 600;
      max-width: 460px;
  }

  @media (max-width:1100px) {
      .tips-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width:600px) {
      .tips-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ===== ABOUT US ===== */
  .about {
      padding: 100px 0;
  }

  .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 56px;
      align-items: center;
  }

  .about-card {
      background: var(--ink);
      border-radius: 20px;
      padding: 40px 34px;
      color: var(--cloud);
      position: relative;
      overflow: hidden;
  }

  .about-card::before {
      content: "";
      position: absolute;
      left: -60px;
      bottom: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 176, 32, 0.14), transparent 70%);
  }

  .about-card .yr {
      font-family: 'IBM Plex Mono';
      font-size: 13px;
      color: var(--amber);
      font-weight: 700;
      letter-spacing: 0.06em;
  }

  .about-card h3 {
      font-family: 'Archivo Black';
      text-transform: uppercase;
      font-size: 26px;
      margin-top: 10px;
      position: relative;
  }

  .about-card p {
      opacity: 0.75;
      font-size: 14.5px;
      margin-top: 14px;
      font-weight: 500;
      line-height: 1.6;
      position: relative;
  }

  .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 26px;
      position: relative;
  }

  .about-values div {
      border-top: 1px solid rgba(247, 243, 236, 0.18);
      padding-top: 12px;
  }

  .about-values .v-num {
      font-family: 'IBM Plex Mono';
      color: var(--amber);
      font-size: 20px;
      font-weight: 600;
  }

  .about-values .v-lbl {
      font-size: 12px;
      opacity: 0.7;
      margin-top: 2px;
      font-weight: 600;
  }

  .team-row {
      display: flex;
      gap: -8px;
      margin-top: 18px;
  }

  .team-row .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--amber);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Archivo Black';
      font-size: 14px;
      margin-left: -10px;
      border: 3px solid var(--ink);
  }

  .team-row .avatar:first-child {
      margin-left: 0;
  }

  /* ===== FAQ ===== */
  .faq {
      padding: 0 0 100px;
  }

  .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 22px 0;
  }

  .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      gap: 20px;
      font-weight: 800;
      font-size: 15.5px;
  }

  .faq-q svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      transition: transform .2s ease;
      color: var(--route-red);
  }

  .faq-item[open] .faq-q svg {
      transform: rotate(45deg);
  }

  .faq-a {
      font-size: 14.5px;
      color: var(--steel);
      margin-top: 12px;
      font-weight: 500;
      line-height: 1.6;
      max-width: 640px;
  }

  summary::-webkit-details-marker {
      display: none;
  }

  summary {
      list-style: none;
  }

  /* ===== SERVICE AREA ===== */
  .area {
      padding: 0 0 100px;
  }

  .area-box {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 44px;
      text-align: center;
  }

  .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 26px;
  }

  .chip {
      font-size: 13px;
      font-weight: 700;
      font-family: 'IBM Plex Mono';
      padding: 8px 15px;
      border-radius: 20px;
      background: var(--cloud);
      border: 1px solid var(--line);
  }

  /* ===== CTA / CONTACT SECTION — Always dark, theme-independent ===== */
  .cta {
      background: #12213A !important;
      color: #F7F3EC !important;
      padding: 90px 0;
      position: relative;
      overflow: hidden;
  }

  .cta::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 176, 32, 0.16), transparent 70%);
  }

  .cta-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 56px;
      position: relative;
  }

  .cta h2 {
      font-size: clamp(28px, 4vw, 42px);
      max-width: 460px;
      color: #F7F3EC !important;
  }

  .cta > .wrap > div > p,
  .cta > .wrap > div > div > p {
      color: rgba(247, 243, 236, 0.75);
      margin-top: 16px;
      max-width: 420px;
      font-weight: 500;
      line-height: 1.6;
  }

  /* Protect form subtitles inside CTA from the light color override */
  .contact-form-subtitle,
  .quick-quote-subtitle {
      color: #64748b !important;
  }

  .form-card {
      background: var(--cloud);
      color: var(--ink);
      border-radius: 18px;
      padding: 30px;
  }

  .form-card h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
  }

  .form-card input,
  .form-card select {
      width: 100%;
      padding: 12px 14px;
      border-radius: 9px;
      border: 1px solid var(--line);
      background: var(--white);
      font-family: 'Inter';
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
  }

  .form-card input::placeholder {
      color: #9AA1AC;
  }

  .form-card .full {
      grid-column: 1/-1;
  }

  .form-card button {
      width: 100%;
      margin-top: 6px;
      justify-content: center;
      padding: 14px;
  }

  footer {
      padding: 36px 0;
      border-top: 1px solid var(--line);
  }

  .foot-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
  }

  .foot-grid .logo {
      font-size: 16px;
  }

  .foot-links {
      display: flex;
      gap: 24px;
      font-size: 13.5px;
      font-weight: 600;
      opacity: 0.75;
  }

  .foot-links a {
      text-decoration: none;
  }

  /* ===== COMPREHENSIVE RESPONSIVE STYLES FOR ALL FRONTEND PAGES ===== */
  @media (max-width: 992px) {
      .wrap {
          padding: 0 20px;
      }

      .hero-grid,
      .why-grid,
      .cta-grid,
      .service-grid,
      .journey-grid,
      .stats-grid,
      .about-grid,
      .locations-grid {
          grid-template-columns: 1fr !important;
          gap: 32px !important;
      }

      .hero-art {
          order: -1;
      }

      .grid-4, .grid-3, .grid-2 {
          grid-template-columns: repeat(2, 1fr) !important;
      }
  }

  @media (max-width: 768px) {
      body {
          font-size: 14.5px;
      }

      h1 {
          font-size: clamp(28px, 7vw, 40px) !important;
      }

      h2 {
          font-size: clamp(22px, 5.5vw, 32px) !important;
      }

      .grid-4, .grid-3, .grid-2 {
          grid-template-columns: 1fr !important;
      }

      .nav {
          padding: 12px 20px;
          gap: 12px;
      }

      .form-row {
          grid-template-columns: 1fr !important;
          gap: 12px !important;
      }

      .area-box {
          padding: 28px 18px !important;
      }

      .form-card {
          padding: 22px 18px !important;
      }

      .cta {
          padding: 50px 0 !important;
      }

      .hero-ctas {
          flex-direction: column !important;
          gap: 12px !important;
          width: 100%;
      }

      .hero-ctas .btn {
          width: 100% !important;
          justify-content: center !important;
          text-align: center !important;
      }

      .badges {
          flex-wrap: wrap !important;
          gap: 8px !important;
      }
  }

  @media (max-width: 480px) {
      .wrap {
          padding: 0 16px;
      }

      .logo {
          font-size: 16px;
      }

      .navphone {
          font-size: 12px;
      }

      .btn {
          padding: 10px 16px;
          font-size: 13.5px;
      }

      .foot-grid {
          flex-direction: column !important;
          text-align: center !important;
          gap: 16px !important;
      }

      .foot-links {
          flex-wrap: wrap !important;
          justify-content: center !important;
          gap: 14px !important;
      }
  }

  @media (prefers-reduced-motion: reduce) {
      * {
          transition: none !important;
          scroll-behavior: auto !important;
      }
  }

  /* ===== BACK TO TOP BUTTON ===== */
  #back-to-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: var(--amber);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 18px rgba(255, 176, 32, 0.38);
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px) scale(0.85);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
      padding: 0;
  }

  #back-to-top.btt-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
  }

  #back-to-top:hover {
      background: var(--amber-deep);
      box-shadow: 0 6px 24px rgba(255, 176, 32, 0.55);
      transform: translateY(-2px) scale(1.07);
  }

  #back-to-top:active {
      transform: scale(0.95);
  }

  /* SVG progress ring — sits behind the arrow */
  .btt-progress {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg); /* start at top */
      pointer-events: none;
  }

  .btt-track {
      fill: none;
      stroke: rgba(0, 0, 0, 0.12);
      stroke-width: 3;
  }

  .btt-fill {
      fill: none;
      stroke: #0f172a;
      stroke-width: 3;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.1s linear;
  }

  [data-theme="dark"] .btt-fill {
      stroke: #0f172a;
  }

  /* Arrow icon on top */
  .btt-arrow {
      position: relative;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
  }

  @media (max-width: 480px) {
      #back-to-top {
          bottom: 18px;
          right: 18px;
          width: 42px;
          height: 42px;
      }
      .btt-arrow {
          width: 15px;
          height: 15px;
      }
  }
