  /* ===================================================================
     Aldo Alleguez's Pool Service — theme: "Clear-water, teal-led"
     Palette: deep water navy-teal + aqua.  Warm coral = CTAs ONLY.
     Self-contained: system fonts, inline SVG icons, CSS/SVG visuals.
     =================================================================== */
  :root {
    --deep:       #0A3D5E;   /* brand primary — deep water */
    --deep-800:   #0E4A70;   /* raised */
    --deep-900:   #062A41;   /* footer base */
    --teal:       #0F7C9A;   /* mid teal */
    --teal-ic:    #0C6D88;   /* icon ink */
    --aqua:       #23B5D3;   /* bright aqua highlight */
    --ink:        #12303F;   /* body headings */
    --muted:      #5A6B75;   /* secondary text */
    --paper:      #ffffff;
    --paper-alt:  #F0F7F9;   /* light aqua section tint */
    --line:       #DBE7EB;   /* hairlines */
    --tint-aqua:  #E1F1F5;   /* aqua icon chip bg */
    --tint-teal:  #E7F1F3;   /* teal icon chip bg */
    --accent:     #FF6B45;   /* WARM CTA accent — CTAs only */
    --accent-600: #E8552F;   /* CTA hover */
    --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
    --sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }

  /* Inline SVG icon baseline */
  .icon {
    width: 1.05em; height: 1.05em; stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    vertical-align: -0.15em; flex-shrink: 0;
  }

  /* NAV */
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem; height: 72px; background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 100;
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-text { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
  .logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; display: block; margin-top: 1px; }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a { font-size: 13.5px; color: var(--teal-ic); text-decoration: none; font-weight: 500; transition: color 0.15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.active { color: var(--ink); font-weight: 600; }
  .nav-cta {
    background: var(--accent); color: #fff !important; padding: 9px 18px;
    border-radius: 6px; font-weight: 600 !important; font-size: 13.5px !important;
    display: flex; align-items: center; gap: 6px;
  }
  .nav-cta:hover { background: var(--accent-600) !important; }

  /* LOGO MARK (placeholder monogram — swap for real logo <img>) */
  .logo-mark {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 17px; color: #fff; letter-spacing: 0.02em;
    background: linear-gradient(150deg, var(--teal), var(--deep));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  }
  .ft-logo-mark {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 14px; color: #fff; letter-spacing: 0.02em;
    background: linear-gradient(150deg, var(--teal), var(--deep-800));
  }

  /* HERO (home) — CSS water gradient + wave overlay */
  .hero { position: relative; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(1100px 480px at 78% -10%, rgba(35,181,211,0.45), transparent 60%),
      linear-gradient(160deg, #0E4A70 0%, #0A3D5E 45%, #072F49 100%);
  }
  .hero-waves { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; width: 100%; height: 120px; display: block; }
  .hero-inner {
    position: relative; z-index: 2;
    padding: 5rem 3rem 6rem; max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
  }
  .hero-left { color: #fff; }
  .tag {
    display: inline-flex; align-items: center; gap: 7px; font-size: 12px;
    font-weight: 600; color: rgba(255,255,255,0.92); letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 1.4rem;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
    padding: 6px 12px; border-radius: 999px;
  }
  .tag .icon { color: var(--aqua); }
  .h1 {
    font-family: var(--serif); font-size: 52px; line-height: 1.07; font-weight: 400;
    color: #fff; letter-spacing: -0.015em; margin-bottom: 1.25rem;
    text-shadow: 0 1px 18px rgba(0,0,0,0.28);
  }
  .h1 .wave { color: var(--aqua); font-style: italic; }
  .hero-p { font-size: 16.5px; color: rgba(255,255,255,0.90); line-height: 1.7; max-width: 460px; margin-bottom: 2rem; font-weight: 400; }
  .btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .hero-badges { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.25rem; flex-wrap: wrap; }
  .hero-badge { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 7px; }
  .hero-badge .icon { color: var(--aqua); }

  /* Hero visual card (right) — placeholder photo */
  .hero-visual {
    position: relative; border-radius: 18px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(6,32,49,0.45);
    border: 1px solid rgba(255,255,255,0.18);
  }
  .photo-ph {
    position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; text-align: center; color: #fff;
    background:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 14px, rgba(255,255,255,0) 14px 28px),
      linear-gradient(160deg, #10769A 0%, #0C5C7C 55%, #0A3D5E 100%);
    min-height: 380px; padding: 1.5rem;
  }
  .photo-ph .ph-icon { width: 46px; height: 46px; opacity: 0.9; stroke: rgba(255,255,255,0.9); }
  .photo-ph .ph-label { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 600; }
  .photo-ph .ph-sub { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 400; max-width: 240px; line-height: 1.5; }
  .photo-ph.short { min-height: 240px; }
  .photo-ph.tall { min-height: 460px; }

  /* Primary CTA (accent coral) */
  .btn-primary {
    background: var(--accent); color: #fff; font-size: 14.5px; font-weight: 600;
    padding: 13px 26px; border-radius: 8px; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  }
  .btn-primary:hover { background: var(--accent-600); }
  .btn-lg { font-size: 16px; padding: 16px 30px; border-radius: 9px; box-shadow: 0 10px 26px rgba(255,107,69,0.34); }
  .btn-lg:hover { transform: translateY(-1px); }

  /* Secondary — outlined on media */
  .btn-ghost {
    font-size: 14px; color: #fff; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    padding: 13px 24px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.55);
    transition: background 0.15s, border-color 0.15s;
  }
  .btn-lg.btn-ghost { padding: 15px 26px; }
  .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

  /* TRUST BAR */
  .trust-bar { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
  .trust-item { padding: 1.35rem 1.5rem; display: flex; align-items: center; gap: 0.9rem; border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: none; }
  .trust-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
  .ic-aqua { background: var(--tint-aqua); color: var(--teal); }
  .ic-teal { background: var(--tint-teal); color: var(--teal-ic); }
  .ic-gray { background: #F2F5F6; color: var(--muted); }
  .trust-title { font-size: 14px; font-weight: 600; color: var(--ink); }
  .trust-sub { font-size: 12px; color: var(--muted); font-weight: 400; }

  /* QUOTE / REQUEST — the pitch moment */
  .request { background: var(--deep); padding: 4rem 3rem; position: relative; overflow: hidden; }
  .request::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(720px 320px at 90% 10%, rgba(35,181,211,0.28), transparent 60%);
  }
  .request-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; max-width: 1080px; margin: 0 auto; }
  .sec-tag.light { color: var(--aqua); }
  .request-h { font-family: var(--serif); font-size: 37px; line-height: 1.1; color: #fff; letter-spacing: -0.015em; margin-bottom: 1rem; }
  .request-p { font-size: 15.5px; color: rgba(255,255,255,0.85); line-height: 1.7; font-weight: 400; max-width: 440px; margin-bottom: 1.5rem; }
  .request-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 27px; color: #fff; text-decoration: none; }
  .request-phone .icon { color: var(--accent); }
  .request-badges { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .request-badges span { font-size: 12.5px; color: rgba(255,255,255,0.82); display: inline-flex; align-items: center; gap: 6px; }
  .request-badges .icon { color: var(--aqua); }

  .request-card { background: #fff; border-radius: 16px; padding: 1.85rem; box-shadow: 0 24px 55px rgba(0,0,0,0.30); }
  .rq-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
  .rq-sub { font-size: 13px; color: var(--muted); margin-bottom: 1.1rem; }
  .rq-field { display: block; margin-bottom: 0.9rem; }
  .rq-field span { display: block; font-size: 12px; font-weight: 600; color: var(--teal-ic); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
  .rq-field input, .rq-field select, .rq-field textarea {
    width: 100%; font-family: inherit; font-size: 14px; color: var(--ink);
    padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
  }
  .rq-field input:focus, .rq-field select:focus, .rq-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,124,154,0.13); }
  .btn-request {
    width: 100%; justify-content: center; margin-top: 0.35rem;
    background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
    padding: 14px 20px; border: none; border-radius: 9px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s;
  }
  .btn-request:hover { background: var(--accent-600); }
  .rq-note {
    margin-top: 0.9rem; font-size: 11.5px; color: var(--muted); line-height: 1.5;
    display: flex; align-items: flex-start; gap: 8px;
  }

  /* SERVICES */
  .services { padding: 4rem 3rem; background: var(--paper); }
  .sec-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
  .sec-h { font-family: var(--serif); font-size: 33px; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 0.6rem; }
  .sec-intro { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 620px; margin-bottom: 2rem; }
  .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  .svc { background: #fff; padding: 1.6rem 1.6rem; transition: background 0.15s; text-decoration: none; display: block; }
  .svc:hover { background: #FAFCFD; }
  .svc-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; font-size: 20px; }
  .svc-name { font-size: 15.5px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .svc-name .go { color: var(--teal); opacity: 0; transform: translateX(-4px); transition: opacity 0.15s, transform 0.15s; }
  .svc:hover .svc-name .go { opacity: 1; transform: translateX(0); }
  .svc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 400; }

  /* SPLIT FEATURE (photo + copy) */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 4rem 3rem; background: var(--paper); border-top: 1px solid var(--line); }
  .split.alt { background: var(--paper-alt); }
  .split.rev .split-media { order: 2; }
  .split-media .photo-ph { border-radius: 16px; box-shadow: 0 16px 40px rgba(6,32,49,0.18); }
  .split-copy .about-p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 400; margin-bottom: 1rem; max-width: 560px; }
  .checklist { list-style: none; margin-top: 1.25rem; display: grid; gap: 0.7rem; }
  .checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink); line-height: 1.55; }
  .checklist li .icon { color: var(--teal); margin-top: 2px; }

  /* BENEFITS GRID */
  .benefits { padding: 4rem 3rem; background: var(--paper-alt); border-top: 1px solid var(--line); }
  .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
  .benefit { display: flex; gap: 0.85rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.35rem; font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 400; }
  .benefit .icon { color: var(--teal); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  .benefit strong { display: block; color: var(--ink); font-weight: 600; font-size: 14.5px; margin-bottom: 3px; }

  /* ABOUT */
  .about { padding: 4rem 3rem; background: var(--paper); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
  .about-p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 400; margin-bottom: 1rem; max-width: 560px; }
  .about-card { background: var(--paper-alt); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 2rem; }
  .about-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .about-row:last-child { border-bottom: none; }
  .about-row .icon { font-size: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
  .about-name { font-size: 14px; font-weight: 600; color: var(--ink); }
  .about-role { font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }

  /* STATS STRIP */
  .stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--deep-900); }
  .stat { padding: 2.25rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:last-child { border-right: none; }
  .stat-num { font-family: var(--serif); font-size: 40px; color: #fff; line-height: 1; }
  .stat-num .accent { color: var(--aqua); }
  .stat-label { font-size: 12.5px; color: rgba(255,255,255,0.62); margin-top: 8px; letter-spacing: 0.03em; }

  /* OFFER STRIP */
  .offer-strip {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.4rem 3rem; background: var(--paper-alt); border-top: 1px solid var(--line);
  }
  .offer-strip-pct { font-family: var(--serif); font-size: 32px; color: var(--teal); flex-shrink: 0; }
  .offer-strip-txt { font-size: 14px; color: var(--muted); font-weight: 400; line-height: 1.5; }
  .offer-strip-txt strong { font-weight: 600; color: var(--ink); }

  /* CTA STRIP */
  .cta-strip { background: var(--deep); padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
  .cta-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 280px at 88% 20%, rgba(35,181,211,0.26), transparent 60%); }
  .cta-strip > * { position: relative; z-index: 1; }
  .cta-title { font-family: var(--serif); font-size: 29px; color: #fff; margin-bottom: 4px; }
  .cta-sub { font-size: 14px; color: rgba(255,255,255,0.68); font-weight: 400; }

  /* PAGE HERO (subpages) */
  .page-hero { position: relative; overflow: hidden; padding: 4.5rem 3rem; min-height: 300px; display: flex; align-items: center; }
  .page-hero .hero-bg { background: radial-gradient(900px 420px at 82% -20%, rgba(35,181,211,0.4), transparent 60%), linear-gradient(160deg, #0E4A70 0%, #0A3D5E 55%, #072F49 100%); }
  .ph-inner { position: relative; z-index: 2; max-width: 720px; }
  .page-h1 { font-family: var(--serif); font-size: 42px; line-height: 1.1; color: #fff; letter-spacing: -0.015em; margin-bottom: 1rem; text-shadow: 0 1px 14px rgba(0,0,0,0.32); }
  .page-hero-p { font-size: 15.5px; color: rgba(255,255,255,0.9); line-height: 1.7; font-weight: 400; max-width: 560px; }

  /* CONTENT SECTIONS */
  .page-section { padding: 4rem 3rem; }
  .page-section.alt { background: var(--paper-alt); border-top: 1px solid var(--line); }

  /* PRICING / PLAN CARDS */
  .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
  .plan { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.75rem; display: flex; flex-direction: column; }
  .plan.featured { border-color: var(--teal); box-shadow: 0 12px 34px rgba(15,124,154,0.16); position: relative; }
  .plan-badge { position: absolute; top: -11px; left: 1.75rem; background: var(--teal); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; }
  .plan-name { font-size: 16px; font-weight: 700; color: var(--ink); }
  .plan-price { font-family: var(--serif); font-size: 34px; color: var(--deep); margin: 0.5rem 0 0.25rem; }
  .plan-price span { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 400; }
  .plan-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 1.1rem; }
  .plan-list { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.35rem; }
  .plan-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink); line-height: 1.5; }
  .plan-list .icon { color: var(--teal); margin-top: 2px; }
  .plan .btn-primary { justify-content: center; margin-top: auto; }
  .plan-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 8px; }

  /* STEPS */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
  .step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem; }
  .step-num { width: 34px; height: 34px; border-radius: 9px; background: var(--tint-aqua); color: var(--teal); font-family: var(--serif); font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; }
  .step-name { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; }
  .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* FOOTER */
  .footer { background: var(--deep); padding: 3rem; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
  .ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; text-decoration: none; }
  .ft-name { font-size: 14px; font-weight: 600; color: #fff; }
  .ft-tagline { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.7; font-weight: 400; max-width: 320px; }
  .ft-heading { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.85rem; }
  .ft-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.74); margin-bottom: 0.55rem; font-weight: 400; }
  .ft-row .icon { font-size: 15px; color: rgba(255,255,255,0.42); flex-shrink: 0; }
  .ft-row a { color: inherit; text-decoration: none; }
  .ft-row a:hover { color: #fff; }
  .ft-row strong { color: #fff; font-weight: 600; }
  .ft-links { list-style: none; display: grid; gap: 0.55rem; }
  .ft-links a { font-size: 13px; color: rgba(255,255,255,0.74); text-decoration: none; }
  .ft-links a:hover { color: #fff; }
  .ft-bottom { background: var(--deep-900); padding: 1rem 3rem; display: flex; justify-content: space-between; align-items: center; }
  .ft-copy { font-size: 12px; color: rgba(255,255,255,0.42); }

  /* DEMO NOTES — internal/pitch markers, removed before production */
  .demo-note {
    display: flex; align-items: flex-start; gap: 12px;
    border: 1.5px dashed #7C3AED; background: rgba(124, 58, 237, 0.06);
    border-radius: 10px; padding: 0.9rem 1.25rem;
    font-size: 13px; color: #5B21B6; line-height: 1.6; font-weight: 400;
  }
  .demo-note-badge {
    flex-shrink: 0; background: #7C3AED; color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px; margin-top: 2px;
  }
  .demo-note-strip { padding: 1.1rem 3rem; background: var(--paper); }
  .demo-note-strip.gray { background: var(--paper-alt); }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    .nav { padding: 0 1.5rem; }
    .nav-links { gap: 0; }
    .nav-links li { display: none; }
    .nav-links li:last-child { display: block; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 3.5rem 1.5rem 5rem; }
    .hero-visual { order: 2; }
    .h1 { font-size: 40px; }
    .request { padding: 3rem 1.5rem; }
    .request-inner { grid-template-columns: 1fr; gap: 2rem; }
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .split.rev .split-media { order: 0; }
    .benefits { padding: 3rem 1.5rem; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .about { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .stats { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .services { padding: 3rem 1.5rem; }
    .plans { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .footer { grid-template-columns: 1fr 1fr; padding: 2rem 1.5rem; }
    .page-section { padding: 3rem 1.5rem; }
    .page-hero { padding: 3.5rem 1.5rem; }
    .page-h1 { font-size: 34px; }
    .cta-strip { padding: 2.5rem 1.5rem; }
    .offer-strip { padding: 1.4rem 1.5rem; }
    .demo-note-strip { padding: 1.1rem 1.5rem; }
    .ft-bottom { padding: 1rem 1.5rem; }
  }
  /* ===================================================================
     POLISH PASS — motion, micro-interactions, reviews, before/after,
     scheduler mock, local ribbon.  All self-contained, reduced-motion safe.
     =================================================================== */

  /* Animated hero water — gentle drifting wave layers */
  .hero-waves path { will-change: transform; }
  .hero-waves .wave-back { animation: drift 15s ease-in-out infinite alternate; }
  .hero-waves .wave-front { animation: drift 11s ease-in-out infinite alternate-reverse; }
  @keyframes drift { from { transform: translateX(-24px); } to { transform: translateX(24px); } }

  /* Soft caustic shimmer over the hero water */
  .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(520px 220px at 22% 12%, rgba(35,181,211,0.18), transparent 62%),
      radial-gradient(420px 200px at 62% 30%, rgba(255,255,255,0.06), transparent 60%);
    mix-blend-mode: screen; opacity: 0.9;
    animation: shimmer 9s ease-in-out infinite alternate;
  }
  @keyframes shimmer { from { transform: translate3d(0,0,0) scale(1); opacity: 0.55; } to { transform: translate3d(0,-10px,0) scale(1.05); opacity: 0.95; } }

  /* Scroll-reveal */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.06s; }
  .reveal.d2 { transition-delay: 0.12s; }
  .reveal.d3 { transition-delay: 0.18s; }

  /* Card micro-interactions — lift + aqua edge */
  .svc { position: relative; }
  .svc::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--aqua), var(--teal)); transform: scaleY(0); transform-origin: top; transition: transform 0.25s ease; }
  .svc:hover::after { transform: scaleY(1); }
  .benefit, .step, .plan { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
  .benefit:hover, .step:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(6,32,49,0.10); border-color: #CFE1E7; }
  .plan:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(6,32,49,0.14); }
  .plan.featured:hover { box-shadow: 0 24px 50px rgba(15,124,154,0.22); }
  .trust-item { transition: background 0.2s ease; }
  .trust-item:hover { background: var(--paper-alt); }
  .trust-icon, .svc-icon { transition: transform 0.25s ease; }
  .svc:hover .svc-icon, .trust-item:hover .trust-icon { transform: translateY(-2px) rotate(-3deg); }
  .request-phone { transition: transform 0.2s ease; }
  .request-phone:hover { transform: translateX(3px); }
  .btn-primary:active, .btn-request:active { transform: translateY(1px); }

  /* REVIEWS / TESTIMONIALS */
  .reviews { padding: 4rem 3rem; background: var(--paper); border-top: 1px solid var(--line); }
  .reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .reviews-rating { display: flex; align-items: center; gap: 0.7rem; }
  .stars { display: inline-flex; gap: 2px; }
  .stars .icon { width: 18px; height: 18px; color: #F5A524; fill: #F5A524; stroke: #F5A524; }
  .rating-meta { font-size: 13px; color: var(--muted); }
  .rating-meta strong { color: var(--ink); font-weight: 700; }
  .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .review { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.5rem 1.35rem; display: flex; flex-direction: column; gap: 0.85rem; transition: transform 0.2s ease, box-shadow 0.2s ease; position: relative; }
  .review:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(6,32,49,0.10); }
  .review-stars { display: inline-flex; gap: 2px; }
  .review-stars .icon { width: 15px; height: 15px; color: #F5A524; fill: #F5A524; stroke: #F5A524; }
  .review-text { font-size: 14px; color: var(--ink); line-height: 1.65; }
  .review-by { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
  .review-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; color: #fff; background: linear-gradient(150deg, var(--teal), var(--deep)); }
  .review-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
  .review-loc { font-size: 11.5px; color: var(--muted); }

  /* BEFORE / AFTER — green-to-clean visual */
  .ba { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(6,32,49,0.18); min-height: 340px; display: grid; grid-template-columns: 1fr 1fr; }
  .ba-half { position: relative; display: flex; align-items: flex-end; padding: 1rem 1.15rem; min-height: 340px; }
  .ba-before { background: repeating-linear-gradient(48deg, rgba(0,0,0,0.05) 0 12px, rgba(0,0,0,0) 12px 24px), linear-gradient(160deg, #5C7A3A 0%, #3F5E2A 55%, #2C4720 100%); }
  .ba-after { background: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 14px, rgba(255,255,255,0) 14px 28px), linear-gradient(160deg, #17A6C9 0%, #0C6D88 55%, #0A3D5E 100%); }
  .ba-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.28); padding: 5px 10px; border-radius: 6px; backdrop-filter: blur(2px); }
  .ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,0.85); transform: translateX(-50%); z-index: 2; }
  .ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; z-index: 3; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,0.3); color: var(--teal); }
  .ba-knob .icon { width: 20px; height: 20px; }
  .ba-cap { position: absolute; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 4; font-size: 11px; font-weight: 600; color: #fff; background: rgba(6,32,49,0.55); padding: 4px 11px; border-radius: 999px; letter-spacing: 0.04em; }

  /* LOCAL RIBBON — service-area chips */
  .area-ribbon { padding: 2.5rem 3rem; background: var(--paper-alt); border-top: 1px solid var(--line); text-align: center; }
  .area-ribbon .sec-tag { margin-bottom: 0.6rem; }
  .area-h { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 1.25rem; letter-spacing: -0.01em; }
  .area-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; max-width: 780px; margin: 0 auto; }
  .area-chip { font-size: 13px; color: var(--teal-ic); background: #fff; border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
  .area-chip:hover { transform: translateY(-2px); border-color: var(--aqua); color: var(--deep); }
  .area-chip .icon { width: 14px; height: 14px; color: var(--aqua); }

  /* SCHEDULER MOCK — "online booking" visual for the pitch */
  .sched-strip { padding: 4rem 3rem; background: var(--paper); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .sched-mock { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 44px rgba(6,32,49,0.12); overflow: hidden; }
  .sched-top { background: linear-gradient(150deg, var(--teal), var(--deep)); color: #fff; padding: 1.1rem 1.35rem; display: flex; align-items: center; justify-content: space-between; }
  .sched-top-title { font-size: 14px; font-weight: 600; }
  .sched-top-sub { font-size: 11.5px; color: rgba(255,255,255,0.75); margin-top: 2px; }
  .sched-body { padding: 1.35rem; }
  .sched-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 1.1rem; }
  .sched-day { text-align: center; border: 1px solid var(--line); border-radius: 10px; padding: 8px 4px; font-size: 12px; color: var(--muted); transition: border-color 0.2s ease; }
  .sched-day span { display: block; font-family: var(--serif); font-size: 18px; color: var(--ink); margin-top: 2px; }
  .sched-day.pick { border-color: var(--teal); background: var(--tint-aqua); color: var(--teal-ic); }
  .sched-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sched-slot { text-align: center; font-size: 12.5px; padding: 9px 4px; border-radius: 9px; border: 1px solid var(--line); color: var(--ink); }
  .sched-slot.taken { color: #B0BBC1; text-decoration: line-through; background: #F6F9FA; }
  .sched-slot.open { border-color: var(--teal); color: var(--teal-ic); font-weight: 600; }
  .sched-confirm { margin-top: 1.1rem; width: 100%; text-align: center; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; padding: 12px; border-radius: 9px; }

  /* ===================================================================
     TRANSFORMATION-LED HOME — compact hero, interactive green-to-clean
     slider centerpiece, spotlighted scheduler.  Reduced-motion safe.
     =================================================================== */

  /* Compact hero: tighter, single-column, sets up the slider below */
  .hero-compact .hero-inner-compact {
    grid-template-columns: 1fr;
    max-width: 820px;
    padding: 3.25rem 3rem 4.75rem;
    text-align: center;
    justify-items: center;
  }
  .hero-compact .h1 { font-size: 46px; margin-bottom: 1rem; }
  .hero-compact .hero-p { margin-left: auto; margin-right: auto; max-width: 600px; margin-bottom: 1.75rem; }
  .hero-compact .btns { justify-content: center; }
  .hero-compact .hero-badges { justify-content: center; margin-top: 1.75rem; }

  /* Transformation section — the hook */
  .transform { padding: 3.5rem 3rem 4rem; background: var(--paper); }
  .transform-head { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
  .transform-head .sec-intro { margin-left: auto; margin-right: auto; }
  .transform-stage { max-width: 940px; margin: 0 auto; }

  /* Animatable clip position — enables the idle hint + smooth control */
  @property --pos {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
  }

  .baslider {
    --pos: 50%;
    position: relative; border-radius: 20px; overflow: hidden;
    min-height: 460px; height: 52vh; max-height: 560px;
    box-shadow: 0 26px 64px rgba(6,32,49,0.30);
    border: 1px solid rgba(255,255,255,0.14);
    touch-action: pan-y; user-select: none;
  }
  .bs-pane { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.15rem 1.35rem; }
  /* Base layer = the clean AFTER result */
  .bs-after {
    justify-content: flex-end;
    background:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 16px, rgba(255,255,255,0) 16px 32px),
      radial-gradient(680px 300px at 78% 8%, rgba(35,181,211,0.45), transparent 60%),
      linear-gradient(160deg, #19A9CC 0%, #0C6D88 55%, #0A3D5E 100%);
  }
  /* Top layer = the green BEFORE, clipped from the left edge to --pos */
  .bs-before {
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
    background:
      repeating-linear-gradient(48deg, rgba(0,0,0,0.06) 0 13px, rgba(0,0,0,0) 13px 26px),
      radial-gradient(520px 260px at 26% 14%, rgba(120,150,60,0.5), transparent 60%),
      linear-gradient(160deg, #6B8C3F 0%, #47682C 52%, #2C4720 100%);
  }
  .bs-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #fff; background: rgba(0,0,0,0.32); padding: 5px 11px; border-radius: 7px;
    backdrop-filter: blur(2px); position: relative; z-index: 2;
  }
  .bs-cap {
    position: absolute; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 6;
    font-size: 11px; font-weight: 600; color: #fff; background: rgba(6,32,49,0.55);
    padding: 5px 13px; border-radius: 999px; letter-spacing: 0.04em; white-space: nowrap;
  }
  .bs-divider {
    position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; z-index: 4;
    background: rgba(255,255,255,0.9); transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(6,32,49,0.15);
  }
  .bs-knob {
    position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%); z-index: 5;
    width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 16px rgba(0,0,0,0.32); pointer-events: none;
  }
  .bs-knob .icon { width: 22px; height: 22px; }
  /* Full-surface range = pointer + keyboard control (invisible, accessible) */
  .bs-range {
    position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
    -webkit-appearance: none; appearance: none; background: transparent;
    cursor: ew-resize; z-index: 7;
  }
  .bs-range:focus-visible { outline: none; }
  .baslider:focus-within .bs-knob { box-shadow: 0 5px 16px rgba(0,0,0,0.32), 0 0 0 4px rgba(35,181,211,0.55); }
  .bs-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 48px; height: 100%; cursor: ew-resize; }
  .bs-range::-moz-range-thumb { width: 48px; height: 100%; border: none; background: transparent; cursor: ew-resize; }
  .bs-range::-moz-range-track { background: transparent; }

  /* Idle hint — nudges the reveal so the affordance is obvious.
     Motion-gated: only runs when the user hasn't asked to reduce motion,
     and stops the moment the slider is touched. */
  @media (prefers-reduced-motion: no-preference) {
    .baslider:not(.is-touched) { animation: baHint 6s ease-in-out infinite; }
    .baslider:not(.is-touched):hover,
    .baslider:not(.is-touched):focus-within { animation: none; }
  }
  @keyframes baHint {
    0%, 100% { --pos: 50%; }
    28%      { --pos: 68%; }
    62%      { --pos: 34%; }
  }

  /* Mini metrics under the slider */
  .transform-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
  .tm { text-align: center; background: var(--paper-alt); border: 1px solid var(--line); border-radius: 12px; padding: 1rem; }
  .tm-num { font-family: var(--serif); font-size: 30px; color: var(--deep); line-height: 1; }
  .tm-num span { font-family: var(--sans); font-size: 12.5px; color: var(--teal); font-weight: 600; margin-left: 4px; }
  .tm-label { font-size: 12px; color: var(--muted); margin-top: 6px; }
  .transform-foot { max-width: 940px; margin: 1.5rem auto 0; }

  /* Spotlight the scheduler so it reads as a headline feature */
  .sched-strip.spotlight { background: linear-gradient(180deg, #fff 0%, var(--paper-alt) 100%); }
  .sched-strip.spotlight .sched-mock { box-shadow: 0 26px 60px rgba(6,32,49,0.18); }

  @media (max-width: 960px) {
    .reviews { padding: 3rem 1.5rem; }
    .review-grid { grid-template-columns: 1fr; }
    .sched-strip { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .area-ribbon { padding: 2.25rem 1.5rem; }
    .hero-compact .hero-inner-compact { padding: 3rem 1.5rem 4rem; }
    .hero-compact .h1 { font-size: 36px; }
    .transform { padding: 3rem 1.5rem; }
    .baslider { min-height: 360px; height: auto; }
  }

  @media (max-width: 600px) {
    .transform-metrics { grid-template-columns: 1fr; }
    .baslider { min-height: 300px; }
    .bs-knob { width: 40px; height: 40px; }
  }

  /* Respect reduced motion everywhere */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    html { scroll-behavior: auto; }
  }

  @media (max-width: 600px) {
    .nav { padding: 0 1rem; }
    .logo-sub { display: none; }
    .nav-cta { padding: 8px 13px; }
    .h1 { font-size: 32px; }
    .request-h { font-size: 29px; }
    .svc-grid { grid-template-columns: 1fr; }
    .trust-bar { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
    .benefits-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .steps { grid-template-columns: 1fr; }
    .footer { grid-template-columns: 1fr; }
    .btns { gap: 10px; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    .cta-strip .btn-primary { width: 100%; }
    .ft-bottom { flex-direction: column; gap: 4px; text-align: center; }
  }
