    /* ── SECTION SHARED ── */
    section { padding: 5rem 1.5rem; }

    .section-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue-bright);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .section-sub {
      color: var(--silver);
      font-size: 1rem;
      max-width: 560px;
    }

    .section-header { margin-bottom: 3rem; }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ── VEHICLE SIZES BANNER ── */
    #sizes {
      padding: 2.5rem 1.5rem;
      background: var(--card2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .sizes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .size-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.25rem 1rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .size-card:focus-visible {
      outline: 2px solid var(--blue-bright);
      outline-offset: 2px;
    }

    .size-card-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      opacity: 0.45;
      transition: opacity 0.3s, transform 0.4s;
    }
    .size-card:hover .size-card-bg {
      opacity: 0.6;
      transform: scale(1.04);
    }

    .size-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 100%);
      z-index: 1;
    }

    .size-card-content {
      position: relative;
      z-index: 2;
    }

    .size-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      color: var(--white);
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 0.2rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 0.75rem;
    }

    .size-card h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: var(--white);
    }

    .size-card p {
      font-size: 0.8rem;
      color: var(--silver);
      line-height: 1.5;
    }

    /* ── SERVICES ── */
    #services { background: var(--black); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .service-card:hover {
      border-color: var(--blue);
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(26,127,232,0.2);
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      display: block;
    }

    .service-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--white);
    }

    .service-desc {
      font-size: 0.88rem;
      color: var(--silver);
      margin-bottom: 1.25rem;
      flex: 1;
    }

    .price-table {
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .price-row:last-child { border-bottom: none; }

    .price-label {
      font-size: 0.82rem;
      color: var(--silver);
      font-weight: 500;
    }

    .price-value {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue-bright);
    }

    /* Add-ons card special */
    .addon-list {
      list-style: none;
      padding: 0;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }
    .addon-list li {
      display: flex;
      justify-content: space-between;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-size: 0.85rem;
    }
    .addon-list li:last-child { border-bottom: none; }
    .addon-name { color: var(--silver); }
    .addon-price { color: var(--blue-bright); font-family: 'Rajdhani', sans-serif; font-weight: 700; }

    .service-cta {
      margin-top: 1.25rem;
      text-align: center;
    }

    .service-img-banner {
      margin: -1.75rem -1.75rem 1.25rem;
      border-radius: 12px 12px 0 0;
      overflow: hidden;
      height: 130px;
      position: relative;
    }
    .service-img-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }
    .service-img-split {
      margin: -1.75rem -1.75rem 1.25rem;
      border-radius: 12px 12px 0 0;
      overflow: hidden;
      height: 130px;
      position: relative;
    }
    .service-img-split img.split-left {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 40% 55%;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    }
    .service-img-split img.split-right {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 70% 45%;
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }
    .service-img-split::after {
      display: none;
    }
    .service-img-split::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient(
        to bottom right,
        transparent calc(50% - 1.5px),
        #000 calc(50% - 1.5px),
        #000 calc(50% + 1.5px),
        transparent calc(50% + 1.5px)
      );
    }

