    /* ─── Design tokens ───────────────────────────────────────────── */
    :root {
      --ink:        #0f172a;   /* slate-900 — brand dark            */
      --ink-2:      #1e293b;   /* slate-800                         */
      --slate:      #475569;   /* body text muted                  */
      --slate-3:    #64748b;
      --line:       #e2e8f0;   /* hairlines                        */
      --bg:         #ffffff;
      --bg-soft:    #f8fafc;   /* slate-50                         */
      --bg-soft-2:  #f1f5f9;
      --sky:        #0ea5e9;   /* brand accent                     */
      --blue:       #2563eb;
      --blue-d:     #1d4ed8;
      --amber:      #f59e0b;   /* ratings                          */
      --grad:       linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
      --grad-deep:  linear-gradient(160deg, #0b1220 0%, #0f172a 45%, #102a43 100%);
      --shadow-sm:  0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
      --shadow:     0 10px 30px -10px rgba(15,23,42,.18);
      --shadow-lg:  0 30px 60px -20px rgba(15,23,42,.28);
      --r:          16px;
      --r-lg:       24px;
      --maxw:       1180px;
      --font: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

    .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
    .section { padding: clamp(56px, 8vw, 104px) 0; }
    .center { text-align: center; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--blue); background: #eff6ff; border: 1px solid #dbeafe;
      padding: 6px 14px; border-radius: 999px;
    }
    .h-section { font-size: clamp(28px, 4vw, 44px); margin: 18px 0 14px; }
    .lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--slate); max-width: 640px; }
    .center .lead { margin-left: auto; margin-right: auto; }

    /* ─── Buttons ─────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      font-family: inherit; font-weight: 700; font-size: 16px; cursor: pointer;
      padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }
    .btn svg { width: 19px; height: 19px; }
    .btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -6px rgba(37,99,235,.6); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(37,99,235,.7); }
    .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
    .btn-ghost:hover { background: rgba(255,255,255,.16); }
    .btn-dark { background: var(--ink); color: #fff; }
    .btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
    .btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
    .btn-light:hover { border-color: var(--sky); color: var(--blue); transform: translateY(-2px); }
    .btn-lg { padding: 17px 32px; font-size: 17px; }

    /* ─── Header ──────────────────────────────────────────────────── */
    header.site {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
    }
    header.site.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
    .brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; flex-shrink: 0; white-space: nowrap; }
    .brand .mark { width: 38px; height: 38px; flex: none; }
    .brand small { display: block; font-size: 11px; font-weight: 600; color: var(--slate-3); letter-spacing: .04em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      font-weight: 600; font-size: 14.5px; color: var(--ink-2);
      padding: 8px 11px; border-radius: 10px; transition: background .15s, color .15s; white-space: nowrap;
    }
    .nav-links a:hover { background: var(--bg-soft-2); color: var(--blue); }
    .nav-cta { display: flex; align-items: center; gap: 8px; }
    .nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); padding: 9px 10px; white-space: nowrap; }
    .nav-login { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); padding: 9px 13px; border-radius: 10px; border: 1px solid var(--line); white-space: nowrap; transition: background .15s, color .15s, border-color .15s; }
    .nav-login:hover { border-color: var(--sky); color: var(--blue); background: var(--bg-soft); }
    .nav-login svg { width: 16px; height: 16px; }
    .nav-phone:hover { color: var(--blue); }
    .nav-phone svg { width: 18px; height: 18px; color: var(--blue); }
    .hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
    .hamburger svg { width: 24px; height: 24px; }

    /* ─── Hero ────────────────────────────────────────────────────── */
    .hero { position: relative; background: linear-gradient(100deg, rgba(11,18,32,.93) 0%, rgba(15,23,42,.84) 42%, rgba(16,42,67,.58) 100%), url("assets/hero.jpg") center/cover no-repeat; color: #fff; overflow: hidden; }
    .hero::before {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(900px 420px at 78% -8%, rgba(14,165,233,.38), transparent 60%),
        radial-gradient(700px 500px at 8% 110%, rgba(37,99,235,.35), transparent 55%);
      pointer-events: none;
    }
    .hero .wrap { position: relative; z-index: 2; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; padding: clamp(54px, 8vw, 96px) 0 130px; }
    .hero h1 { font-size: clamp(34px, 5.2vw, 60px); }
    .hero .tagline { font-size: clamp(16px, 1.9vw, 21px); color: #7dd3fc; font-weight: 600; font-style: italic; margin-top: 16px; }
    .hero .sub { font-size: clamp(16px, 1.7vw, 20px); color: #cbd5e1; margin: 14px 0 30px; max-width: 580px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .hero-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
    .hero-chips span { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: #e2e8f0; }
    .hero-chips svg { width: 19px; height: 19px; color: #38bdf8; flex: none; }

    .rating-pill {
      display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
      padding: 8px 15px; border-radius: 999px; font-size: 14px; font-weight: 600;
    }
    .stars { color: #fbbf24; letter-spacing: 2px; }
    /* Hero rating: 4.9 of 5 — last star filled most of the way, leaving a small gray tip so it reads as authentic */
    .rating-pill .stars .tip { letter-spacing: 0; background: linear-gradient(90deg, #fbbf24 84%, rgba(255,255,255,.34) 84%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

    /* Hero side card */
    .quote-card {
      background: rgba(255,255,255,.97); color: var(--ink);
      border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,.6);
    }
    .quote-card h3 { font-size: 21px; }
    .quote-card p.k { color: var(--slate); font-size: 14.5px; margin-top: 6px; }
    .qrow { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
    .qrow:last-of-type { border-bottom: 0; }
    .qrow .ico { width: 42px; height: 42px; border-radius: 12px; background: #eff6ff; display: flex; align-items: center; justify-content: center; flex: none; }
    .qrow .ico svg { width: 22px; height: 22px; color: var(--blue); }
    .qrow b { font-size: 15px; } .qrow span { font-size: 13px; color: var(--slate-3); }

    /* wave divider */
    .wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }
    .wave svg { width: 100%; height: 70px; display: block; }

    /* ─── Trust bar ───────────────────────────────────────────────── */
    .trust { background: var(--bg); border-bottom: 1px solid var(--line); }
    .trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 0; }
    .trust-item { display: flex; align-items: center; gap: 13px; justify-content: center; text-align: left; }
    .trust-item svg { width: 30px; height: 30px; color: var(--blue); flex: none; }
    .trust-item b { display: block; font-size: 15.5px; } .trust-item span { font-size: 13px; color: var(--slate-3); }

    /* ─── Services ────────────────────────────────────────────────── */
    .grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
    .card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .25s, border-color .25s;
      position: relative; overflow: hidden; display: flex; flex-direction: column;
    }
    .card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #bae6fd; }
    .card-media { position: relative; height: 200px; overflow: hidden; }
    .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
    .card:hover .card-media img { transform: scale(1.07); }
    .card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(14,165,233,.22), rgba(15,23,42,.46)); }
    .card-body { padding: 0 26px 28px; }
    .card .ico-lg { width: 56px; height: 56px; border-radius: 15px; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px -8px rgba(37,99,235,.55); margin: -34px 0 16px; position: relative; z-index: 2; }
    .card .ico-lg svg { width: 28px; height: 28px; color: #fff; }
    .card h3 { font-size: 21px; margin-bottom: 9px; }
    .card p { color: var(--slate); font-size: 15px; }
    .card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--blue); font-size: 14.5px; }
    .card .more svg { width: 16px; height: 16px; transition: transform .15s; }
    .card:hover .more svg { transform: translateX(4px); }

    /* ─── Why us / stats ──────────────────────────────────────────── */
    .why { background: var(--bg-soft); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .feat { display: flex; gap: 16px; margin-bottom: 26px; }
    .feat .ico { width: 48px; height: 48px; border-radius: 13px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: none; box-shadow: var(--shadow-sm); }
    .feat .ico svg { width: 24px; height: 24px; color: var(--blue); }
    .feat h3 { font-size: 18px; margin-bottom: 4px; }
    .feat p { color: var(--slate); font-size: 15px; }
    .stat-card { background: linear-gradient(160deg, rgba(11,18,32,.88), rgba(16,42,67,.84)), url("assets/why-bg.jpg") center/cover; color: #fff; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-lg); }
    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; }
    .stat b { font-size: clamp(32px, 4vw, 44px); font-weight: 800; display: block; background: linear-gradient(90deg,#7dd3fc,#fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .stat span { color: #cbd5e1; font-size: 14.5px; }

    /* ─── Plans ───────────────────────────────────────────────────── */
    .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; align-items: stretch; }
    .plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
    .plan.feature { border: 2px solid var(--sky); box-shadow: var(--shadow); position: relative; transform: translateY(-6px); }
    .plan.feature::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
    .plan h3 { font-size: 19px; }
    .plan .price { font-size: 42px; font-weight: 800; margin: 14px 0 2px; }
    .plan .price span { font-size: 16px; font-weight: 600; color: var(--slate-3); }
    .plan ul { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 12px; }
    .plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
    .plan li svg { width: 19px; height: 19px; color: #16a34a; flex: none; margin-top: 2px; }
    .plan .btn { margin-top: auto; width: 100%; }

    /* ─── Process ─────────────────────────────────────────────────── */
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; counter-reset: step; }
    .step { position: relative; padding: 28px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
    .step .n { counter-increment: step; width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color: #fff; font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .step .n::before { content: counter(step); }
    .step h3 { font-size: 17px; margin-bottom: 6px; }
    .step p { font-size: 14px; color: var(--slate); }

    /* ─── Service area ────────────────────────────────────────────── */
    .area { background: var(--grad-deep); color: #fff; }
    .area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .city-tags { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
    .city-tags span, .city-tags a { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 9px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 600; }
    .city-tags a { color: #fff; transition: background .15s ease, border-color .15s ease, transform .15s ease; }
    .city-tags a:hover { background: rgba(125,211,252,.18); border-color: rgba(125,211,252,.5); transform: translateY(-1px); }
    .area .map-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 34px; text-align: center; }
    .area .map-card .big { font-size: clamp(40px,6vw,64px); font-weight: 800; background: linear-gradient(90deg,#7dd3fc,#fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

    /* ─── Reviews ─────────────────────────────────────────────────── */
    .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
    .review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
    .review .stars { font-size: 17px; letter-spacing: 3px; }
    .review p { margin: 14px 0 18px; font-size: 15px; color: var(--ink-2); }
    .review .who { display: flex; align-items: center; gap: 12px; }
    .review .av { width: 44px; height: 44px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .review b { font-size: 14.5px; } .review small { color: var(--slate-3); }

    /* ─── FAQ ─────────────────────────────────────────────────────── */
    .faq { max-width: 820px; margin: 46px auto 0; }
    details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
    summary { font-weight: 700; font-size: 16.5px; cursor: pointer; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    summary::-webkit-details-marker { display: none; }
    summary .pm { width: 26px; height: 26px; flex: none; position: relative; transition: transform .2s; }
    summary .pm::before, summary .pm::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
    summary .pm::before { width: 14px; height: 2.5px; top: 12px; left: 6px; }
    summary .pm::after { width: 2.5px; height: 14px; top: 6px; left: 12px; transition: opacity .2s; }
    details[open] summary .pm::after { opacity: 0; }
    details > p { padding: 0 0 20px; color: var(--slate); font-size: 15px; }

    /* ─── CTA band ────────────────────────────────────────────────── */
    .cta-band { background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: clamp(36px,5vw,60px); text-align: center; box-shadow: var(--shadow-lg); }
    .cta-band h2 { font-size: clamp(26px,3.6vw,40px); }
    .cta-band p { color: #e0f2fe; font-size: 18px; margin: 14px auto 28px; max-width: 560px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

    /* ─── Footer ──────────────────────────────────────────────────── */
    footer.site { background: var(--ink); color: #cbd5e1; padding: 64px 0 30px; }
    .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
    footer .brand { color: #fff; margin-bottom: 16px; }
    footer p { font-size: 14.5px; line-height: 1.7; }
    footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
    .foot-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .foot-links a { font-size: 14.5px; color: #cbd5e1; }
    .foot-links a:hover { color: #fff; }
    .foot-contact a { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; color: #cbd5e1; font-size: 14.5px; }
    .foot-contact svg { width: 18px; height: 18px; color: #38bdf8; flex: none; }
    .foot-bottom { border-top: 1px solid #1e293b; margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--slate-3); }

    /* ─── Mobile sticky call bar ──────────────────────────────────── */
    .mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); padding: 10px 14px; gap: 10px; box-shadow: 0 -8px 24px -12px rgba(15,23,42,.25); }
    .mobile-bar .btn { flex: 1; padding: 13px; font-size: 15px; }

    /* ─── Mobile menu drawer ──────────────────────────────────────── */
    .drawer { display: none; }

    /* ─── Logo ────────────────────────────────────────────────────── */
    .brand img.logo { height: 44px; width: auto; display: block; }

    /* ─── Gallery (Our Work) ──────────────────────────────────────── */
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 46px; }
    .gallery-grid figure { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
    .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .gallery-grid figure:hover img { transform: scale(1.08); }
    .gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px; color: #fff; font-weight: 600; font-size: 14px; background: linear-gradient(transparent, rgba(15,23,42,.82)); }

    /* ─── Video showcase ──────────────────────────────────────────── */
    .video-section { background: var(--grad-deep); color: #fff; }
    .video-frame { position: relative; max-width: 940px; margin: 42px auto 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14); aspect-ratio: 16 / 9; background: #000; }
    .video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
    /* Vertical YouTube Short embed */
    .video-frame.is-short { max-width: 360px; aspect-ratio: 9 / 16; }

    /* ─── Responsive ──────────────────────────────────────────────── */
    @media (max-width: 940px) {
      .hero-grid { grid-template-columns: 1fr; gap: 38px; padding-bottom: 120px; }
      .quote-card { max-width: 460px; }
      .why-grid, .area-grid { grid-template-columns: 1fr; gap: 36px; }
      .trust-row { grid-template-columns: 1fr 1fr; gap: 22px; }
      .grid-cards, .plans-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .plan.feature { transform: none; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    /* Progressive header collapse — keep the phone; drop low-priority links first */
    @media (max-width: 1150px) { .nav-login { display: none; } }                 /* Client Login → in menu + footer */
    @media (max-width: 1010px) { .nav-links > a:last-child { display: none; } }   /* hide Reviews */
    @media (max-width: 930px)  { .nav-links > a { display: none; } }              /* hide Service Area too */
    @media (max-width: 830px) {
      .nav-links { display: none; }   /* service dropdowns → hamburger; phone + Book Online stay */
      .hamburger { display: flex; }
      /* drawer */
      .drawer { display: block; position: fixed; inset: 0; z-index: 70; visibility: hidden; }
      .drawer.open { visibility: visible; }
      .drawer .scrim { position: absolute; inset: 0; background: rgba(15,23,42,.5); opacity: 0; transition: opacity .25s; }
      .drawer.open .scrim { opacity: 1; }
      .drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86%, 360px); background: #fff; padding: 22px; transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; overflow-y: auto; }
      .drawer.open .panel { transform: translateX(0); }
      .drawer .panel a { padding: 15px 4px; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }
      .drawer .close { align-self: flex-end; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-size: 22px; cursor: pointer; margin-bottom: 8px; }
      .drawer .panel .btn { margin-top: 18px; }
    }
    @media (max-width: 720px) {
      .nav-phone { display: none; }   /* phone → sticky bottom "Call Now" bar */
      .nav-cta .btn-primary { display: none; }
      .grid-cards, .plans-grid, .reviews-grid, .steps, .trust-row, .foot-grid { grid-template-columns: 1fr; }
      .mobile-bar { display: flex; }
      body { padding-bottom: 70px; }
      footer.site { padding-bottom: 90px; }
    }
  

/* ─── Service detail pages ────────────────────────────────────────── */
.svc-hero { position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(100deg, rgba(11,18,32,.93) 0%, rgba(15,23,42,.82) 50%, rgba(16,42,67,.60) 100%), url("hero.jpg") center/cover no-repeat; }
.svc-hero .wrap { position: relative; z-index: 2; padding: clamp(34px,5vw,64px) 22px clamp(54px,7vw,92px); }
.breadcrumb { font-size: 14px; color: #cbd5e1; margin-bottom: 16px; }
.breadcrumb a { color: #7dd3fc; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.svc-hero h1 { font-size: clamp(31px,4.6vw,52px); max-width: 800px; }
.svc-hero .sub { font-size: clamp(16px,1.7vw,20px); color: #e2e8f0; margin: 16px 0 26px; max-width: 640px; }
.svc-hero .hero-chips { margin-top: 28px; }
.svc-layout { display: grid; grid-template-columns: 1.55fr .85fr; gap: 48px; align-items: start; }
.prose p { color: var(--slate); font-size: 16px; line-height: 1.7; margin-bottom: 16px; max-width: 700px; }
.prose h3, .block h3 { font-size: 22px; margin: 30px 0 12px; }
.prose h3:first-child { margin-top: 0; }
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 6px 0 8px; }
.checklist li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-2); }
.checklist li svg { width: 19px; height: 19px; color: #16a34a; flex: none; margin-top: 3px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.brand-chips span { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 15px; font-weight: 600; font-size: 14px; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); margin: 22px 0; }
.tile .price { font-size: 34px; font-weight: 800; color: var(--ink); }
.tile .price span { font-size: 15px; font-weight: 600; color: var(--slate-3); }
.svc-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.svc-photos img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-sm); }
.aside-cta { position: sticky; top: 92px; background: var(--grad-deep); color: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.aside-cta h3 { font-size: 20px; }
.aside-cta p { color: #cbd5e1; font-size: 14.5px; margin: 8px 0 18px; }
.aside-cta .btn { width: 100%; margin-bottom: 10px; }
.aside-cta .lic { font-size: 12.5px; color: #94a3b8; margin: 14px 0 0; }
@media (max-width: 860px) {
  .svc-layout { grid-template-columns: 1fr; gap: 30px; }
  .checklist { grid-template-columns: 1fr; }
  .aside-cta { position: static; }
}

/* ─── Tune-up feature card ────────────────────────────────────────── */
.tuneup { display: grid; grid-template-columns: 270px 1fr; margin: 28px 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid #bae6fd; box-shadow: var(--shadow); background: linear-gradient(135deg, #f0f9ff, #eff6ff); }
.tuneup-media { background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 24px; border-right: 1px solid #e0f2fe; }
.tuneup-media img { width: 158px; height: 158px; object-fit: contain; }
.tuneup-media .price { font-size: 46px; font-weight: 800; color: var(--ink); line-height: 1; margin-top: 4px; }
.tuneup-media .label { font-weight: 700; color: var(--blue); font-size: 15px; margin-top: 4px; }
.tuneup-pill { display: inline-block; margin-top: 14px; background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.tuneup-body { padding: 30px 32px; }
.tuneup-body h3 { font-size: 19px; margin-bottom: 16px; }
.tuneup-body .checklist { grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
.tuneup-note { font-size: 13.5px; color: var(--slate-3); border-top: 1px solid var(--line); padding-top: 16px; margin: 0; }
@media (max-width: 720px) {
  .tuneup { grid-template-columns: 1fr; }
  .tuneup-media { border-right: 0; border-bottom: 1px solid #e0f2fe; padding: 26px; }
  .tuneup-media img { width: 128px; height: 128px; }
  .tuneup-body .checklist { grid-template-columns: 1fr; }
}

/* ─── Service-page hero variants ──────────────────────────────────── */
.svc-hero.is-gutters { background: linear-gradient(100deg, rgba(11,18,32,.94) 0%, rgba(15,23,42,.86) 55%, rgba(16,42,67,.72) 100%), url("gutters-hero.jpg") center/cover no-repeat; }
.svc-hero.is-drainage { background: linear-gradient(100deg, rgba(11,18,32,.92) 0%, rgba(15,23,42,.82) 50%, rgba(16,42,67,.60) 100%), url("drainage-hero.jpg") center/cover no-repeat; }

.svc-hero.is-pumps { background: linear-gradient(100deg, rgba(11,18,32,.93) 0%, rgba(15,23,42,.83) 52%, rgba(16,42,67,.62) 100%), url("pumps-hero.jpg") center/cover no-repeat; }

.svc-hero.is-guards { background: linear-gradient(100deg, rgba(11,18,32,.93) 0%, rgba(15,23,42,.84) 52%, rgba(16,42,67,.64) 100%), url("gutter-guards-hero.jpg") center/cover no-repeat; }
.guards-how { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; margin-top: 40px; }
.guards-how img, .guards-how video { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); display: block; background: #000; }
.guards-how ol { margin: 0; padding-left: 0; list-style: none; counter-reset: g; }
.guards-how li { display: flex; gap: 14px; margin-bottom: 16px; font-size: 15.5px; color: var(--ink-2); }
.guards-how li b { display: block; }
.guards-how li .gn { counter-increment: g; flex: none; width: 30px; height: 30px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.guards-how li .gn::before { content: counter(g); }
@media (max-width: 720px){ .guards-how { grid-template-columns: 1fr; } .guards-how img, .guards-how video { max-width: 300px; margin: 0 auto; } }

/* ─── Booking embed page ──────────────────────────────────────────── */
.book-intro { padding: clamp(40px,5vw,64px) 0 8px; }
.book-frame { position: relative; max-width: 1080px; margin: 30px auto 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff; }
.book-frame .ph { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; color: var(--slate-3); font-size: 15px; z-index: 0; text-align: center; padding: 24px; }
.book-frame .ph .spin { width: 30px; height: 30px; border: 3px solid var(--line); border-top-color: var(--sky); border-radius: 50%; animation: bspin 0.9s linear infinite; }
@keyframes bspin { to { transform: rotate(360deg); } }
.book-frame iframe { position: relative; z-index: 1; width: 100%; height: 1400px; border: 0; display: block; }
.book-fallback { text-align: center; margin: 18px auto 0; font-size: 14.5px; color: var(--slate); }
.book-fallback a { color: var(--blue); font-weight: 600; }
@media (max-width: 720px) { .book-frame iframe { height: 2400px; } }

/* Clickable gallery tiles */
.gallery-grid figure .gfig-link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }

/* address wrap */
.foot-contact a { align-items: flex-start; }

/* Clickable tune-up pill */
.tuneup-pill { transition: transform .15s ease, box-shadow .2s ease; }
a.tuneup-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(37,99,235,.55); }

/* Footer social icons */
.foot-social { display: flex; gap: 11px; margin-top: 20px; }
.foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #cbd5e1; transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease; }
.foot-social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.foot-social svg { width: 19px; height: 19px; }

/* ─── Irrigation Help Center ─────────────────────────────────────── */
.help-bar { position: sticky; top: 72px; z-index: 40; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line); padding: 16px 0; box-shadow: var(--shadow-sm); }
.help-search { display: flex; align-items: center; gap: 11px; background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 0 14px; transition: border-color .15s, box-shadow .15s; }
.help-search:focus-within { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(14,165,233,.14); }
.help-search svg { width: 21px; height: 21px; color: var(--slate-3); flex: none; }
.help-search input { flex: 1; border: 0; outline: 0; background: transparent; font-family: inherit; font-size: 16.5px; color: var(--ink); padding: 15px 4px; min-width: 0; }
.help-clear { border: 0; background: var(--bg-soft-2); color: var(--slate); width: 28px; height: 28px; border-radius: 50%; font-size: 19px; line-height: 1; cursor: pointer; flex: none; }
.help-clear:hover { background: #e2e8f0; color: var(--ink); }
.help-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.help-filter { font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: var(--bg-soft-2); border: 1px solid transparent; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.help-filter:hover { background: #e2e8f0; }
.help-filter.on { background: var(--grad); color: #fff; }
.help-section { padding-top: 44px; }
.help-cat { max-width: 860px; margin: 0 auto 30px; }
.help-h2 { font-size: clamp(21px,2.6vw,28px); margin: 28px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-soft-2); }
.help-noresults { max-width: 860px; margin: 0 auto 20px; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; padding: 16px 20px; border-radius: var(--r); font-size: 15px; }
.help-noresults a { color: var(--blue); font-weight: 600; }
.help-item summary .hi-q { flex: 1; }
.hi-body { padding: 0 0 20px; }
.hi-a { color: var(--ink-2); font-size: 15.5px; margin-bottom: 16px; }
.hi-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.hi-cols h4 { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.hi-cols ul { margin: 0; padding-left: 18px; }
.hi-cols li { font-size: 14.5px; color: var(--slate); margin-bottom: 6px; }
.hi-pro { margin-top: 16px; background: var(--bg-soft); border-left: 3px solid var(--sky); padding: 11px 15px; border-radius: 8px; font-size: 14.5px; color: var(--ink-2); }
.hi-pro a { color: var(--blue); font-weight: 600; }
@media (max-width: 640px){ .hi-cols { grid-template-columns: 1fr; gap: 4px 0; } .help-bar { top: 64px; } }

/* ─── Top-nav dropdown menus ─────────────────────────────────────── */
.nav-item { position: relative; display: inline-flex; }
.nav-top { font-family: inherit; font-weight: 600; font-size: 14.5px; color: var(--ink-2); background: none; border: 0; cursor: pointer; padding: 8px 11px; border-radius: 10px; display: inline-flex; align-items: center; gap: 6px; transition: background .15s, color .15s; white-space: nowrap; }
.nav-item:hover .nav-top, .nav-item:focus-within .nav-top { background: var(--bg-soft-2); color: var(--blue); }
.nav-caret { width: 11px; height: 11px; opacity: .55; transition: transform .2s; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-menu { position: absolute; top: 100%; left: 0; min-width: 252px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 9px; margin-top: 9px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s; z-index: 60; }
.nav-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 14px; }
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.nav-menu a:hover { background: var(--bg-soft-2); color: var(--blue); }
/* Mobile drawer service groups */
.dr-group { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 8px; }
.dr-head { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-3); padding: 6px 0 2px; }
.drawer .panel .dr-group a { display: block; font-size: 15.5px; padding: 12px 4px 12px 12px; border-bottom: 0; color: var(--ink-2); }

/* Landscape Lighting page hero — evening theme with a warm glow */
.svc-hero.is-lighting { background: radial-gradient(700px 440px at 82% -8%, rgba(245,158,11,.22), transparent 60%), radial-gradient(600px 420px at 6% 108%, rgba(37,99,235,.30), transparent 58%), var(--grad-deep); }
