/* ═══════════ Reset & Base ═══════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background: #fff;
      color: var(--ink);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; }

    /* ═══════════ Logo-Driven Palette ═══════════ */
    :root {
      --green: #4A8B2C;
      --green-dark: #2E5C16;
      --green-darker: #1F4010;
      --green-light: #EAF5DC;
      --green-tint: #F4F9EC;
      --yellow: #F5D817;
      --yellow-dark: #D4B500;
      --yellow-light: #FFF6B8;
      --whatsapp: #25D366;
      --whatsapp-dark: #1ebe59;
      --ink: #1A2410;
      --ink-soft: #4A5944;
      --ink-muted: #7C8779;
      --gray-50: #FAFBF7;
      --gray-100: #EFF2EA;
      --gray-200: #DCE2D2;
      --radius: 16px;
      --radius-sm: 10px;
      --radius-lg: 24px;
      --shadow-sm: 0 1px 3px rgba(31,64,16,0.06);
      --shadow: 0 6px 24px rgba(31,64,16,0.08);
      --shadow-lg: 0 14px 50px rgba(31,64,16,0.16);
    }

    .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); }
    @media (min-width: 1440px) { .container { max-width: 1380px; } }
    @media (min-width: 1920px) { .container { max-width: 1720px; } }
    @media (min-width: 2560px) { .container { max-width: 2240px; } }
    @media (min-width: 3200px) { .container { max-width: 2880px; } }
    .section { padding: 88px 0; }
    .section-tight { padding: 64px 0; }
    .section-alt { background: var(--gray-50); }
    .section-cream { background: var(--green-tint); }
    .text-center { text-align: center; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--green-dark);
      background: var(--yellow-light);
      padding: 6px 14px; border-radius: 999px;
      border: 1.5px solid var(--yellow);
    }
    .eyebrow.light { background: rgba(245,216,23,0.18); border-color: rgba(245,216,23,0.5); color: var(--yellow); }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: var(--ink);
      line-height: 1.15;
      letter-spacing: -0.6px;
      margin: 14px 0 14px;
    }
    .section-title.light { color: #fff; }
    .section-sub {
      font-size: 17px; color: var(--ink-soft);
      max-width: 640px; margin-bottom: 48px;
    }
    .section-sub.light { color: rgba(255,255,255,0.85); }
    .text-center .section-sub { margin-left: auto; margin-right: auto; }

    /* ═══════════ Buttons (reserved for true CTAs only) ═══════════ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 10px; padding: 14px 26px;
      border-radius: 12px; font-size: 15px; font-weight: 700;
      cursor: pointer; border: none; text-decoration: none;
      transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
      white-space: nowrap;
    }
    .btn:active { transform: scale(0.97); }
    .btn-whatsapp {
      background: var(--whatsapp); color: #fff;
      box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    }
    .btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    .btn-call {
      background: var(--yellow); color: var(--ink);
      box-shadow: 0 4px 14px rgba(245,216,23,0.45);
    }
    .btn-call:hover { background: #FCDB35; }
    .btn-ghost {
      background: transparent; color: var(--green-dark);
      border: 2px solid var(--green); font-weight: 700;
    }
    .btn-ghost:hover { background: var(--green-light); }
    .btn-lg { padding: 17px 32px; font-size: 16px; }
    .btn-sm { padding: 10px 18px; font-size: 14px; }
    .call-text {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--green-dark); font-weight: 700; font-size: 15px;
    }
    .call-text:hover { color: var(--green); text-decoration: underline; }

    /* ═══════════ Header ═══════════ */
    .header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: saturate(140%) blur(8px);
      border-bottom: 1px solid var(--gray-200);
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
    .brand { display: flex; align-items: center; gap: 10px; }
    .brand img { height: 72px; width: auto; }
    .header-right { display: flex; align-items: center; gap: 14px; }
    .header-cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--green); color: #fff;
      padding: 7px 18px 7px 7px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 4px 14px rgba(74,139,44,0.28);
    }
    .header-cta:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(74,139,44,0.40);
    }
    .header-cta .ic {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--yellow); color: var(--green-darker);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      position: relative;
    }
    .header-cta .ic::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 50%;
      animation: ctaRing 2s ease-out infinite;
    }
    @keyframes ctaRing {
      0%   { box-shadow: 0 0 0 0 rgba(245,216,23,0.7); }
      100% { box-shadow: 0 0 0 12px rgba(245,216,23,0); }
    }
    .header-cta-text { display: flex; flex-direction: column; line-height: 1.1; }
    .header-cta-label { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.88); text-transform: uppercase; letter-spacing: 0.6px; }
    .header-cta-num { font-size: 15.5px; font-weight: 800; color: #fff; letter-spacing: -0.2px; white-space: nowrap; }
    @media (max-width: 720px) {
      .brand img { height: 40px; }
      .header-cta { padding: 5px 14px 5px 5px; gap: 8px; }
      .header-cta .ic { width: 30px; height: 30px; }
      .header-cta .ic svg { width: 14px; height: 14px; }
      .header-cta-label { display: none; }
      .header-cta-num { font-size: 13.5px; }
    }
    @media (max-width: 380px) {
      .header-cta-num { font-size: 12px; }
    }

    /* ═══════════ Hero ═══════════ */
    .hero {
      position: relative; overflow: hidden;
      padding: 70px 0 90px;
      background:
        radial-gradient(circle at 90% 10%, rgba(245,216,23,0.16) 0%, transparent 50%),
        linear-gradient(180deg, #fff 0%, var(--green-tint) 100%);
    }
    .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
    .hero h1 {
      font-size: clamp(34px, 5vw, 54px);
      font-weight: 900; color: var(--ink);
      line-height: 1.08; letter-spacing: -1.2px;
      margin: 18px 0 22px;
    }
    .hero h1 .accent { color: var(--green); }
    .hero h1 .hl-yellow {
      background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
      padding: 0 4px;
    }
    .hero-sub {
      font-size: 18px; color: var(--ink-soft);
      margin-bottom: 32px; max-width: 520px;
      line-height: 1.65;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 24px; border-top: 1px dashed var(--gray-200); }
    .hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
    .hero-trust-item strong { color: var(--ink); font-weight: 800; font-size: 18px; }
    .hero-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .hero-image-wrap img { width: 100%; height: auto; display: block; }
    .hero-image-wrap::after {
      content:''; position: absolute; inset: 0;
      box-shadow: inset 0 -100px 80px -60px rgba(31,64,16,0.25);
      pointer-events: none;
    }
    .hero-badge-card {
      position: absolute; bottom: 18px; left: 18px;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
      border-radius: 14px; padding: 12px 16px;
      display: flex; align-items: center; gap: 12px;
      box-shadow: var(--shadow);
    }
    .hero-badge-card .dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: #16A34A;
      box-shadow: 0 0 0 0 rgba(22,163,74,0.7);
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
      70% { box-shadow: 0 0 0 12px rgba(22,163,74,0); }
      100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
    }
    .hero-badge-card div { line-height: 1.2; }
    .hero-badge-card .l { font-weight: 800; color: var(--ink); font-size: 14px; }
    .hero-badge-card .s { color: var(--ink-muted); font-size: 12px; }

    @media (max-width: 900px) {
      .hero { padding: 50px 0 70px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-image-wrap { max-width: 540px; margin: 0 auto; }
    }

    /* ═══════════ Trust Bar ═══════════ */
    .trust-bar {
      background: var(--green-darker); color: #fff;
      padding: 38px 0;
      position: relative;
      overflow: hidden;
    }
    .trust-bar::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 18% 50%, rgba(245,216,23,0.07), transparent 38%),
        radial-gradient(circle at 82% 50%, rgba(245,216,23,0.07), transparent 38%);
      pointer-events: none;
    }
    .trust-bar-inner {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 14px; text-align: center;
      position: relative;
    }
    .trust-stat {
      display: flex; flex-direction: column; align-items: center;
      gap: 4px; padding: 4px 10px;
      position: relative;
    }
    .trust-stat + .trust-stat::before {
      content: '';
      position: absolute;
      left: -7px; top: 14%;
      height: 72%; width: 1px;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
    }
    .trust-stat-icon {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--green-darker);
      display: inline-flex; align-items: center; justify-content: center;
      margin-bottom: 6px;
      box-shadow: 0 6px 18px rgba(245,216,23,0.28);
    }
    .trust-stat-value {
      font-size: clamp(24px, 2.9vw, 32px); font-weight: 900;
      color: #fff; letter-spacing: -0.4px; line-height: 1.1;
    }
    .trust-stat-label {
      font-size: 13.5px; font-weight: 800;
      color: var(--yellow);
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }
    .trust-stat-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      font-weight: 500;
      line-height: 1.35;
    }
    @media (max-width: 640px) {
      .trust-bar { padding: 32px 0; }
      .trust-bar-inner { grid-template-columns: repeat(2,1fr); gap: 28px 14px; }
      .trust-stat + .trust-stat::before { display: none; }
      .trust-stat-icon { width: 40px; height: 40px; }
    }

    /* ═══════════ 24×7 Emergency Spotlight Band ═══════════ */
    .emergency-band {
      position: relative;
      padding: 60px 0 66px;
      background:
        radial-gradient(circle at 12% 0%, rgba(245,216,23,0.22) 0%, transparent 42%),
        radial-gradient(circle at 88% 100%, rgba(245,216,23,0.20) 0%, transparent 46%),
        linear-gradient(180deg, #FFFCEB 0%, #FFF7D4 100%);
      border-bottom: 3px solid var(--yellow);
    }
    .emergency-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
    .emergency-eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--ink); color: var(--yellow);
      padding: 8px 18px; border-radius: 999px;
      font-size: 12px; font-weight: 800; letter-spacing: 1.4px;
      margin-bottom: 18px;
    }
    .emergency-pulse {
      width: 9px; height: 9px; border-radius: 50%;
      background: #FF4D4D; flex-shrink: 0;
      animation: emPulse 1.5s ease-out infinite;
    }
    @keyframes emPulse {
      0%   { box-shadow: 0 0 0 0 rgba(255,77,77,0.75); }
      100% { box-shadow: 0 0 0 11px rgba(255,77,77,0); }
    }
    .emergency-title {
      font-size: clamp(28px, 4.2vw, 40px);
      font-weight: 900; color: var(--ink);
      line-height: 1.1; margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .emergency-title span { color: var(--green-dark); }
    .emergency-sub { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
    .emergency-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    @media (max-width: 900px) { .emergency-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
    .emergency-card {
      background: #fff;
      border: 2px solid var(--yellow);
      border-radius: 18px;
      padding: 28px 24px 24px;
      position: relative;
      display: flex; flex-direction: column;
      box-shadow: 0 8px 24px rgba(245,216,23,0.20);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    }
    .emergency-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 34px rgba(245,216,23,0.34);
      border-color: var(--yellow-dark);
    }
    .emergency-badge {
      position: absolute; top: 16px; right: 16px;
      background: var(--green); color: #fff;
      font-size: 11px; font-weight: 900;
      padding: 5px 11px; border-radius: 999px;
      letter-spacing: 0.6px;
      box-shadow: 0 3px 10px rgba(74,139,44,0.32);
    }
    .emergency-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: var(--green-light); color: var(--green-dark);
      display: inline-flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .emergency-icon svg { width: 28px; height: 28px; }
    .emergency-card-title { font-size: 19px; font-weight: 900; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
    .emergency-card-desc { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; flex-grow: 1; line-height: 1.5; }
    .emergency-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .emergency-actions .btn { padding: 12px 14px; font-size: 14px; border-radius: 10px; gap: 7px; }
    .emergency-actions .btn svg { width: 16px; height: 16px; }

    /* ═══════════ Services (info-only, no CTAs) ═══════════ */
    .grid-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
    }
    .service-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    }
    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: var(--green);
    }
    .service-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: var(--green-light); color: var(--green-dark);
      display: inline-flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .service-icon svg { width: 28px; height: 28px; }
    .service-title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
    .service-desc { font-size: 14.5px; color: var(--ink-soft); }

    /* ═══════════ Pricing Plans ═══════════ */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
      gap: 24px;
      align-items: stretch;
    }
    .price-card {
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 32px 26px;
      display: flex; flex-direction: column;
      position: relative;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .price-card.featured {
      border: 2px solid var(--green);
      box-shadow: 0 14px 40px rgba(74,139,44,0.18);
      transform: translateY(-6px);
    }
    .price-card.featured:hover { transform: translateY(-10px); }
    .price-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--yellow); color: var(--ink);
      font-size: 11px; font-weight: 800; letter-spacing: 1px;
      padding: 6px 14px; border-radius: 999px;
      box-shadow: 0 3px 10px rgba(245,216,23,0.5);
    }
    .price-name { font-size: 14px; color: var(--ink-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
    .price-tagline { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: 18px; }
    .price-amount {
      display: flex; align-items: baseline; gap: 4px;
      margin-bottom: 6px;
    }
    .price-rupee { font-size: 24px; font-weight: 700; color: var(--green-dark); }
    .price-from {
      font-size: 12px; font-weight: 700;
      color: var(--ink-muted);
      text-transform: uppercase; letter-spacing: 1.2px;
      margin-bottom: -2px;
    }
    .price-num { font-size: 46px; font-weight: 900; color: var(--green); letter-spacing: -2px; line-height: 1; }
    .price-tc {
      font-size: 11px; font-weight: 700;
      color: var(--ink-muted);
      align-self: flex-start;
      line-height: 1.1;
      margin-left: 5px;
      margin-top: 4px;
      letter-spacing: 0.3px;
      white-space: nowrap;
      text-transform: uppercase;
    }
    .price-tc .tc-star { color: var(--yellow-dark); font-weight: 900; }
    .price-onwards { font-size: 13px; color: var(--ink-muted); margin-bottom: 22px; }

    /* Transparency Promise (replaces cramped footnote) */
    .transparency-promise {
      max-width: 860px; margin: 48px auto 0;
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-left: 4px solid var(--yellow);
      border-radius: var(--radius);
      padding: 22px 26px;
      display: flex; align-items: flex-start; gap: 18px;
      box-shadow: var(--shadow-sm);
    }
    .transparency-promise .tp-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--ink);
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 22px;
      font-family: Georgia, 'Times New Roman', serif;
    }
    .transparency-promise h4 {
      font-size: 15px; font-weight: 800;
      color: var(--ink);
      margin-bottom: 4px;
      letter-spacing: -0.2px;
    }
    .transparency-promise p {
      font-size: 14px; color: var(--ink-soft);
      line-height: 1.55;
      margin: 0;
    }
    .transparency-promise strong { color: var(--green-dark); }
    @media (max-width: 540px) {
      .transparency-promise { padding: 18px 18px; gap: 14px; }
      .transparency-promise .tp-icon { width: 38px; height: 38px; font-size: 18px; }
    }
    .price-features {
      list-style: none; margin-bottom: 26px; flex-grow: 1;
    }
    .price-features li {
      padding: 7px 0; font-size: 14.5px; color: var(--ink-soft);
      display: flex; align-items: flex-start; gap: 10px;
    }
    .price-features li svg {
      width: 18px; height: 18px; color: var(--green);
      flex-shrink: 0; margin-top: 2px;
    }
    .price-card .btn { width: 100%; }

    /* ═══ Premium Vehicle Card ═══ */
    .price-card.premium {
      border: 2px solid #C8960A;
      background: linear-gradient(160deg, #fffef5 0%, #fff 60%);
      box-shadow: 0 16px 48px rgba(200,150,10,0.14);
    }
    .price-card.premium:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(200,150,10,0.22); }
    .premium-badge {
      background: linear-gradient(135deg, #C8960A 0%, #E8B020 100%) !important;
      color: #fff !important;
      box-shadow: 0 3px 10px rgba(200,150,10,0.4) !important;
    }
    .price-card.premium .price-rupee,
    .price-card.premium .price-num { color: #A87800; }
    .price-card.premium .price-name { color: #A87800; }
    .btn-premium {
      display: inline-flex; align-items: center; justify-content: center;
      width: 100%; padding: 14px 22px;
      background: linear-gradient(135deg, #C8960A 0%, #E8B020 100%);
      color: #fff; font-weight: 800; font-size: 15px;
      border: none; border-radius: var(--radius-sm); cursor: pointer;
      text-decoration: none; letter-spacing: 0.2px;
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(200,150,10,0.35);
    }
    .btn-premium:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,150,10,0.45); }

    /* ═══════════ Before/After ═══════════ */
    .ba-wrap {
      max-width: 980px; margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: #000;
    }
    .ba-wrap img { width: 100%; height: auto; display: block; }
    .ba-meta {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 18px; max-width: 980px; margin: 32px auto 0;
      text-align: center;
    }
    .ba-meta-item {
      background: #fff; border: 1px solid var(--gray-200);
      padding: 20px 16px; border-radius: var(--radius);
    }
    .ba-meta-item strong { display:block; color: var(--green); font-size: 22px; font-weight: 900; margin-bottom: 4px; }
    .ba-meta-item span { font-size: 13px; color: var(--ink-soft); }
    @media (max-width: 600px) { .ba-meta { grid-template-columns: 1fr; } }

    /* ═══════════ Process Steps ═══════════ */
    .steps {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
    }
    @media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
    .step {
      text-align: center;
      padding: 28px 18px;
    }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--yellow); color: var(--ink);
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 20px;
      margin-bottom: 16px;
    }
    .step-title { font-weight: 800; color: var(--ink); font-size: 17px; margin-bottom: 6px; }
    .step-desc { font-size: 14.5px; color: var(--ink-soft); }

    /* ═══════════ Reviews ═══════════ */
    .grid-reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
      gap: 22px;
    }
    .review {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid var(--gray-200);
      transition: box-shadow 0.2s;
    }
    .review:hover { box-shadow: var(--shadow); }
    .review .stars { color: var(--yellow-dark); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
    .review-text { font-size: 15px; color: var(--ink); margin-bottom: 18px; line-height: 1.6; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 15px;
      flex-shrink: 0;
    }
    .review-name { font-weight: 700; color: var(--ink); font-size: 14px; }
    .review-meta { font-size: 12px; color: var(--ink-muted); }

    /* ═══════════ Areas ═══════════ */
    .areas-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
    @media (max-width: 700px) { .areas-grid { grid-template-columns: 1fr; } }
    .area-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px;
    }
    .area-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .area-pin {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--green); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .area-name { font-size: 19px; font-weight: 800; color: var(--ink); }
    .area-desc { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }
    .area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .area-tag {
      background: var(--green-light); color: var(--green-dark);
      padding: 6px 12px; border-radius: 999px;
      font-size: 13px; font-weight: 600;
    }

    /* ═══════════ Corridor strip ═══════════ */
    .corridor-strip {
      margin: 0 auto 14px;
      background: linear-gradient(135deg, var(--green-tint) 0%, #fff 100%);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 22px 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: var(--shadow-sm);
      overflow-x: auto;
    }
    .corridor-stop {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
      padding: 4px 6px;
    }
    .corridor-stop .cs-name {
      font-weight: 800; font-size: 15px; color: var(--green-dark);
      letter-spacing: -0.2px; line-height: 1.1;
    }
    .corridor-stop.is-home .cs-name {
      background: var(--yellow); color: var(--ink);
      padding: 5px 12px; border-radius: 999px;
      font-size: 14px;
    }
    .corridor-stop .cs-tag {
      font-size: 10.5px; color: var(--ink-muted);
      text-transform: uppercase; font-weight: 700; letter-spacing: 0.6px;
    }
    .corridor-arrow { color: var(--green); flex-shrink: 0; opacity: 0.6; }
    .corridor-meta {
      text-align: center;
      font-size: 13.5px; color: var(--ink-soft);
      margin: 14px auto 36px;
      font-weight: 500;
    }
    .corridor-meta strong { color: var(--green-dark); font-weight: 800; }
    @media (max-width: 700px) {
      .corridor-strip { gap: 4px; padding: 16px 8px; }
      .corridor-stop { padding: 4px 2px; }
      .corridor-stop .cs-name { font-size: 12px; }
      .corridor-stop.is-home .cs-name { font-size: 11.5px; padding: 4px 8px; }
      .corridor-stop .cs-tag { font-size: 9.5px; letter-spacing: 0.3px; }
      .corridor-arrow svg { width: 14px; height: 14px; }
    }

    /* Home base highlight on area card */
    .area-card.is-home {
      border: 2px solid var(--green);
      background: linear-gradient(180deg, #fff 0%, var(--green-tint) 100%);
      position: relative;
    }
    .area-card.is-home::before {
      content: 'HOME BASE';
      position: absolute;
      top: -10px; right: 14px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 10.5px; font-weight: 800;
      padding: 4px 10px; border-radius: 999px;
      letter-spacing: 0.6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    /* ═══════════ Insurance ═══════════ */
    .insurance-strip {
      display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    }
    .insurance-badge {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 8px;
      padding: 14px 22px;
      font-weight: 700;
      color: var(--ink-soft);
      font-size: 14px;
    }

    /* ═══════════ FAQ ═══════════ */
    .faq-list { max-width: 820px; margin: 0 auto; }
    .faq-item {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
    .faq-q {
      padding: 18px 22px;
      font-weight: 700;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      font-size: 16px;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '+';
      font-size: 26px; color: var(--green);
      font-weight: 400; line-height: 1;
    }
    .faq-item[open] .faq-q::after { content: '−'; }
    .faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

    /* ═══════════ Final CTA ═══════════ */
    .cta-band {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: #fff;
      padding: 84px 0;
    }
    .cta-band::before, .cta-band::after {
      content:''; position: absolute; border-radius: 50%;
      background: var(--yellow); opacity: 0.10;
    }
    .cta-band::before { width: 320px; height: 320px; top: -100px; right: -80px; }
    .cta-band::after  { width: 220px; height: 220px; bottom: -80px; left: -60px; }
    .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
    .cta-inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 900; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px; }
    .cta-inner h2 span { color: var(--yellow); }
    .cta-inner p { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

    /* ═══════════ Footer ═══════════ */
    .footer {
      background: var(--green-darker); color: rgba(255,255,255,0.75);
      padding: 56px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 36px;
    }
    @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer h4 { color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
    .footer ul li { padding: 5px 0; font-size: 14px; }
    .footer ul li a:hover { color: var(--yellow); }
    .footer .brand-block .logo-tile {
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .footer .brand-block .logo-tile img { height: 50px; background: #fff; padding: 5px; border-radius: 8px; }
    .footer .brand-block .logo-tile .tname { color:#fff; font-weight:800; line-height:1.1; }
    .footer .brand-block .logo-tile .ttag { font-size:10.5px; color: var(--yellow); font-weight:700; }
    .footer .brand-block p { font-size: 14px; line-height: 1.6; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 18px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
      font-size: 13px;
    }

    /* ═══════════ Floating WhatsApp + Sticky Bottom Bar ═══════════ */
    .whatsapp-fab {
      position: fixed; bottom: 24px; right: 24px; z-index: 200;
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--whatsapp); color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(37,211,102,0.5);
      transition: transform 0.2s;
    }
    .whatsapp-fab:hover { transform: scale(1.06); }
    .whatsapp-fab svg { width: 30px; height: 30px; }
    .whatsapp-fab .ping {
      position: absolute; inset: 0; border-radius: 50%;
      background: var(--whatsapp); opacity: 0.55;
      animation: ping 2.4s cubic-bezier(0,0,0.2,1) infinite;
    }
    @keyframes ping { 0% { transform: scale(1); opacity: 0.5; } 80%, 100% { transform: scale(1.7); opacity: 0; } }

    .mobile-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 199;
      background: #fff;
      box-shadow: 0 -3px 14px rgba(0,0,0,0.10);
      border-top: 1px solid var(--gray-200);
    }
    .mobile-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .mobile-bar a {
      padding: 14px 8px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-weight: 800; font-size: 15px;
    }
    .mobile-bar .call { background: var(--yellow); color: var(--ink); }
    .mobile-bar .wa { background: var(--whatsapp); color: #fff; }
    @media (max-width: 768px) {
      .mobile-bar { display: block; }
      body { padding-bottom: 60px; }
      .whatsapp-fab { bottom: 76px; right: 14px; width: 54px; height: 54px; }
      .whatsapp-fab svg { width: 28px; height: 28px; }
    }

    /* ═══════════ Reveal animations ═══════════ */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ═══════════ Areas CTA + Workshop Location ═══════════ */
    .areas-cta {
      margin-top: 36px;
      background: linear-gradient(135deg, #fff 0%, var(--green-tint) 100%);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 22px 28px;
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
    }
    .areas-cta p { font-size: 15.5px; color: var(--ink); margin: 0; }
    .areas-cta p strong { color: var(--green-dark); }
    @media (max-width: 600px) { .areas-cta { flex-direction: column; text-align: center; padding: 22px 18px; } }

    .workshop-loc {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 0;
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    @media (max-width: 820px) { .workshop-loc { grid-template-columns: 1fr; } }
    .workshop-map { position: relative; min-height: 380px; background: var(--green-tint); }
    .workshop-map iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
    .workshop-map .map-overlay-link {
      position: absolute; bottom: 12px; right: 12px;
      background: #fff; color: var(--ink);
      padding: 8px 14px; border-radius: 8px;
      font-size: 12.5px; font-weight: 700;
      text-decoration: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      border: 1px solid var(--gray-200);
      display: inline-flex; align-items: center; gap: 6px;
      z-index: 2;
    }
    .workshop-map .map-overlay-link:hover { background: var(--green); color: #fff; }
    .workshop-info { padding: 32px 32px; display: flex; flex-direction: column; }
    .workshop-info .eyebrow { margin-bottom: 12px; }
    .workshop-info h3 { font-size: 26px; font-weight: 800; color: var(--ink); margin: 0 0 14px; letter-spacing: -0.4px; line-height: 1.15; }
    .workshop-info > p { color: var(--ink-soft); margin: 0 0 22px; line-height: 1.55; font-size: 15px; }
    .workshop-info > p strong { color: var(--green-dark); }
    .workshop-meta { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--gray-200); }
    .workshop-meta li {
      padding: 12px 0; border-bottom: 1px solid var(--gray-200);
      font-size: 14.5px; color: var(--ink);
      display: flex; gap: 12px; align-items: flex-start;
    }
    .workshop-meta li .wm-ic {
      flex-shrink: 0; width: 22px; height: 22px;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--green);
    }
    .workshop-meta li strong { color: var(--ink); font-weight: 700; }
    .workshop-meta li a { color: var(--ink); font-weight: 600; }
    .workshop-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
    .workshop-actions .btn { flex: 1 1 auto; min-width: 0; }
    @media (max-width: 540px) { .workshop-info { padding: 26px 22px; } .workshop-info h3 { font-size: 22px; } }

    /* ═══════════ Hamburger / Nav Drawer ═══════════ */
    .nav-toggle {
      display: none;
      width: 44px; height: 44px;
      background: var(--green-light);
      border: none; border-radius: 10px;
      flex-direction: column; justify-content: center; align-items: center; gap: 5px;
      cursor: pointer; padding: 0;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .nav-toggle:hover { background: var(--green); }
    .nav-toggle:hover span { background: #fff; }
    .nav-toggle span {
      display: block; width: 20px; height: 2.5px;
      background: var(--green-dark); border-radius: 99px;
      transition: transform 0.3s ease, opacity 0.25s ease, background 0.2s;
    }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .nav-overlay {
      display: none; position: fixed; inset: 0; z-index: 149;
      background: rgba(15,30,8,0.5); backdrop-filter: blur(3px);
    }
    .nav-overlay.is-open { display: block; }

    .nav-drawer {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
      width: min(340px, 90vw);
      background: #fff;
      box-shadow: -10px 0 48px rgba(0,0,0,0.18);
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto; -webkit-overflow-scrolling: touch;
    }
    .nav-drawer.is-open { transform: translateX(0); }

    .nav-drawer-top {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--gray-200);
      flex-shrink: 0;
    }
    .nav-drawer-logo { height: 32px; width: auto; }
    .nav-close {
      width: 36px; height: 36px; flex-shrink: 0;
      border: none; background: var(--green-light); cursor: pointer;
      border-radius: 50%; font-size: 20px; font-weight: 400;
      color: var(--green-dark); line-height: 1;
      display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    .nav-close:hover { background: var(--green); color: #fff; }

    .nav-section-label {
      font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
      text-transform: uppercase; color: var(--ink-muted);
      padding: 16px 20px 6px;
    }
    .nav-links { list-style: none; padding: 0; flex-grow: 1; }
    .nav-links li a {
      display: flex; align-items: center; gap: 14px;
      padding: 13px 20px;
      font-size: 15.5px; font-weight: 700; color: var(--ink);
      text-decoration: none;
      border-left: 3px solid transparent;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .nav-links li a:hover { background: var(--green-tint); color: var(--green-dark); border-left-color: var(--green); }
    .nav-icon {
      width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .nav-icon.emergency { background: #FFF1F1; color: #D02020; }
    .nav-icon.regular { background: var(--green-light); color: var(--green-dark); }
    .nav-icon.yellow { background: var(--yellow-light); color: var(--green-dark); }
    .nav-icon svg { width: 20px; height: 20px; }

    .nav-drawer-cta {
      padding: 16px 20px 24px; flex-shrink: 0;
      border-top: 1px solid var(--gray-200);
      display: flex; flex-direction: column; gap: 10px;
    }
    .nav-drawer-cta .btn { width: 100%; justify-content: center; font-size: 15px; padding: 13px 20px; }

    @media (max-width: 900px) { .nav-toggle { display: inline-flex; } }

    /* ═══════════ Global Responsive Padding & Typography ═══════════ */
    @media (max-width: 900px) {
      .section { padding: 68px 0; }
      .section-tight { padding: 50px 0; }
    }
    @media (max-width: 640px) {
      .section { padding: 52px 0; }
      .section-tight { padding: 40px 0; }
      .container { padding: 0 16px; }
      .section-sub { font-size: clamp(14px, 4vw, 16px); }
      .hero { padding: 40px 0 54px; }
      .hero-sub { font-size: 16px; }
      .emergency-band { padding: 44px 0 52px; }
      .emergency-head { margin-bottom: 28px; }
      .emergency-title { font-size: clamp(24px, 6.5vw, 36px); }
      .cta-band { padding: 60px 0; }
      .cta-actions { flex-direction: column; align-items: stretch; }
      .cta-actions .btn { width: 100%; justify-content: center; }
      .faq-q { font-size: 15px; padding: 15px 18px; }
      .faq-a { padding: 0 18px 16px; font-size: 14px; }
      .service-title { font-size: 16px; }
    }
    @media (max-width: 480px) {
      .section { padding: 44px 0; }
      .section-tight { padding: 34px 0; }
      .section-sub { font-size: 15px; max-width: 100%; }
      .hero { padding: 36px 0 48px; }
      .trust-stat-value { font-size: 22px; }
      .trust-stat-icon { width: 38px; height: 38px; }
      .trust-stat-label { font-size: 12px; }
      .price-num { font-size: 38px; }
      .area-card { padding: 22px 18px; }
      .faq-q { font-size: 14.5px; padding: 14px 16px; gap: 8px; }
      .faq-a { padding: 0 16px 14px; }
      .footer { padding: 44px 0 20px; }
    }

    /* Pricing: force single column below 560px */
    @media (max-width: 560px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .price-card.featured { transform: translateY(0); }
    }

    /* Emergency actions: stack on very small */
    @media (max-width: 360px) {
      .emergency-actions { grid-template-columns: 1fr; }
      .header-cta-num { font-size: 11.5px; }
    }

    /* Accessibility: body locked when nav open */
    body.nav-open { overflow: hidden; }