/* ============================================================
   Pressure Washing Round Rock — Main Stylesheet
   Brand: Navy #0B2545 | Amber #E87A2A | Clean white
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;color:#1a2535;background:#fff;line-height:1.65}

img{max-width:100%;height:auto;display:block}
a{color:#E87A2A;text-decoration:none}
a:hover{text-decoration:underline}
ul{list-style:none}

/* ── SVG Global Safety Net ──────────────────────────────────
   Prevents inline SVGs without explicit width/height from
   rendering at the browser default 300×150px. Every icon
   SVG on this site should be ≤24px. Images use <img> tags.
   ─────────────────────────────────────────────────────────── */
svg{display:inline-block;vertical-align:middle;overflow:visible;flex-shrink:0}
svg:not([width]){width:1.25rem;height:1.25rem}
/* Named-context overrides (belt-and-suspenders) */
.phone-link svg{width:16px!important;height:16px!important}
.hero-eyebrow svg{width:14px!important;height:14px!important}
.hero svg,.hero-actions svg{width:20px!important;height:20px!important}
.trust-item svg{width:28px!important;height:28px!important}
.why-icon svg{width:28px!important;height:28px!important;fill:none!important;stroke:var(--amber)!important;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.faq-q svg{width:20px!important;height:20px!important}
.btn svg{width:18px!important;height:18px!important}
.sticky-call svg{width:18px!important;height:18px!important}
.step-card svg,.nb-card svg,.review-author svg{width:20px!important;height:20px!important}
.footer-col svg{width:16px!important;height:16px!important}
/* Image containers: show a background when Pexels CDN is slow/blocked */
.service-card-img{background-color:#e8f0f5}
.img-hero{background-color:#0b2545}

/* ── Variables ─────────────────────────────────────────────── */
:root{
  --navy:#0B2545;
  --navy-light:#132e55;
  --amber:#E87A2A;
  --amber-dark:#c96920;
  --green:#1a8a4a;
  --text:#1a2535;
  --muted:#5a6a7e;
  --border:#dde4ec;
  --bg-light:#f5f8fc;
  --white:#ffffff;
  --radius:8px;
  --radius-lg:14px;
  --shadow:0 2px 16px rgba(11,37,69,.10);
  --shadow-sm:0 1px 6px rgba(11,37,69,.07);
}

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5{font-weight:700;line-height:1.2;color:var(--navy)}
h1{font-size:clamp(1.9rem,5vw,3rem)}
h2{font-size:clamp(1.5rem,3.5vw,2.1rem)}
h3{font-size:clamp(1.1rem,2.5vw,1.35rem)}
h4{font-size:1.05rem}
p{margin-bottom:1rem;color:var(--text)}
.lead{font-size:1.15rem;color:var(--muted);line-height:1.7}

/* ── Layout ─────────────────────────────────────────────────── */
.container{max-width:1120px;margin:0 auto;padding:0 1.25rem}
.section{padding:4rem 0}
.section-sm{padding:2.5rem 0}
.section-title{text-align:center;margin-bottom:2.5rem}
.section-title p{color:var(--muted);max-width:600px;margin:.75rem auto 0}
.text-center{text-align:center}

/* ── Grid ───────────────────────────────────────────────────── */
.grid-2{display:grid;grid-template-columns:1fr;gap:1.5rem}
.grid-3{display:grid;grid-template-columns:1fr;gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
@media(min-width:640px){
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:960px){
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
  .col-2-3{grid-template-columns:2fr 1fr!important}
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.75rem;border-radius:var(--radius);font-weight:700;font-size:1rem;cursor:pointer;transition:all .2s;border:2px solid transparent;text-decoration:none;line-height:1}
.btn-primary{background:var(--amber);color:#fff;border-color:var(--amber)}
.btn-primary:hover{background:var(--amber-dark);border-color:var(--amber-dark);text-decoration:none;color:#fff}
.btn-outline{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline:hover{background:var(--navy);color:#fff;text-decoration:none}
.btn-white{background:#fff;color:var(--navy);border-color:#fff}
.btn-white:hover{background:var(--bg-light);text-decoration:none;color:var(--navy)}
.btn-lg{padding:1rem 2.25rem;font-size:1.1rem}
.btn-call{background:var(--green);border-color:var(--green);color:#fff}
.btn-call:hover{background:#146a39;border-color:#146a39;color:#fff;text-decoration:none}

/* ── Header ─────────────────────────────────────────────────── */
.site-header{background:var(--navy);position:sticky;top:0;z-index:100;box-shadow:0 2px 20px rgba(0,0,0,.25)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.85rem 1.25rem;max-width:1120px;margin:0 auto;gap:1rem}
.logo{color:#fff;font-size:1.3rem;font-weight:800;letter-spacing:-.5px;text-decoration:none;line-height:1.1}
.logo span{color:var(--amber)}
.logo:hover{text-decoration:none;color:#fff}
.logo small{display:block;font-size:.62rem;font-weight:400;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-top:1px}

.nav-menu{display:none;gap:.25rem}
.nav-menu a{color:rgba(255,255,255,.85);font-size:.9rem;font-weight:500;padding:.4rem .75rem;border-radius:6px;transition:all .18s;text-decoration:none}
.nav-menu a:hover,.nav-menu a.active{color:#fff;background:rgba(255,255,255,.12);text-decoration:none}

.header-cta{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.phone-link{color:#fff;font-weight:700;font-size:1rem;display:flex;align-items:center;gap:.4rem;text-decoration:none}
.phone-link svg{width:16px;height:16px;fill:var(--amber)}
.phone-link:hover{color:var(--amber);text-decoration:none}

.hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:rgba(255,255,255,.85);border-radius:2px;transition:all .3s}

.mobile-nav{display:none;background:var(--navy-light);padding:1rem 1.25rem;border-top:1px solid rgba(255,255,255,.1)}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;color:rgba(255,255,255,.85);padding:.65rem 0;border-bottom:1px solid rgba(255,255,255,.07);font-size:.95rem;text-decoration:none}
.mobile-nav a:last-child{border-bottom:none}
.mobile-nav a:hover{color:#fff;text-decoration:none}

@media(min-width:900px){
  .nav-menu{display:flex}
  .hamburger{display:none}
}
/* ── Legal Pages ─────────────────────────────────────────────── */
.legal-body{max-width:780px;margin:0 auto}
.legal-body h2{font-size:1.2rem;color:var(--navy);margin:2rem 0 .6rem;padding-top:1.5rem;border-top:1px solid var(--border)}
.legal-body h2:first-of-type{border-top:none;padding-top:0;margin-top:1rem}
.legal-body h3{font-size:1rem;color:var(--navy);margin:1.25rem 0 .4rem}
.legal-body p{color:#374151;line-height:1.8;margin-bottom:1rem}
.legal-body ul{color:#374151;line-height:1.8;margin-bottom:1rem;padding-left:1.5rem}
.legal-body ul li{margin-bottom:.4rem}
.legal-body a{color:var(--amber)}
@media(max-width:899px){.header-cta .phone-link,.header-cta .btn-primary{display:none!important}}

/* ── Hero ───────────────────────────────────────────────────── */
.hero{background:linear-gradient(135deg,var(--navy) 0%,#1a3a6e 100%);color:#fff;padding:4rem 0 3.5rem;position:relative;overflow:hidden}
.hero::after{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.hero-inner{position:relative;z-index:1;max-width:1120px;margin:0 auto;padding:0 1.25rem}
.hero-content{max-width:860px;text-align:center;margin:0 auto}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;background:rgba(232,122,42,.15);color:var(--amber);font-size:.82rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.3rem .85rem;border-radius:20px;margin-bottom:1.25rem;border:1px solid rgba(232,122,42,.3)}
.hero h1{color:#fff;margin-bottom:1.1rem;font-size:clamp(2rem,4vw,2.65rem)}
.hero h1 em{color:var(--amber);font-style:normal}
.hero-desc{font-size:1.1rem;color:rgba(255,255,255,.8);margin-bottom:1.75rem;max-width:640px;margin-left:auto;margin-right:auto;line-height:1.65}
.hero-actions{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center;justify-content:center}
.hero-trust{display:flex;flex-wrap:wrap;gap:1rem 1.75rem;margin-top:2rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.12);justify-content:center;background:rgba(255,255,255,.06);border-radius:12px;padding:1.25rem 1.5rem;margin-top:1.75rem}
.trust-item{display:flex;align-items:center;gap:.6rem;color:rgba(255,255,255,.95);font-size:.97rem;font-weight:600}
.trust-item svg{width:28px;height:28px;fill:var(--amber);flex-shrink:0}
/* Desktop: shrink H1 so "Pressure Washing in Round Rock, TX" fits cleanly */
@media(min-width:960px){.hero h1{font-size:2.25rem}}
@media(max-width:540px){.hero-actions{flex-direction:column;align-items:stretch}.hero-actions .btn{justify-content:center;text-align:center}}

/* ── Service Cards ───────────────────────────────────────────── */
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:box-shadow .2s,transform .2s;text-decoration:none;display:block}
.service-card:hover{box-shadow:var(--shadow);transform:translateY(-3px);text-decoration:none}
/* Icon header — replaces stock images */
.service-card-visual{height:160px;background:linear-gradient(135deg,var(--navy) 0%,#1a3a6e 100%);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.service-card-visual::before{content:'';position:absolute;bottom:-24px;right:-24px;width:110px;height:110px;background:rgba(232,122,42,.15);border-radius:50%}
.service-card-visual::after{content:'';position:absolute;top:-20px;left:-20px;width:90px;height:90px;background:rgba(255,255,255,.04);border-radius:50%}
.service-card-visual svg{width:52px;height:52px;color:rgba(255,255,255,.92);position:relative;z-index:1;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.service-card-body{padding:1.35rem}
.service-card-body h3{color:var(--navy);margin-bottom:.5rem}
.service-card-body p{color:var(--muted);font-size:.92rem;margin-bottom:1rem}
.service-card-body .link-arrow{color:var(--amber);font-weight:700;font-size:.9rem;display:flex;align-items:center;gap:.3rem}

/* ── Feature Strips ──────────────────────────────────────────── */
.why-strip{background:var(--bg-light);border-radius:var(--radius-lg);padding:2rem}
.why-item{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.5rem}
.why-item:last-child{margin-bottom:0}
.why-icon{width:56px;height:56px;background:rgba(232,122,42,.1);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.why-icon svg{width:28px;height:28px;fill:none;stroke:var(--amber);stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.why-item h4{margin-bottom:.25rem;color:var(--navy)}
.why-item p{color:var(--muted);font-size:.9rem;margin-bottom:0}

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar{background:var(--navy);color:#fff;padding:2.5rem 0}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;text-align:center}
.stat-num{font-size:2.25rem;font-weight:800;color:var(--amber);line-height:1}
.stat-label{font-size:.85rem;color:rgba(255,255,255,.7);margin-top:.25rem}
@media(min-width:640px){.stats-grid{grid-template-columns:repeat(4,1fr)}}

/* ── Process Steps ───────────────────────────────────────────── */
.step-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.step-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.step-grid{grid-template-columns:repeat(4,1fr)}}
.step-card{text-align:center;padding:1.75rem 1.25rem}
.step-num{width:52px;height:52px;background:var(--navy);color:#fff;border-radius:50%;font-size:1.3rem;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.step-card h4{color:var(--navy);margin-bottom:.5rem}
.step-card p{color:var(--muted);font-size:.9rem;margin-bottom:0}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item{border-bottom:1px solid var(--border);padding:1.25rem 0}
.faq-item:last-child{border-bottom:none}
.faq-q{font-weight:700;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;font-size:1rem}
.faq-q svg{width:20px;height:20px;fill:var(--amber);flex-shrink:0;transition:transform .25s}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.faq-a{color:var(--muted);margin-top:.75rem;font-size:.95rem;display:none;line-height:1.7}
.faq-item.open .faq-a{display:block}

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band{background:var(--amber);color:#fff;padding:3rem 0;text-align:center}
.cta-band h2{color:#fff;margin-bottom:.75rem}
.cta-band p{color:rgba(255,255,255,.9);max-width:500px;margin:0 auto 1.75rem}
.cta-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem}

/* ── Review Cards ────────────────────────────────────────────── */
.review-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem;box-shadow:var(--shadow-sm)}
.review-stars{color:#f5a623;font-size:1rem;letter-spacing:2px;margin-bottom:.75rem}
.review-text{color:var(--text);font-size:.95rem;line-height:1.7;margin-bottom:1rem;font-style:italic}
.review-author{display:flex;align-items:center;gap:.75rem}
.review-avatar{width:42px;height:42px;border-radius:50%;background:var(--navy);color:#fff;font-weight:700;font-size:.9rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.review-name{font-weight:700;font-size:.9rem;color:var(--navy)}
.review-location{font-size:.8rem;color:var(--muted)}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero{background:var(--navy);color:#fff;padding:2.75rem 0 2.25rem}
.page-hero h1{color:#fff;font-size:clamp(1.6rem,4vw,2.4rem);margin-bottom:.6rem}
.page-hero p{color:rgba(255,255,255,.8);margin-bottom:0;max-width:600px}
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.82rem;margin-bottom.85rem;color:rgba(255,255,255,.55);flex-wrap:wrap;margin-bottom:.75rem}
.breadcrumb a{color:rgba(255,255,255,.55);text-decoration:none}
.breadcrumb a:hover{color:rgba(255,255,255,.85);text-decoration:none}
.breadcrumb span{color:rgba(255,255,255,.35)}

/* ── Content Sections ────────────────────────────────────────── */
.content-block{max-width:820px}
.content-block h2{margin-bottom:1rem}
.content-block h3{margin-bottom:.5rem;margin-top:1.5rem}
.content-block ul{padding-left:1.25rem;list-style:disc}
.content-block ul li{margin-bottom:.5rem;color:var(--text)}
.pricing-note{background:var(--bg-light);border-left:4px solid var(--amber);padding:1.25rem 1.5rem;border-radius:0 var(--radius) var(--radius) 0;margin:1.5rem 0}
.pricing-note p{margin-bottom:0;color:var(--text)}

/* ── Area Map / Neighborhood Chips ───────────────────────────── */
.area-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:.75rem}
.area-chip{background:var(--bg-light);border:1px solid var(--border);border-radius:20px;padding:.35rem .9rem;font-size:.85rem;color:var(--navy);font-weight:500;text-decoration:none;transition:all .15s}
.area-chip:hover{background:var(--navy);color:#fff;border-color:var(--navy);text-decoration:none}

/* ── Contact Form ────────────────────────────────────────────── */
.contact-form{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-sm)}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:.875rem;font-weight:600;color:var(--navy);margin-bottom:.4rem}
.form-control{width:100%;padding:.7rem .95rem;border:1.5px solid var(--border);border-radius:var(--radius);font-size:.95rem;color:var(--text);background:#fff;transition:border-color .2s;font-family:inherit;appearance:none}
.form-control:focus{outline:none;border-color:var(--amber);box-shadow:0 0 0 3px rgba(232,122,42,.12)}
textarea.form-control{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:540px){.form-row{grid-template-columns:1fr 1fr}}
.form-success{background:#ecfdf5;border:1.5px solid #6ee7b7;border-radius:var(--radius);padding:1.25rem;color:#065f46;display:none;text-align:center}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer{background:var(--navy);color:rgba(255,255,255,.7);padding:3rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:2.5rem}
@media(min-width:640px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-brand .logo{margin-bottom:.85rem;display:inline-block}
.footer-brand p{font-size:.88rem;line-height:1.65;max-width:280px}
.footer-col h5{color:#fff;font-size:.9rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom.85rem;margin-bottom:.85rem}
.footer-col ul li{margin-bottom:.5rem}
.footer-col ul li a{color:rgba(255,255,255,.6);font-size:.875rem;text-decoration:none;transition:color .2s}
.footer-col ul li a:hover{color:#fff;text-decoration:none}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;font-size:.8rem}
.footer-bottom p{margin-bottom:0;color:rgba(255,255,255,.4)}

/* ── Utility ─────────────────────────────────────────────────── */
.badge{display:inline-block;background:rgba(232,122,42,.12);color:var(--amber);font-size:.78rem;font-weight:700;padding:.25rem .7rem;border-radius:20px;letter-spacing:.05em;text-transform:uppercase}
.badge-green{background:rgba(26,138,74,.1);color:var(--green)}
.divider{height:1px;background:var(--border);margin:2rem 0}
.updated-tag{font-size:.8rem;color:var(--muted);margin-top:.5rem}
.last-updated{font-size:.8rem;color:var(--muted);font-style:italic;margin-top:.5rem}
.img-hero{width:100%;height:420px;object-fit:cover;border-radius:var(--radius-lg)}
@media(max-width:640px){.img-hero{height:240px}}

/* Fix 4 — full-width sticky call bar, shown via JS scroll trigger */
.sticky-call{display:none;position:fixed;bottom:0;left:0;right:0;z-index:200}
.sticky-call a{background:var(--green);color:#fff;padding:1rem 1.5rem;border-radius:0;font-weight:700;font-size:1rem;display:flex;align-items:center;justify-content:center;gap:.55rem;box-shadow:0 -3px 20px rgba(0,0,0,.15);text-decoration:none;width:100%}
.sticky-call a:hover{background:#146a39;text-decoration:none;color:#fff}
@media(max-width:900px){.sticky-call.sc-visible{display:block}}
@media(max-width:900px){body{padding-bottom:56px}}

/* ── Neighborhoods ───────────────────────────────────────────── */
.nb-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem;transition:box-shadow .2s;display:block;text-decoration:none}
.nb-card:hover{box-shadow:var(--shadow);text-decoration:none}
.nb-card h3{color:var(--navy);margin-bottom:.4rem;font-size:1.1rem}
.nb-card p{color:var(--muted);font-size:.88rem;margin-bottom:.75rem}
.nb-card .link-arrow{color:var(--amber);font-size:.85rem;font-weight:700;display:flex;align-items:center;gap:.3rem}

@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}

/* ── CTA Sidebar ─────────────────────────────────────────── */
.cta-sb-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow-sm)}
.cta-sb-badge{display:inline-flex;align-items:center;background:rgba(232,122,42,.1);color:var(--amber);font-size:.75rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.25rem .75rem;border-radius:20px;margin-bottom:1rem;border:1px solid rgba(232,122,42,.25)}
.cta-sb-title{font-size:1.2rem;color:var(--navy);margin-bottom:.4rem}
.cta-sb-sub{color:var(--muted);font-size:.875rem;margin-bottom:1.25rem;line-height:1.55}
.cta-sb-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;background:var(--amber);color:#fff;border-radius:var(--radius);padding:.85rem 1.25rem;font-weight:700;font-size:.95rem;text-decoration:none;transition:background .15s;width:100%}
.cta-sb-btn:hover{background:var(--amber-dark);text-decoration:none;color:#fff}
.cta-sb-btn svg{flex-shrink:0}
.cta-sb-divider{height:1px;background:var(--border);margin:1.25rem 0}
.cta-sb-phone{display:flex;align-items:center;gap:.85rem;text-decoration:none;transition:opacity .15s}
.cta-sb-phone:hover{opacity:.8;text-decoration:none}
.cta-sb-phone-icon{width:40px;height:40px;background:rgba(26,138,74,.1);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--green)}
.cta-sb-phone-num{font-size:1.1rem;font-weight:800;color:var(--navy);line-height:1.2}
.cta-sb-phone-hrs{font-size:.78rem;color:var(--muted);margin-top:.1rem}
.cta-sb-trust{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.5rem}
.cta-sb-trust li{display:flex;align-items:flex-start;gap:.5rem;font-size:.83rem;color:var(--muted);line-height:1.4}
.cta-sb-trust li::before{content:"✓";color:var(--green);font-weight:700;flex-shrink:0;margin-top:.05rem}
.cta-sb-note{font-size:.78rem;color:var(--muted);text-align:center;margin-top:.75rem;font-style:italic}

/* ══════════════════════════════════════════════════════════════
   EYEBROW + TRUST ITEMS — FINAL OVERRIDES (must stay at end)
   ══════════════════════════════════════════════════════════════ */

/* Eyebrow — prevent full-width stretch on all screens */
.hero-eyebrow{
  display:inline-flex!important;
  width:fit-content!important;
  align-self:center!important;
  max-width:90%!important;
  font-size:.78rem;
  letter-spacing:.1em;
  padding:.3rem .9rem;
  white-space:nowrap;
}

/* Mobile eyebrow — tighter spacing to stay on one line */
@media(max-width:639px){
  .hero-eyebrow{
    font-size:.65rem!important;
    letter-spacing:.04em!important;
    padding:.25rem .7rem!important;
  }
}

/* Mobile trust items — 2×2 card grid, icon above centered text */
@media(max-width:639px){
  .hero-trust{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:.5rem!important;
    padding:.85rem .75rem!important;
    border-radius:12px!important;
    background:rgba(255,255,255,.06)!important;
    margin-top:1.5rem!important;
    border-top:none!important;
  }
  .trust-item{
    flex-direction:column!important;
    align-items:center!important;
    text-align:center!important;
    justify-content:center!important;
    gap:.3rem!important;
    background:rgba(255,255,255,.07)!important;
    border-radius:10px!important;
    padding:.7rem .4rem!important;
    font-size:.72rem!important;
    font-weight:600!important;
    line-height:1.3!important;
    color:rgba(255,255,255,.9)!important;
    width:auto!important;
  }
  .trust-item svg{
    width:22px!important;
    height:22px!important;
    fill:var(--amber)!important;
    flex-shrink:0!important;
  }
}

/* Desktop trust items — 4-column grid, icon above text */
@media(min-width:640px){
  .hero-trust{
    display:grid!important;
    grid-template-columns:repeat(4,1fr)!important;
    gap:.6rem!important;
    padding:1.1rem 1rem!important;
  }
  .trust-item{
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:.35rem!important;
    font-size:.8rem!important;
    padding:.65rem .4rem!important;
    background:rgba(255,255,255,.07)!important;
    border-radius:8px!important;
    line-height:1.3!important;
  }
  .trust-item svg{width:24px!important;height:24px!important}
}