*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #1a3a5c;
    --primary-mid: #2563a8;
    --primary-light: #dbeafe;
    --accent: #f59e0b;
    --accent-dark: #b45309;
    --accent-light: #fef3c7;
    --text: #1e293b;
    --text-muted: #4b5563;
    --bg: #ffffff;
    --bg-secondary: #f8fafc;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-sm: 8px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--primary);
    padding: 0.625rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 68px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .nav-brand span.icon {
    font-size: 1.5rem;
  }

  .nav-links {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
  }

  .nav-links a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: background 0.15s;
    line-height: 1.3;
  }

  .nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; }

  .nav-cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
  }

  .nav-cta:hover { background: #fbbf24 !important; }

  /* HERO */
  .hero-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.92) 0%, rgba(30,74,122,0.88) 50%, rgba(15,49,88,0.85) 100%);
    z-index: 0;
  }
  .hero-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-content {
    position: relative;
    z-index: 1;
  }
  .hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e4a7a 60%, #0f3158 100%);
    color: #fff;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }

  .hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.35rem 0.875rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

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

  .hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

  /* Van specs strip */
  .van-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }

  .van-spec {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .van-spec strong { color: #fff; font-size: 1rem; }

  .spec-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    border: none; cursor: pointer;
  }

  .btn-primary:hover { background: #fbbf24; transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: border-color 0.15s, background 0.15s;
  }

  .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

  .hero-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .trust-item .ti { font-size: 1.125rem; }

  /* SECTIONS */
  .section {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }

  .section-sub {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .section-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.5;
  }

  /* VAN CARD */
  .van-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .van-card-header {
    background: var(--primary);
    color: #fff;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .van-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .van-card-header p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.78);
    margin-top: 2px;
  }

  .van-icon-box {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .van-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .spec-cell {
    padding: 1.1rem 1.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .spec-cell:last-child { border-right: none; }

  .spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .spec-value {
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--primary);
  }

  .spec-unit {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
  }

  .van-features {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .feature-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.375rem 0.875rem;
    font-size: 0.9375rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .feature-pill::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
    font-size: 0.8125rem;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
  }

  .service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color 0.15s, box-shadow 0.15s;
  }

  .service-card:hover {
    border-color: var(--primary-mid);
    box-shadow: 0 2px 12px rgba(37, 99, 168, 0.1);
  }

  .service-icon {
    width: 42px; height: 42px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 0.75rem;
  }

  .service-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.375rem;
  }

  .service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
  }

  /* PRICING */
  .pricing-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .price-card-header {
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.25rem;
  }

  .price-card-header h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .price-card-header p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
  }

  .price-rows {
    padding: 0;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .price-row:last-child { border-bottom: none; }

  .price-row-label {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.45;
  }

  .price-row-label small {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .price-row-val {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
  }

  .surcharges-card {
    background: var(--accent-light);
    border: 1px solid #fcd34d;
    border-radius: var(--radius);
    padding: 1.25rem;
  }

  .surcharges-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
  }

  .surcharge-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(180,130,9,0.15);
    gap: 1rem;
    line-height: 1.45;
  }

  .surcharge-row:last-child { border-bottom: none; }

  .surcharge-row span:last-child {
    font-weight: 600;
    color: var(--accent-dark);
  }

  /* CONTACT */
  .contact-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

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

  .contact-info h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
  }

  .contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    margin-bottom: 0.75rem;
    transition: border-color 0.15s;
  }

  .contact-link:hover { border-color: var(--primary-mid); }

  .contact-link-icon {
    width: 38px; height: 38px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .contact-link-text strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
  }

  .contact-link-text span {
    font-size: 0.9375rem;
    color: var(--text-muted);
  }

  .availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 20px;
    padding: 0.375rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 0.75rem;
  }

  .dot-green {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #16a34a;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* FORM */
  .inquiry-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
  }

  .inquiry-form h3 {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
  }

  .form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form-field {
    margin-bottom: 1rem;
  }

  .form-field label {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
    font-weight: 500;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    font-family: inherit;
    transition: border-color 0.15s;
  }

  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(37,99,168,0.1);
  }

  .form-field textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
  }

  .form-submit:hover { background: #1e4a7a; }

  /* FOOTER */
  footer {
    background: var(--primary);
    color: rgba(255,255,255,0.72);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
  footer a:hover { color: #fff; }

  /* FLOATING CTA */
  .float-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
  }

  .float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.15s, box-shadow 0.15s;
  }

  .float-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

  .float-call { background: #16a34a; color: #fff; }
  .float-mail { background: var(--primary); color: #fff; }

  @media (max-width: 720px) {
    nav {
      padding: 0.75rem 1rem;
      justify-content: center;
    }

    .nav-brand {
      width: 100%;
      justify-content: center;
    }

    .nav-links {
      width: 100%;
      justify-content: center;
      gap: 0.25rem 0.375rem;
    }

    .nav-links a {
      font-size: 0.9375rem;
      padding: 0.625rem 0.75rem;
    }

    .hero { padding: 3.5rem 1rem 3rem; }
    .section { padding: 3rem 1rem; }
    .van-specs-grid { grid-template-columns: 1fr 1fr; }
    .spec-cell:nth-child(2) { border-right: none; }
  }

  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  .skip-link.screen-reader-text {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .skip-link.screen-reader-text:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }