  :root {
      --color-primary: #1d4ed8;
      /* blue */
      --color-accent: #f97316;
      /* orange */
      --color-dark: #0f172a;
      --color-light: #f3f4f6;
      --radius-pill: 999px;
      --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
  }

  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #e5e7eb;
      color: #111827;
  }

  /* html {
      scroll-behavior: smooth;
      scroll-padding-top: 70px;
  } */

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

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

  /* Top bar + nav */
  /* .top-bar {
      background: #020617;
      color: #e5e7eb;
      font-size: 0.85rem;
      padding: 0.35rem 0;
  }

  .top-bar-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
  }

  header {
      background: white;
      border-bottom: 1px solid #e5e7eb;
  }

  .nav {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
  }

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

  .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 2px solid #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
  }

  .nav-menu {
      display: flex;
      gap: 1.25rem;
      font-size: 0.9rem;
  }

  .nav-cta {
      display: flex;
      gap: 0.75rem;
  } */

  .pill {
      border-radius: var(--radius-pill);
      padding: 0.45rem 1.1rem;
      font-size: 0.85rem;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
  }

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

  .pill-outline {
      background: transparent;
      color: #111827;
      border-color: #cbd5f5;
  }

  .pill[disabled] {
      opacity: 0.65;
      cursor: not-allowed;
  }

  /* Hero */
  .hero {
      background: white;
      padding: 2.5rem 0 2rem;
      border-bottom: 1px solid #e5e7eb;
  }

  .hero-inner {
      display: flex;
      gap: 2rem;
      align-items: center;
  }

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

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

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

  .hero-sub {
      font-size: 0.95rem;
      color: #4b5563;
      margin-bottom: 1.25rem;
  }

  .hero-list {
      font-size: 0.9rem;
      color: #4b5563;
      padding-left: 1.1rem;
      margin-bottom: 1.25rem;
  }

  .hero-card {
      background: #0f172a;
      color: #e5e7eb;
      border-radius: 1.25rem;
      padding: 1.25rem 1.5rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
  }

  .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
      font-size: 0.75rem;
  }

  .hero-badge {
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-pill);
      border: 1px solid #4b5563;
  }

  /* Section wrapper */
  .section {
      padding: 2.5rem 0;
  }

  .section-title {
      margin: 0 0 0.25rem;
      font-size: 1.5rem;
  }

  .section-sub {
      margin: 0 0 1.5rem;
      font-size: 0.9rem;
      color: #4b5563;
  }

  /* Timeline (How Mobile Service Works) */
  .timeline-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
  }

  .timeline-card {
      background: white;
      border-radius: 1.25rem;
      padding: 1.1rem 1.2rem;
      border: 1px solid #e5e7eb;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      display: flex;
      gap: 0.8rem;
  }

  .timeline-step {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: #1d4ed8;
      color: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 600;
      flex-shrink: 0;
  }

  .timeline-card h3 {
      margin: 0 0 0.25rem;
      font-size: 0.95rem;
  }

  .timeline-card p {
      margin: 0;
      color: #4b5563;
      font-size: 0.86rem;
  }

  /* Fees section */
  .fees-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 2rem;
      align-items: flex-start;
  }

  .fees-table {
      background: white;
      border-radius: 1.25rem;
      padding: 1.2rem 1.3rem;
      border: 1px solid #e5e7eb;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
  }

  .fees-table table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.86rem;
  }

  .fees-table th,
  .fees-table td {
      padding: 0.45rem 0.35rem;
      text-align: left;
      border-bottom: 1px solid #e5e7eb;
  }

  .fees-table th {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
  }

  .fees-table tr:last-child td {
      border-bottom: none;
  }

  .fees-note {
      margin-top: 0.8rem;
      font-size: 0.8rem;
      color: #6b7280;
  }

  .fees-cards {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }

  .fee-card {
      background: white;
      border-radius: 1.1rem;
      padding: 0.9rem 1rem;
      border: 1px solid #e5e7eb;
      box-shadow: var(--shadow-soft);
      font-size: 0.86rem;
  }

  .fee-card-header {
      display: flex;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
  }

  .fee-card-title {
      font-weight: 600;
  }

  .fee-card-chip {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-pill);
      background: #eff6ff;
      color: #1d4ed8;
      border: 1px solid #bfdbfe;
  }

  .fee-card p {
      margin: 0;
      font-size: 0.8rem;
      color: #4b5563;
  }

  /* Travel fee estimator */
  .estimator-card {
      background: white;
      border-radius: 1.1rem;
      padding: 0.9rem 1rem 1rem;
      border: 1px solid #e5e7eb;
      box-shadow: var(--shadow-soft);
      font-size: 0.86rem;
      margin-bottom: 0.75rem;
  }

  .estimator-card h3 {
      margin: 0 0 0.35rem;
      font-size: 0.95rem;
  }

  .estimator-fields {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 0.5rem 0 0.75rem;
  }

  .estimator-input {
      flex: 1 1 120px;
      min-width: 0;
  }

  .estimator-input label {
      display: block;
      font-size: 0.75rem;
      color: #6b7280;
      margin-bottom: 0.1rem;
  }

  .estimator-input input {
      width: 100%;
      padding: 0.35rem 0.5rem;
      border-radius: 0.55rem;
      border: 1px solid #d1d5db;
      font-size: 0.85rem;
  }

  .estimator-input-wrap {
      position: relative;
  }

  .location-suggestions {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 6px);
      background: #ffffff;
      border: 1px solid #d1d5db;
      border-radius: 0.55rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
      max-height: 220px;
      overflow: auto;
      z-index: 50;
  }

  .location-suggestion {
      padding: 0.55rem 0.6rem;
      font-size: 0.85rem;
      line-height: 1.25;
      cursor: pointer;
  }

  .location-suggestion:hover {
      background: #f3f4f6;
  }

  .estimator-result {
      font-size: 0.8rem;
      color: #4b5563;
  }

  /* What to expect */

  /* --- FEES SECTION LAYOUT OVERRIDE (TEMP) --- */
  #fees .fees-wrapper {
      display: flex;
      gap: 18px;
      align-items: flex-start;
  }

  #fees .fees-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 18px;
      min-width: 0;
  }

  #fees .van-card img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
  }

  #fees .estimator-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 12px;
  }

  #fees .estimator-fee-big {
      margin-left: auto;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--color-accent);
      color: #fff;
      font-weight: 800;
      font-size: 20px;
      line-height: 1;
      white-space: nowrap;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
  }

  #fees .estimator-output {
      margin-top: 10px;
  }

  #fees #travelFeeDetails {
      width: 100%;
  }

  @media (max-width: 900px) {
      #fees .estimator-fee-big {
          margin-left: 0;
          width: 100%;
          text-align: center;
      }
  }

  @media (max-width: 900px) {

      /* Mobile order: table -> estimator -> van -> core -> suburbs -> long */
      #fees .fees-right {
          order: 1;
      }

      #fees .fees-left {
          order: 2;
      }

      #fees .fees-wrapper {
          flex-direction: column;
      }

      #fees .estimator-output {
          flex-direction: column;
          gap: 8px;
      }

      #fees .estimator-fee-big {
          order: -1;
          margin-left: 0;
      }
  }

  /* --- END FEES SECTION LAYOUT OVERRIDE (TEMP) --- */

  .expect-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
  }

  .card {
      background: white;
      border-radius: 1.25rem;
      padding: 1.2rem 1.3rem;
      border: 1px solid #e5e7eb;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
  }

  .card h3 {
      margin: 0 0 0.4rem;
      font-size: 1rem;
  }

  .card p {
      margin: 0 0 0.7rem;
      font-size: 0.88rem;
      color: #4b5563;
  }

  .card ul {
      margin: 0.1rem 0 0.4rem;
      padding-left: 1.05rem;
      font-size: 0.86rem;
      color: #4b5563;
  }

  .icon-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.4rem;
  }

  .icon-pill {
      font-size: 0.78rem;
      padding: 0.25rem 0.6rem;
      border-radius: var(--radius-pill);
      background: #f3f4f6;
  }

  /* CTA section */
  .cta-section {
      padding: 2.5rem 0 3rem;
  }

  .cta-box {
      background: #0f172a;
      color: #e5e7eb;
      border-radius: 1.5rem;
      padding: 1.8rem 1.9rem;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
      justify-content: space-between;
  }

  .cta-box h2 {
      margin: 0 0 0.4rem;
      font-size: 1.5rem;
  }

  .cta-box p {
      margin: 0;
      font-size: 0.9rem;
      color: #cbd5f5;
  }

  .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
  }

  /* Footer */
  footer {
      background: #020617;
      color: #9ca3af;
      font-size: 0.8rem;
      padding: 1.1rem 0;
      margin-top: 0;
  }

  .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
  }

  @media (max-width: 900px) {

      .hero-inner,
      .timeline-grid,
      .fees-wrapper,
      .expect-grid,
      .cta-box,
      .footer-inner {
          flex-direction: column;
          display: flex;
      }

      .nav-menu {
          display: none;
      }
  }