:root{
    --navy-900:#0b1d36;
    --navy-800:#112a4c;
    --navy-700:#17345c;
    --navy-50:#f2f5fa;
    --ink:#0e1726;
    --ink-2:#3a4656;
    --ink-3:#6a7689;
    --line:#e4e8ef;
    --line-2:#d2d8e2;
    --bg:#ffffff;
    --bg-2:#f7f8fb;
    --accent:#d81f26;       /* signal red */
    --accent-press:#b4161c;
    --ok:#0f7a4a;
    --amber:#b27300;
    --shadow-sm: 0 1px 2px rgba(11,29,54,.06), 0 1px 1px rgba(11,29,54,.04);
    --shadow-md: 0 8px 24px rgba(11,29,54,.10), 0 2px 6px rgba(11,29,54,.06);
    --shadow-lg: 0 24px 60px rgba(11,29,54,.18), 0 4px 10px rgba(11,29,54,.08);
    --radius: 10px;
    --radius-lg: 14px;
    --max: 1200px;
  }
  *{box-sizing:border-box}
  html,body{margin:0;padding:0}
  body{
    font-family:'Inter',system-ui,sans-serif;
    color:var(--ink);
    background:var(--bg);
    font-size:16px;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:'Archivo',sans-serif;letter-spacing:-0.01em;color:var(--ink);margin:0}
  h1{font-weight:800;letter-spacing:-0.025em;line-height:1.02}
  h2{font-weight:700;letter-spacing:-0.02em;line-height:1.08}
  h3{font-weight:700;line-height:1.2}
  p{margin:0}
  a{color:inherit}
  .mono{font-family:'JetBrains Mono',ui-monospace,monospace;font-feature-settings:'ss01'}
  .wrap{max-width:var(--max);margin:0 auto;padding:0 24px}

  /* ---------- Top strip ---------- */
  .topstrip{
    background:var(--navy-900);color:#cfd8e8;font-size:13px;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .topstrip .wrap{display:flex;gap:24px;align-items:center;height:36px;justify-content:space-between}
  .topstrip .left{display:flex;gap:20px;align-items:center;flex-wrap:wrap}
  .topstrip .pill{display:inline-flex;align-items:center;gap:6px}
  .topstrip .dot{width:6px;height:6px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 3px rgba(34,197,94,.18)}
  .topstrip .right{display:flex;gap:18px;align-items:center;color:#9db0c9}

  /* ---------- Header ---------- */
  .header{
    position:sticky;top:0;z-index:40;
    background:rgba(255,255,255,.96);backdrop-filter:saturate(1.2) blur(10px);
    border-bottom:1px solid var(--line);
  }
  .header .wrap{display:flex;align-items:center;height:76px;gap:20px}
  .logo{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink)}
  .logo .mark{
    width:38px;height:38px;border-radius:8px;background:var(--navy-900);
    display:grid;place-items:center;color:#fff;position:relative;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  }
  .logo .mark::after{
    content:"";position:absolute;left:50%;bottom:-5px;width:10px;height:4px;
    background:var(--navy-900);transform:translateX(-50%);border-radius:1px;
    clip-path:polygon(0 0,100% 0,80% 100%,20% 100%);
  }
  .logo .mark svg{width:20px;height:20px}
  .logo .name{font-family:'Archivo',sans-serif;font-weight:800;font-size:18px;letter-spacing:-0.01em}
  .logo .name span{color:var(--ink-3);font-weight:600}
  .nav{display:flex;gap:18px;margin-left:16px;flex-wrap:nowrap}
  .nav a{text-decoration:none;color:var(--ink-2);font-weight:500;font-size:14px;white-space:nowrap}
  .nav a:hover{color:var(--ink)}
  .header .cta{margin-left:auto;display:flex;align-items:center;gap:12px}
  .phonebtn{
    display:inline-flex;align-items:center;gap:10px;
    background:var(--accent);color:#fff;text-decoration:none;
    padding:12px 18px;border-radius:10px;font-weight:700;
    box-shadow:var(--shadow-sm);border:1px solid rgba(0,0,0,.06);
    transition:background .15s ease, transform .1s ease;
  }
  .phonebtn:hover{background:var(--accent-press)}
  .phonebtn svg{width:16px;height:16px}
  .phonebtn .lbl{font-size:12px;font-weight:500;opacity:.85;display:block;line-height:1;white-space:nowrap}
  .phonebtn .num{font-family:'Archivo';font-weight:800;font-size:17px;line-height:1.1;letter-spacing:-0.01em;white-space:nowrap}

  /* ---------- Hero shared ---------- */
  .hero{position:relative;overflow:hidden}
  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-family:'JetBrains Mono',monospace;font-size:12px;letter-spacing:0.06em;
    color:var(--ink-3);text-transform:uppercase;
  }
  .eyebrow .sq{width:8px;height:8px;background:var(--accent)}
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    padding:14px 22px;border-radius:10px;font-weight:700;
    text-decoration:none;border:1px solid transparent;cursor:pointer;
    font-family:'Inter',sans-serif;font-size:15px;
  }
  .btn-primary{background:var(--accent);color:#fff;box-shadow:var(--shadow-sm)}
  .btn-primary:hover{background:var(--accent-press)}
  .btn-ghost{background:#fff;color:var(--navy-900);border-color:var(--line-2)}
  .btn-ghost:hover{border-color:var(--ink-3)}
  .btn-dark{background:var(--navy-900);color:#fff}
  .btn-dark:hover{background:var(--navy-800)}

  /* Variant A: split */
  .quotecard{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);padding:28px;
  }
  .quotecard h3{font-size:20px;margin-bottom:6px}
  .quotecard .hint{color:var(--ink-3);font-size:13.5px;margin-bottom:20px}
  .field{margin-bottom:14px}
  .field label{display:block;font-size:12.5px;font-weight:600;color:var(--ink-2);margin-bottom:6px;letter-spacing:0.02em}
  .field input, .field select, .field textarea{
    width:100%;padding:12px 14px;border:1px solid var(--line-2);border-radius:8px;
    font-family:inherit;font-size:15px;color:var(--ink);background:#fff;outline:none;
    transition:border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    border-color:var(--navy-700);box-shadow:0 0 0 3px rgba(23,52,92,.12);
  }
  .row2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .quotecard .submit{width:100%;padding:14px;margin-top:6px}
  .quotecard .fine{font-size:12px;color:var(--ink-3);margin-top:12px;text-align:center}

  /* Variant B: fullbleed */
  .techcard{
    background:#0e2442;border:1px solid rgba(255,255,255,.08);border-radius:14px;
    box-shadow:var(--shadow-lg);overflow:hidden;
  }
  .techcard .photo{
    aspect-ratio:4/5;
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.02) 12px 24px),
      linear-gradient(180deg,#14304f,#0a1a31);
    display:flex;align-items:flex-end;justify-content:flex-start;padding:24px;position:relative;
  }
  .techcard .photo::before{
    content:"[ TECHNICIAN PHOTO ]";position:absolute;top:14px;left:16px;
    font-family:'JetBrains Mono',monospace;font-size:11px;color:rgba(255,255,255,.4);letter-spacing:.08em;
  }
  .techcard .badge{
    background:#fff;color:var(--ink);padding:10px 14px;border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.3);display:flex;align-items:center;gap:12px;
  }
  .techcard .badge svg{width:28px;height:28px;color:var(--navy-900)}
  .techcard .badge b{font-family:'Archivo';font-weight:800;font-size:14px;display:block}
  .techcard .badge span{font-size:12px;color:var(--ink-3)}
  .techcard .meta{padding:16px 20px;display:flex;justify-content:space-between;align-items:center;color:#c6d0e0;font-size:13px;font-family:'JetBrains Mono',monospace}

  /* Variant C: price-forward */
  .pricebox{
    background:#fff;border:1px solid var(--line);border-radius:14px;padding:28px;
    box-shadow:var(--shadow-md);
  }
  .pricebox h3{font-size:18px;margin-bottom:4px}
  .pricebox .line{display:flex;justify-content:space-between;padding:14px 0;border-bottom:1px dashed var(--line)}
  .pricebox .line:last-child{border-bottom:0}
  .pricebox .line span:first-child{color:var(--ink-2)}
  .pricebox .line b{font-family:'Archivo';font-weight:700}
  .pricebox .note{
    margin-top:16px;background:var(--navy-50);padding:12px 14px;border-radius:8px;
    font-size:13px;color:var(--navy-800);display:flex;gap:10px;align-items:flex-start;
  }
  .pricebox .note svg{flex:0 0 auto;margin-top:2px;color:var(--navy-700)}

  /* Variant D: banner graphic */
  .hero-banner{background:#fff}
  .hero-banner .banner{
    position:relative;min-height:340px;overflow:hidden;
    background:var(--navy-900);color:#fff;
    border-bottom:4px solid var(--accent);
  }
  .hero-banner .banner .bgfx{
    position:absolute;inset:0;
    background:
      radial-gradient(900px 340px at 18% 30%, rgba(216,31,38,.38), transparent 60%),
      radial-gradient(700px 300px at 85% 75%, rgba(34,180,220,.14), transparent 60%),
      linear-gradient(135deg, #0b1d36 0%, #060f1e 100%);
  }
  .hero-banner .banner .scan{
    position:absolute;inset:0;opacity:.28;pointer-events:none;
    background-image:repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 2px, transparent 2px 4px);
  }
  .hero-banner .banner .grid-bg{
    position:absolute;inset:0;opacity:.12;
    background-image:
      linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  }
  .hero-banner .banner .inner{
    position:relative;z-index:3;display:grid;
    grid-template-columns:1.3fr .9fr;gap:32px;align-items:center;
    padding:48px 0;
  }
  .hero-banner .kicker{
    display:inline-flex;align-items:center;gap:10px;color:#fff;font-family:'JetBrains Mono',monospace;
    font-size:12px;letter-spacing:.08em;text-transform:uppercase;
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);border-radius:999px;
    padding:6px 14px;width:fit-content;margin-bottom:18px;
  }
  .hero-banner .kicker .blink{width:7px;height:7px;background:#22c55e;border-radius:50%;box-shadow:0 0 0 3px rgba(34,197,94,.18);animation:blink 1.2s infinite}
  @keyframes blink{50%{opacity:.3}}
  .hero-banner .banner h1{
    font-size:clamp(38px,5vw,60px);color:#fff;max-width:640px;
  }
  .hero-banner .banner h1 em{
    font-style:normal;color:#fff;background:var(--accent);padding:0 12px;border-radius:4px;
    box-decoration-break:clone;-webkit-box-decoration-break:clone;
  }
  .hero-banner .banner .ctas{display:flex;gap:10px;margin-top:22px;flex-wrap:wrap}
  .hero-banner .banner .btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.3)}
  .hero-banner .banner .btn-ghost:hover{border-color:#fff}
  .hero-banner .banner .ctameta{
    margin:14px 0 0;
    font-size:13px;line-height:1.4;
    color:rgba(255,255,255,.72);
  }
  /* TV graphic */
  .hero-banner .tvwrap{position:relative;display:flex;justify-content:flex-end;align-items:center;padding-right:10px}
  .hero-banner .tv{
    position:relative;width:320px;height:210px;border-radius:10px;
    background:#050810;border:10px solid #0a0e18;
    box-shadow:0 30px 80px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.06);
  }
  .hero-banner .tv::after{
    content:"";position:absolute;bottom:-24px;left:50%;transform:translateX(-50%);
    width:90px;height:14px;background:#0a0e18;border-radius:0 0 6px 6px;
  }
  .hero-banner .tv .screen{
    position:absolute;inset:0;overflow:hidden;border-radius:2px;
    background:linear-gradient(90deg,
      #ffffff 0 14.28%, #f7e36a 14.28% 28.56%, #4ad2d2 28.56% 42.84%,
      #5cc66b 42.84% 57.12%, #c657c5 57.12% 71.4%, #d94b4b 71.4% 85.68%, #3d6eea 85.68% 100%);
    filter:saturate(.7) brightness(.8);
  }
  .hero-banner .tv .glitch{position:absolute;left:0;right:0;top:38%;height:8px;background:rgba(255,255,255,.55);mix-blend-mode:overlay;animation:glitch 2.6s infinite}
  .hero-banner .tv .glitch2{position:absolute;left:0;right:0;top:64%;height:3px;background:rgba(0,0,0,.5);animation:glitch 3.1s infinite .5s}
  @keyframes glitch{
    0%,92%,100%{transform:translateX(0);opacity:.5}
    93%{transform:translateX(-10%);opacity:.9}
    95%{transform:translateX(6%);opacity:.3}
    97%{transform:translateX(-2%);opacity:.8}
  }
  .hero-banner .tv .crack{
    position:absolute;inset:0;pointer-events:none;
    background:
      linear-gradient(115deg, transparent 48%, rgba(255,255,255,.9) 49%, rgba(255,255,255,.9) 50%, transparent 51%),
      linear-gradient(75deg, transparent 62%, rgba(255,255,255,.7) 63%, transparent 64%),
      linear-gradient(135deg, transparent 38%, rgba(255,255,255,.6) 39%, transparent 40%);
    mix-blend-mode:screen;opacity:.8;
  }
  .hero-banner .tv .tool{
    position:absolute;right:-40px;bottom:-18px;width:140px;
    transform:rotate(22deg);filter:drop-shadow(0 10px 20px rgba(0,0,0,.35));
  }
  .hero-banner .slash{
    position:absolute;left:38%;top:-10%;
    font-family:'Archivo';font-weight:800;font-size:180px;color:var(--accent);
    transform:rotate(-14deg);line-height:1;letter-spacing:-0.04em;
    opacity:.07;pointer-events:none;user-select:none;z-index:1;
  }
  /* Ticker */
  .hero-banner .ticker{
    background:#fff;border-bottom:1px solid var(--line);overflow:hidden;
    display:flex;align-items:center;height:56px;
  }
  .hero-banner .ticker .tag{
    background:var(--accent);color:#fff;padding:0 18px;height:100%;display:flex;align-items:center;
    font-family:'JetBrains Mono',monospace;font-size:12px;letter-spacing:.1em;text-transform:uppercase;
    font-weight:600;flex:0 0 auto;gap:8px;
  }
  .hero-banner .ticker .tag .dot{width:7px;height:7px;background:#fff;border-radius:50%;animation:blink 1.2s infinite}
  .hero-banner .ticker .vp{flex:1;overflow:hidden;position:relative;mask-image:linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%)}
  .hero-banner .ticker .track{
    display:flex;gap:48px;animation:scroll 40s linear infinite;white-space:nowrap;
    font-family:'Archivo';font-weight:700;font-size:17px;color:var(--ink-2);padding-left:32px;align-items:center;
  }
  .hero-banner .ticker .track .dot{color:var(--accent);font-size:10px}
  @keyframes scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

  .hero-banner .below{padding:48px 0 12px;display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:start}
  .hero-banner .below h2{font-size:26px;margin-bottom:10px}
  .hero-banner .below .lede{color:var(--ink-2);font-size:16.5px;max-width:560px}
  .hero-banner .below .meta{display:flex;gap:22px;margin-top:22px;flex-wrap:wrap;color:var(--ink-2);font-size:14px}
  .hero-banner .below .meta b{color:var(--ink);font-family:'Archivo';font-weight:700}

  /* ---------- Trust row ---------- */
  .trustrow{
    background:#fff;border-bottom:1px solid var(--line);
  }
  .trustrow .wrap{display:grid;grid-template-columns:repeat(5,1fr);gap:0;padding:0}
  .trustrow .cell{
    padding:22px 18px;display:flex;align-items:center;gap:14px;
    border-right:1px solid var(--line);
  }
  .trustrow .cell:last-child{border-right:0}
  .trustrow svg{width:32px;height:32px;color:var(--navy-800);flex:0 0 auto}
  .trustrow b{display:block;font-family:'Archivo';font-weight:700;font-size:14px;line-height:1.2}
  .trustrow span{font-size:12.5px;color:var(--ink-3)}

  /* ---------- Sections ---------- */
  section{padding:88px 0}
  section.compact{padding:64px 0}
  .sec-head{max-width:760px;margin-bottom:48px}
  .sec-head .eyebrow{margin-bottom:14px}
  .sec-head h2{font-size:clamp(30px,3.5vw,44px)}
  .sec-head p{color:var(--ink-2);font-size:17px;margin-top:14px}

  /* Services grid */
  .services{background:#fff}
  .sgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
  .scard{
    background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px;
    transition:border-color .15s, transform .15s, box-shadow .15s;position:relative;
  }
  .scard:hover{border-color:var(--navy-700);box-shadow:var(--shadow-md);transform:translateY(-2px)}
  .scard .ico{
    width:44px;height:44px;border-radius:10px;background:var(--navy-50);
    display:grid;place-items:center;color:var(--navy-800);margin-bottom:18px;
  }
  .scard h3{font-size:18px;margin-bottom:8px}
  .scard p{color:var(--ink-2);font-size:14px}
  .scard .tag{
    position:absolute;top:18px;right:18px;font-family:'JetBrains Mono',monospace;
    font-size:11px;color:var(--ink-3);letter-spacing:.05em;
  }
  .scard ul{margin:14px 0 0;padding:0;list-style:none;font-size:13px;color:var(--ink-2)}
  .scard ul li{padding:4px 0;display:flex;gap:8px;align-items:center}
  .scard ul li::before{content:"";width:14px;height:2px;background:var(--navy-800);display:inline-block}

  /* Process */
  .process{background:var(--navy-900);color:#fff}
  .process .sec-head h2{color:#fff}
  .process .sec-head .eyebrow{color:#92a3bc}
  .process .sec-head p{color:#b9c5d9}
  .steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:rgba(255,255,255,.08);border-radius:14px;overflow:hidden}
  .step{background:var(--navy-900);padding:28px 26px;position:relative}
  .step .n{
    font-family:'Archivo';font-weight:800;font-size:48px;color:var(--accent);
    line-height:1;letter-spacing:-0.02em;
  }
  .step h3{font-size:18px;color:#fff;margin:14px 0 8px}
  .step p{color:#b9c5d9;font-size:14px}
  .step .time{
    position:absolute;top:26px;right:22px;font-family:'JetBrains Mono',monospace;
    font-size:11px;color:#92a3bc;letter-spacing:.05em;
  }

  /* Brands */
  .brands{background:var(--bg-2)}
  .brandsgrid{
    display:grid;grid-template-columns:repeat(6,1fr);gap:12px;
  }
  .brand{
    background:#fff;border:1px solid var(--line);border-radius:10px;padding:20px 12px;
    display:flex;align-items:center;justify-content:center;min-height:84px;
    font-family:'Archivo';font-weight:700;font-size:17px;color:var(--ink-2);
    letter-spacing:-0.01em;transition:all .15s;
  }
  .brand:hover{border-color:var(--navy-700);color:var(--navy-900)}
  .brands .foot{margin-top:20px;color:var(--ink-3);font-size:14px;text-align:center}

  /* Coverage */
  .coverage{background:#fff}
  .cov-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
  .cov-map{
    aspect-ratio: 5/4;border:1px solid var(--line);border-radius:14px;overflow:hidden;
    background:var(--bg-2);position:relative;
  }
  .cov-list{columns:3;column-gap:16px;font-size:14.5px;color:var(--ink-2)}
  .cov-list li{list-style:none;padding:5px 0;break-inside:avoid;display:flex;gap:8px;align-items:center}
  .cov-list li::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--navy-800)}
  .cov-list ul{padding:0;margin:0}

  /* Coverage regions (accordion) */
  .cov-regions{display:grid;grid-template-columns:1fr;gap:10px;margin-top:24px}
  .cov-region{
    background:#fff;border:1px solid var(--line);border-radius:10px;
    overflow:hidden;transition:border-color .15s,box-shadow .15s;
  }
  .cov-region:hover{border-color:var(--navy-700)}
  .cov-region[open]{border-color:var(--navy-900);box-shadow:var(--shadow-sm)}
  .cov-region summary{
    cursor:pointer;list-style:none;padding:14px 18px;
    display:flex;align-items:center;gap:14px;
  }
  .cov-region summary::-webkit-details-marker{display:none}
  .cov-region summary .r-name{
    font-family:'Archivo',sans-serif;font-weight:700;font-size:15.5px;
    color:var(--navy-900);letter-spacing:-0.01em;flex:1 1 auto;
  }
  .cov-region summary .r-count{
    font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:600;
    color:var(--ink-3);text-transform:uppercase;letter-spacing:.06em;
    background:var(--bg-2);padding:4px 9px;border-radius:999px;
  }
  .cov-region summary .r-chev{
    width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;
    font-size:18px;font-weight:400;color:var(--ink-3);
    transition:transform .15s;line-height:1;
  }
  .cov-region[open] summary .r-chev{transform:rotate(45deg);color:var(--accent)}
  .cov-region .r-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:2px 18px;
    padding:8px 18px 18px;border-top:1px solid var(--bg-2);
  }
  .cov-region .r-grid a{
    color:var(--ink);text-decoration:none;font-size:13.5px;font-weight:500;
    padding:6px 0;border-bottom:1px dotted transparent;
  }
  .cov-region .r-grid a:hover{color:var(--accent);border-bottom-color:rgba(216,31,38,.3)}
  .cov-note{
    margin-top:18px;font-size:13px;color:var(--ink-3);font-style:italic;
  }

  /* Reviews */
  .reviews{background:var(--bg-2)}
  .revgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
  .rcard{background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px}
  .rcard .stars{color:#f5a524;margin-bottom:10px;font-size:16px;letter-spacing:2px}
  .rcard .quote{color:var(--ink);font-size:15.5px;line-height:1.55;margin-bottom:16px}
  .rcard .who{display:flex;gap:12px;align-items:center;border-top:1px solid var(--line);padding-top:14px}
  .rcard .avatar{width:36px;height:36px;border-radius:50%;background:var(--navy-50);color:var(--navy-800);display:grid;place-items:center;font-family:'Archivo';font-weight:700;font-size:14px}
  .rcard .who b{font-size:14px;display:block}
  .rcard .who span{font-size:12.5px;color:var(--ink-3)}

  /* FAQ */
  .faq{background:#fff}
  .faq-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:56px;align-items:start}
  .faq details{
    border-bottom:1px solid var(--line);padding:20px 0;
  }
  .faq details[open] summary::after{transform:rotate(45deg)}
  .faq summary{
    cursor:pointer;list-style:none;display:flex;justify-content:space-between;
    align-items:center;gap:16px;font-family:'Archivo';font-weight:700;font-size:17px;
  }
  .faq summary::-webkit-details-marker{display:none}
  .faq summary::after{
    content:"+";width:28px;height:28px;border:1px solid var(--line-2);border-radius:50%;
    display:grid;place-items:center;color:var(--ink-2);font-weight:400;font-size:18px;
    transition:transform .2s;flex:0 0 auto;
  }
  .faq details p{color:var(--ink-2);font-size:15px;margin-top:12px;max-width:640px}

  /* Final CTA */
  .finalcta{background:var(--navy-900);color:#fff;padding:72px 0}
  .finalcta .inner{display:flex;justify-content:space-between;align-items:center;gap:32px;flex-wrap:wrap}
  .finalcta h2{color:#fff;font-size:clamp(28px,3.5vw,40px);max-width:680px}
  .finalcta .r{display:flex;gap:12px;flex-wrap:wrap}
  .finalcta .callbig{
    display:flex;align-items:center;gap:14px;background:var(--accent);padding:16px 24px;
    border-radius:12px;text-decoration:none;color:#fff;box-shadow:var(--shadow-md);
  }
  .finalcta .callbig .lbl{display:block;font-size:12.5px;color:rgba(255,255,255,.8);letter-spacing:.05em;text-transform:uppercase;font-family:'JetBrains Mono',monospace}
  .finalcta .callbig .num{display:block;font-family:'Archivo';font-weight:800;font-size:26px;line-height:1;margin-top:2px;white-space:nowrap}

  /* Footer */
  footer{background:#07152a;color:#9db0c9;padding:48px 0 28px;font-size:14px}
  footer .cols{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:32px;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.08)}
  footer h4{color:#fff;font-size:13px;font-family:'JetBrains Mono',monospace;text-transform:uppercase;letter-spacing:.08em;margin-bottom:14px}
  footer a{color:#9db0c9;text-decoration:none;display:block;padding:4px 0}
  footer a:hover{color:#fff}
  footer .legal{display:flex;justify-content:space-between;padding-top:24px;color:#6b7d96;flex-wrap:wrap;gap:12px;font-size:12.5px}

  

  @media (max-width: 960px){
    .sgrid{grid-template-columns:repeat(2,1fr)}
    .steps{grid-template-columns:1fr 1fr}
    .brandsgrid{grid-template-columns:repeat(3,1fr)}
    .revgrid{grid-template-columns:1fr}
    .trustrow .wrap{grid-template-columns:1fr 1fr}
    .trustrow .cell{border-right:0;border-bottom:1px solid var(--line)}
    .cov-list{columns:2}
    .cov-region .r-grid{grid-template-columns:repeat(2,1fr)}
    .nav{display:none}
    .header .wrap{height:64px}
  }

  /* ============================================
     Mobile responsive (phones / small tablets)
     ============================================ */
  html,body{overflow-x:hidden;max-width:100%}
  img,svg,video{max-width:100%;height:auto}

  @media (max-width: 720px){
    /* Global typography + spacing */
    body{font-size:15.5px}
    .wrap{padding:0 16px}
    section{padding:56px 0}
    section.compact{padding:44px 0}
    .sec-head{margin-bottom:32px}
    .sec-head h2{font-size:28px}
    .sec-head p{font-size:15.5px}

    /* Top strip */
    .topstrip{font-size:12px}
    .topstrip .wrap{height:auto;padding:8px 16px;gap:10px;flex-wrap:wrap;justify-content:center}
    .topstrip .left,.topstrip .right{gap:12px;font-size:12px;flex-wrap:wrap;justify-content:center}

    /* Header: hide nav + secondary buttons, keep phone button prominent */
    .header .wrap{height:64px;gap:10px;padding:0 14px}
    .nav{display:none}
    .logo{min-width:0;flex:0 1 auto;gap:8px;overflow:hidden}
    .logo .name{font-size:14px;white-space:nowrap;letter-spacing:-0.015em}
    .logo .mark{width:30px;height:30px;flex:0 0 auto}
    .header .cta{gap:8px;flex:0 0 auto;margin-left:auto}
    .header .cta .btn,.header .cta a.btn-dark,.header .cta a:not(.phonebtn){display:none}
    .phonebtn{padding:9px 12px;gap:6px;flex:0 0 auto}
    .phonebtn svg{width:15px;height:15px}
    .phonebtn .lbl{display:none}
    .phonebtn .num{font-size:14.5px}

    /* Hero A: split */
    .quotecard{padding:22px}

    /* Hero B: fullbleed */

    /* Hero C: price-forward */
    .pricebox{padding:20px}

    /* Hero D: banner (the visible/default hero) */
    .hero-banner .banner{height:auto;min-height:260px;padding:36px 0}
    .hero-banner .banner .inner{grid-template-columns:1fr;gap:24px;height:auto;padding:0 16px}
    .hero-banner .banner h1{font-size:clamp(30px,7vw,40px)}
    .hero-banner .kicker{font-size:11px;padding:5px 10px;margin-bottom:14px}
    .hero-banner .banner .ctas{gap:8px}
    .hero-banner .banner .ctas .btn{flex:1 1 auto;padding:13px 16px;min-width:0}
    .hero-banner .tvwrap{display:none}
    .hero-banner .slash{display:none}
    .hero-banner .ticker{height:48px}
    .hero-banner .ticker .tag{padding:0 14px;font-size:11px}
    .hero-banner .ticker .track{font-size:14px;gap:28px}
    .hero-banner .below{grid-template-columns:1fr;gap:28px;padding:36px 0 56px}
    .hero-banner .below h2{font-size:22px}
    .hero-banner .below .lede{font-size:15.5px}

    /* Trust row */
    .trustrow .wrap{grid-template-columns:1fr 1fr}
    .trustrow .cell{padding:16px 12px;gap:10px;border-right:1px solid var(--line);border-bottom:1px solid var(--line)}
    .trustrow .cell:nth-child(2n){border-right:0}
    .trustrow svg{width:26px;height:26px}
    .trustrow b{font-size:13px}
    .trustrow span{font-size:12px}

    /* Services */
    .sgrid{grid-template-columns:1fr;gap:12px}
    .scard{padding:20px}

    /* Process */
    .steps{grid-template-columns:1fr;gap:2px}
    .step{padding:22px 20px}
    .step .n{font-size:36px}
    .step .time{top:22px;right:18px;font-size:10px}

    /* Brands */
    .brandsgrid{grid-template-columns:repeat(3,1fr);gap:10px}
    .brand{padding:16px 8px;min-height:68px;font-size:14px}

    /* Coverage */
    .cov-grid{grid-template-columns:1fr;gap:32px}
    .cov-list{columns:2;column-gap:12px;font-size:14px}
    .cov-region .r-grid{grid-template-columns:repeat(2,1fr);gap:0 14px}
    .cov-region summary{padding:13px 14px}
    .cov-region summary .r-name{font-size:14.5px}
    /* Make the map a near-square on mobile so the radius reads bigger and labels are legible. */
    .cov-map{aspect-ratio:1/1;max-height:440px}
    .cov-map svg text{font-weight:600}

    /* Reviews */
    .revgrid{grid-template-columns:1fr;gap:14px}
    .rcard{padding:20px}

    /* FAQ */
    .faq-grid{grid-template-columns:1fr;gap:28px}
    .faq summary{font-size:15.5px;gap:12px}
    .faq summary::after{width:26px;height:26px}
    .faq details p{font-size:14.5px}

    /* Final CTA — the original is flex, needs column direction */
    .finalcta{padding:52px 0}
    .finalcta .inner{flex-direction:column;align-items:stretch;gap:24px}
    .finalcta h2{font-size:26px}
    .finalcta .r{width:100%;flex-direction:column;gap:10px}
    .finalcta .r .btn{width:100%}
    .finalcta .callbig{width:100%;justify-content:center;padding:14px 20px}

    /* Footer */
    footer{padding:36px 0 24px}
    footer .cols{grid-template-columns:1fr;gap:22px;padding-bottom:24px}
    footer h4{margin-bottom:8px}
    footer .legal{flex-direction:column;gap:6px;text-align:left}

    /* Tap-target minimums for forms and buttons */
    .btn{min-height:44px}
    .quotecard .submit{min-height:48px;padding:14px}
    .field input,.field select,.field textarea{font-size:16px;min-height:44px}
  }

  @media (max-width: 420px){
    .wrap{padding:0 14px}
    section{padding:44px 0}
    .sec-head h2{font-size:24px}
    .sec-head{margin-bottom:24px}

    .hero-banner .banner h1,

    /* Stack hero CTAs full-width */

    /* Stats stack to 1 col on very narrow */

    /* Two-column form row → single column */
    .row2{grid-template-columns:1fr}

    /* Brands tighter */
    .brandsgrid{grid-template-columns:repeat(2,1fr)}
    .brand{min-height:60px;font-size:13.5px}

    /* Coverage list → single column */
    .cov-list{columns:1}

    /* Price hero big number */

    /* Final CTA phone number */
    .finalcta h2{font-size:22px}
    .finalcta .callbig .num{font-size:22px}
    .finalcta .callbig .lbl{font-size:11px}

    /* Topstrip: hide right-side secondary info on tiny screens */
    .topstrip .right{display:none}

    /* Tighter header */
    .header .wrap{height:60px;gap:8px;padding:0 12px}
    .phonebtn{padding:8px 10px;gap:5px}
    .phonebtn svg{width:14px;height:14px}
    .phonebtn .num{font-size:13.5px}
    .logo{gap:6px}
    .logo .mark{width:28px;height:28px}
    .logo .name{font-size:13px;letter-spacing:-0.02em}
  }

/* ---------- Sub-page styles (service / brand / area pages) ---------- */
.subhero{
  background:linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom:1px solid var(--line);
  padding:56px 0 48px;
}
.subhero .kicker{
  display:inline-flex;align-items:center;gap:10px;
  color:var(--navy-900);font-family:'JetBrains Mono',monospace;
  font-size:12px;letter-spacing:.08em;text-transform:uppercase;font-weight:600;
  background:#fff;border:1px solid var(--line);border-radius:999px;
  padding:6px 14px;width:fit-content;margin-bottom:14px;
  box-shadow:0 1px 2px rgba(11,29,54,.04);
}
.subhero .kicker .blink{
  width:7px;height:7px;background:#22c55e;border-radius:50%;
  box-shadow:0 0 0 3px rgba(34,197,94,.18);
  animation:blink 1.2s infinite;
}
.subhero .crumbs{
  font-family:'JetBrains Mono',monospace;font-size:12px;letter-spacing:.05em;
  color:var(--ink-3);text-transform:uppercase;margin-bottom:18px;display:flex;gap:8px;flex-wrap:wrap;
}
.subhero .crumbs a{color:var(--ink-3);text-decoration:none}
.subhero .crumbs a:hover{color:var(--ink)}
.subhero .crumbs .sep{color:var(--line-2)}
.subhero h1{font-size:clamp(34px,4.5vw,52px);max-width:820px}
.subhero h1 em{font-style:normal;color:var(--accent);font-weight:800}
.subhero .lede{color:var(--ink-2);font-size:18px;margin-top:18px;max-width:680px}
.subhero .ctas{display:flex;gap:12px;margin-top:24px;flex-wrap:wrap}
.subhero .ctameta{
  margin:14px 0 0;
  font-size:13px;line-height:1.4;
  color:var(--ink-3);
}
.subhero .zipline{
  font-family:'JetBrains Mono',monospace;
  font-size:12.5px;font-weight:500;letter-spacing:.04em;
  color:var(--ink-3);text-transform:uppercase;
  margin:14px 0 0;
}
.subhero .zipline span{
  color:var(--ink);font-weight:600;
}

.article{background:#fff;padding:64px 0 72px}
.article .body{display:grid;grid-template-columns:1.4fr .9fr;gap:48px;align-items:start;max-width:1080px;margin:0 auto}
.article .body.full{display:block;max-width:1180px;margin:0 auto}
.article .body.full .prose{max-width:none}
.article .body.full .prose .svcmini{grid-template-columns:repeat(2,1fr)}
.article .body.full .prose .pricegrid{grid-template-columns:repeat(3,1fr)}
.article .body.full .prose .related .grid{grid-template-columns:repeat(3,1fr)}
.article .prose{font-size:16.5px;line-height:1.65;color:var(--ink)}
.article .prose h2{font-size:26px;margin:36px 0 12px;letter-spacing:-0.015em}
.article .prose h2:first-child{margin-top:0}
.article .prose h3{font-size:19px;margin:28px 0 10px}
.article .prose p{margin:0 0 14px;color:var(--ink-2)}
.article .prose ul,.article .prose ol{margin:0 0 18px;padding-left:22px;color:var(--ink-2)}
.article .prose ul li,.article .prose ol li{margin:6px 0}
.article .prose strong{color:var(--ink);font-weight:700}
.article .prose a{color:var(--accent);font-weight:600;text-decoration:none;border-bottom:1px solid rgba(216,31,38,.25)}
.article .prose a:hover{border-bottom-color:var(--accent)}
.article .prose blockquote{margin:18px 0;padding:14px 18px;background:var(--bg-2);border-left:3px solid var(--accent);color:var(--ink-2);font-size:15.5px;border-radius:0 8px 8px 0}
.article .prose .priceline{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px dashed var(--line);color:var(--ink-2)}
.article .prose .priceline:last-child{border-bottom:0}
.article .prose .priceline b{font-family:'Archivo';font-weight:700;color:var(--ink)}

.article .side{position:sticky;top:96px}
.article .sidecard{background:var(--navy-900);color:#fff;border-radius:14px;padding:24px;box-shadow:var(--shadow-lg)}
.article .sidecard h3{color:#fff;font-size:18px;margin-bottom:8px}
.article .sidecard p{color:#c6d0e0;font-size:14.5px;margin:0 0 16px}
.article .sidecard .callbtn{display:flex;align-items:center;gap:10px;background:var(--accent);color:#fff;text-decoration:none;padding:14px 16px;border-radius:10px;font-weight:700;justify-content:center}
.article .sidecard .callbtn:hover{background:var(--accent-press)}
.article .sidecard .meta{display:flex;flex-direction:column;gap:6px;margin-top:16px;color:#c6d0e0;font-size:13px}
.article .sidecard .meta b{color:#fff;font-family:'Archivo';font-weight:700}

.article .related{margin-top:48px;padding-top:36px;border-top:1px solid var(--line)}
.article .related h3{font-size:16px;font-family:'JetBrains Mono',monospace;text-transform:uppercase;letter-spacing:.08em;color:var(--ink-3);font-weight:500;margin-bottom:16px}
.article .related .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.article .related .pill{background:var(--bg-2);border:1px solid var(--line);border-radius:10px;padding:14px 16px;text-decoration:none;color:var(--ink);font-weight:600;font-size:14.5px;transition:border-color .15s,background .15s}
.article .related .pill:hover{border-color:var(--navy-700);background:#fff}

@media (max-width:960px){
  .article .body{grid-template-columns:1fr;gap:32px}
  .article .side{position:static}
  .article .related .grid{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .subhero{padding:40px 0 36px}
  .subhero .crumbs{font-size:11px;margin-bottom:12px}
  .subhero h1{font-size:30px}
  .subhero .lede{font-size:16px}
  .article{padding:44px 0 56px}
  .article .prose h2{font-size:22px}
  .article .prose h3{font-size:17px}
  .article .related .grid{grid-template-columns:1fr}
}

/* ---------- Trust cards (replaces .trustrow visual) ---------- */
.trustcards{background:#fff;border-bottom:1px solid var(--line);padding:24px 0 56px}
.trustcards .grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;align-items:stretch}
.trustcards .card{
  text-align:center;padding:0 28px;display:flex;flex-direction:column;align-items:center;
  border-right:1px solid var(--line);
}
.trustcards .card:last-child{border-right:0}
.trustcards .ico{
  width:72px;height:72px;border:2px solid var(--navy-800);border-radius:50%;
  display:grid;place-items:center;color:var(--navy-800);margin-bottom:24px;
  transition:border-color .15s, color .15s;
}
.trustcards .card:hover .ico{border-color:var(--accent);color:var(--accent)}
.trustcards .ico svg{width:30px;height:30px}
.trustcards h3{
  font-family:'Archivo',sans-serif;font-weight:800;font-size:14px;
  text-transform:uppercase;letter-spacing:0.08em;color:var(--navy-900);
  margin-bottom:14px;line-height:1.2;
}
.trustcards p{font-size:14.5px;color:var(--ink-2);line-height:1.55;margin:0;max-width:240px}

@media (max-width: 720px){
  .trustcards{padding:40px 0}
  .trustcards .grid{grid-template-columns:1fr 1fr;gap:36px 0}
  .trustcards .card{padding:0 16px;border-right:0}
  .trustcards .card:nth-child(odd){border-right:1px solid var(--line)}
  .trustcards .ico{width:60px;height:60px;margin-bottom:16px}
  .trustcards .ico svg{width:26px;height:26px}
  .trustcards h3{font-size:13px}
  .trustcards p{font-size:13.5px}
}

/* ---------- Why repair your TV? section ---------- */
.whyrepair{background:var(--bg-2);padding:88px 0}
.whyrepair .sec-head{text-align:center;max-width:760px;margin:0 auto 48px}
.whyrepair .sec-head .eyebrow{justify-content:center}
.whyrepair .sec-head h2{font-size:clamp(28px,3.5vw,42px)}
.whyrepair .sec-head p{color:var(--ink-2);font-size:17px;margin-top:14px}

.whygrid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.whycard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:32px 28px;
  position:relative;
  transition:border-color .15s, transform .15s, box-shadow .15s;
}
.whycard:hover{
  border-color:var(--navy-700);
  box-shadow:var(--shadow-md);
  transform:translateY(-2px);
}
.whycard .ico{
  width:52px;height:52px;
  background:var(--accent);
  color:#fff;
  border-radius:50%;
  display:grid;place-items:center;
  margin-bottom:22px;
  box-shadow:0 6px 16px rgba(216,31,38,.25);
}
.whycard .ico svg{width:24px;height:24px}
.whycard h3{font-size:20px;margin-bottom:12px;line-height:1.25;color:var(--navy-900)}
.whycard p{color:var(--ink-2);font-size:15px;line-height:1.6}
.whycard .pricing{
  margin-top:14px;padding-top:14px;border-top:1px dashed var(--line);
  font-family:'JetBrains Mono',monospace;font-size:13px;color:var(--ink-3);
  display:flex;justify-content:space-between;align-items:center;
}
.whycard .pricing b{color:var(--navy-900);font-family:'Archivo';font-weight:700}

@media (max-width:960px){
  .whygrid{grid-template-columns:1fr;gap:12px}
}
@media (max-width:720px){
  .whyrepair{padding:56px 0}
  .whyrepair .sec-head{margin-bottom:32px}
  .whyrepair .sec-head h2{font-size:26px}
  .whycard{padding:24px 22px}
  .whycard h3{font-size:18px}
  .whycard p{font-size:14.5px}
  .whycard .ico{width:46px;height:46px;margin-bottom:16px}
  .whycard .ico svg{width:22px;height:22px}
}

/* ---------- "Most common fixes" callout in the hero .below left column ---------- */
.commonfixes{
  margin-top:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:22px 24px;
  box-shadow:var(--shadow-sm);
}
.commonfixes h3{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-3);
  font-weight:500;
  margin-bottom:14px;
}
.commonfixes ul{list-style:none;padding:0;margin:0}
.commonfixes li,
.commonfixes li a{
  display:flex;justify-content:space-between;align-items:center;
  padding:11px 0;border-bottom:1px dashed var(--line);
  text-decoration:none;color:var(--ink);
  transition:color .15s;
}
.commonfixes li:last-child,
.commonfixes li:last-child a{border-bottom:0}
.commonfixes li a:hover span{color:var(--accent)}
.commonfixes li span{color:var(--ink-2);font-size:14.5px}
.commonfixes li b{font-family:'Archivo';font-weight:700;font-size:14.5px;color:var(--ink);letter-spacing:-0.01em}
.commonfixes .fine{margin-top:14px;font-size:12.5px;color:var(--ink-3);text-align:left;padding-top:0}

@media (max-width:720px){
  .commonfixes{padding:18px 18px;margin-top:20px}
  .commonfixes li,
  .commonfixes li a{padding:9px 0}
  .commonfixes li span,
  .commonfixes li b{font-size:14px}
}

/* ---------- Service mini-grid for area pages (compact 4-card "What we fix" inside the prose article) ---------- */
/* Higher-specificity selectors to override .article .prose styles for nested links/text. */
.article .prose .svcmini{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:8px 0 28px}
.article .prose .svcmini .item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px 20px;
  display:flex;align-items:flex-start;gap:14px;
  text-decoration:none !important;
  color:var(--ink) !important;
  border-bottom:1px solid var(--line) !important;
  font-weight:400 !important;
  transition:border-color .15s, transform .15s, box-shadow .15s;
}
.article .prose .svcmini .item:hover{
  border-color:var(--navy-700) !important;
  box-shadow:var(--shadow-sm);
  transform:translateY(-1px);
}
.article .prose .svcmini .ico{
  width:38px;height:38px;
  border-radius:9px;
  background:var(--navy-50);
  color:var(--navy-800);
  display:grid;place-items:center;
  flex:0 0 auto;
}
.article .prose .svcmini .ico svg{width:20px;height:20px}
.article .prose .svcmini h4{
  font-family:'Archivo',sans-serif;
  font-weight:700;
  font-size:15.5px;
  margin:2px 0 4px;
  color:var(--ink);
  line-height:1.25;
}
.article .prose .svcmini p{
  font-size:13.5px;color:var(--ink-2);line-height:1.5;margin:0;
}
.article .prose .svcmini .item .arrow{
  margin-left:auto;color:var(--accent);font-weight:700;font-size:13px;
  align-self:center;flex:0 0 auto;
}
@media (max-width:720px){
  .article .prose .svcmini{grid-template-columns:1fr;gap:10px;margin:6px 0 22px}
  .article .prose .svcmini .item{padding:14px 16px}
}

/* ---------- "Is it worth fixing?" callout (area pages) ---------- */
.worthcheck{background:var(--bg-2);padding:48px 0}
.worthcheck .card{
  background:#fff;
  border:1px solid var(--line);
  border-left:4px solid var(--accent);
  border-radius:14px;
  padding:32px 36px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  box-shadow:var(--shadow-sm);
  max-width:980px;
  margin:0 auto;
}
.worthcheck h2{font-size:clamp(22px,2.4vw,28px);margin-bottom:8px;color:var(--navy-900)}
.worthcheck p{color:var(--ink-2);font-size:15.5px;line-height:1.55;margin:0;max-width:580px}
.worthcheck .btn{white-space:nowrap}
@media (max-width:720px){
  .worthcheck{padding:32px 0}
  .worthcheck .card{
    grid-template-columns:1fr;gap:18px;padding:24px;
    border-left-width:3px;
  }
  .worthcheck h2{font-size:20px}
  .worthcheck p{font-size:14.5px}
  .worthcheck .btn{width:100%}
}

/* ---------- Sticky mobile Call Now bar (mobile only) ---------- */
.stickycall{display:none}
@media (max-width:720px){
  .stickycall{
    display:flex;align-items:center;justify-content:center;gap:8px;
    position:fixed;bottom:0;left:0;right:0;z-index:50;
    background:var(--accent);color:#fff;
    padding:14px 16px;
    font-family:'Archivo',sans-serif;font-weight:800;font-size:16px;letter-spacing:-0.01em;
    text-decoration:none;
    box-shadow:0 -6px 18px rgba(0,0,0,.18);
  }
  .stickycall svg{width:18px;height:18px;flex:0 0 auto}
  .stickycall .small{font-family:'Inter',sans-serif;font-weight:500;font-size:12.5px;opacity:.9;margin-left:4px}
  .stickycall:active{background:var(--accent-press)}
  /* Bottom padding on body so the sticky bar doesn't cover footer text on mobile */
  body{padding-bottom:62px}
}

/* ---------- Price grid (replaces .priceline rows on area pages) ---------- */
.article .prose .pricegrid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:10px 0 18px}
.article .prose .pricegrid .pcard{
  background:#fff;
  border:1px solid var(--line) !important;
  border-bottom:1px solid var(--line) !important;
  border-radius:12px;
  padding:18px 18px 16px;
  display:flex;flex-direction:column;gap:8px;align-items:flex-start;
  text-decoration:none !important;color:var(--ink) !important;
  font-weight:400 !important;
  transition:border-color .15s, transform .15s, box-shadow .15s;
}
.article .prose .pricegrid .pcard:hover{
  border-color:var(--navy-700) !important;
  box-shadow:var(--shadow-sm);
  transform:translateY(-1px);
}
.article .prose .pricegrid .pcard .ico{
  width:34px;height:34px;border-radius:8px;
  background:var(--navy-50);color:var(--navy-800);
  display:grid;place-items:center;flex:0 0 auto;
}
.article .prose .pricegrid .pcard .ico svg{width:18px;height:18px}
.article .prose .pricegrid .pcard h4{
  font-family:'Archivo';font-weight:700;font-size:14.5px;
  color:var(--ink);margin:2px 0 0;line-height:1.25;
}
.article .prose .pricegrid .pcard .price{
  font-family:'Archivo';font-weight:800;font-size:18px;
  color:var(--navy-900);letter-spacing:-0.01em;line-height:1;
  margin-top:auto;
}
.article .prose .pricegrid .pcard-cta{
  background:var(--navy-900) !important;
  color:#fff !important;
  border-color:var(--navy-900) !important;
}
.article .prose .pricegrid .pcard-cta h4{color:#fff !important}
.article .prose .pricegrid .pcard-cta .cta-text{
  font-family:'Inter';font-weight:700;font-size:14.5px;color:#fff !important;
  margin-top:auto;display:inline-flex;align-items:center;gap:6px;
}
.article .prose .pricegrid .pcard-cta .cta-text .arrow{color:var(--accent) !important;font-size:14px}
.article .prose .pricegrid .pcard-cta:hover{
  background:var(--navy-800) !important;border-color:var(--navy-800) !important;
}
@media (max-width:720px){
  .article .prose .pricegrid{grid-template-columns:1fr 1fr;gap:10px}
  .article .prose .pricegrid .pcard{padding:14px}
  .article .prose .pricegrid .pcard h4{font-size:13.5px}
  .article .prose .pricegrid .pcard .price{font-size:16px}
}

/* ---------- Brand grid inside article body (area pages) ---------- */
/* Reuses .brandsgrid / .brand from homepage, but defeats the .article .prose a underline rule */
.article .prose .brandsgrid{margin:14px 0 4px}
.article .prose .brandsgrid .brand{
  border-bottom:1px solid var(--line) !important;
  color:var(--ink) !important;
  font-weight:700 !important;
}
.article .prose .brandsgrid a.brand{
  text-decoration:none !important;
  border:1px solid var(--line) !important;
  border-bottom:1px solid var(--line) !important;
}
.article .prose .brandsgrid a.brand:hover{
  color:var(--navy-900) !important;
  border-color:var(--navy-700) !important;
  border-bottom-color:var(--navy-700) !important;
}
.article .prose p.foot.mono{margin-top:14px}
.article .prose p.foot.mono a{
  border-bottom:1px solid transparent !important;
}
.article .prose p.foot.mono a:hover{
  border-bottom-color:var(--accent) !important;
}

/* ---------- Nearby suburbs linkbar (compressed) ---------- */
.article .prose .nearbylinks{
  margin:18px 0 4px;
  padding:12px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-left:3px solid var(--navy-700);
  border-radius:6px;
  font-size:14px;line-height:1.5;
  color:var(--ink-2);
}
.article .prose .nearbylinks strong{
  font-family:'Archivo',sans-serif;font-weight:700;
  color:var(--navy-900);
  margin-right:6px;
}
.article .prose .nearbylinks a{
  color:var(--navy-800) !important;
  border-bottom:1px solid transparent !important;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}
.article .prose .nearbylinks a:hover{
  color:var(--accent) !important;
  border-bottom-color:var(--accent) !important;
}
@media (max-width:720px){
  .article .prose .nearbylinks{font-size:13.5px;padding:10px 12px}
}

/* ---------- Sub-page hero with map (area pages) ---------- */
.subhero.has-map .wrap{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:48px;
  align-items:center;
}
.subhero.has-map .subhero-text h1{max-width:none}
.subhero.has-map .subhero-text .lede{max-width:none}
.subhero-map{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  aspect-ratio:5/4;
  width:100%;
}
.subhero-map svg{width:100%;height:100%;display:block}
@media (max-width:960px){
  .subhero.has-map .wrap{grid-template-columns:1fr;gap:28px}
  .subhero-map{max-width:560px;margin:0 auto}
}
@media (max-width:720px){
  .subhero.has-map .wrap{gap:22px}
  .subhero-map{aspect-ratio:5/4;border-radius:10px}
  .subhero-map svg text{font-size:14px}
}

/* ---------- Quote section (area pages) ---------- */
.quotesec{
  background:var(--bg-2);
  padding:56px 0;
  border-bottom:1px solid var(--line);
}
.quotesec .quotegrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.quotesec .quoteintro .eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'JetBrains Mono',monospace;font-size:12px;font-weight:600;
  color:var(--ink-3);text-transform:uppercase;letter-spacing:.06em;
  margin-bottom:14px;
}
.quotesec .quoteintro .eyebrow .sq{
  width:10px;height:10px;background:var(--accent);display:inline-block;
}
.quotesec .quoteintro h2{
  font-family:'Archivo',sans-serif;font-weight:800;
  font-size:clamp(26px,3vw,36px);
  letter-spacing:-0.02em;line-height:1.1;
  color:var(--navy-900);margin:0 0 12px;
}
.quotesec .quoteintro p{
  color:var(--ink-2);font-size:16px;line-height:1.55;margin:0 0 22px;
  max-width:480px;
}
.quotesec .quoteintro .meta{
  display:flex;flex-wrap:wrap;gap:18px 28px;
  font-family:'JetBrains Mono',monospace;font-size:13px;color:var(--ink-3);
}
.quotesec .quoteintro .meta b{color:var(--ink);font-weight:600}
@media (max-width:960px){
  .quotesec .quotegrid{grid-template-columns:1fr;gap:32px}
}
@media (max-width:720px){
  .quotesec{padding:40px 0}
  .quotesec .quoteintro p{font-size:15px}
}
