/* =====================================================================
   Pro HVAC Services — Static Design System
   Navy + Orange. All colors HSL tokens (lifted verbatim from spec).
   Mobile-first.
   ===================================================================== */

:root{
  --background:210 20% 98%;      --foreground:215 25% 15%;
  --card:0 0% 100%;              --card-foreground:215 25% 15%;
  --primary:215 50% 23%;         --primary-foreground:0 0% 100%;
  --secondary:210 15% 92%;       --secondary-foreground:215 25% 25%;
  --muted:210 15% 95%;           --muted-foreground:215 15% 45%;
  --accent:25 95% 53%;           --accent-foreground:0 0% 100%;
  --orange-light:25 95% 63%;     --orange-dark:25 95% 43%;
  --navy:215 50% 23%;            --navy-light:215 45% 35%;   --navy-dark:215 55% 15%;
  --success:142 76% 36%;         --border:210 20% 88%;       --input:210 20% 88%;
  --destructive:0 84% 60%;
  --radius:0.5rem;
  --gradient-hero:linear-gradient(135deg,hsl(215 50% 23%) 0%,hsl(215 55% 15%) 100%);
  --gradient-cta:linear-gradient(135deg,hsl(25 95% 53%) 0%,hsl(25 95% 43%) 100%);
  --gradient-emergency:linear-gradient(135deg,hsl(215 55% 15%) 0%,hsl(215 60% 10%) 100%);
  --shadow-sm:0 1px 2px 0 hsl(215 25% 15% / .05);
  --shadow-md:0 4px 6px -1px hsl(215 25% 15% / .1);
  --shadow-lg:0 10px 15px -3px hsl(215 25% 15% / .1);
  --shadow-glow:0 0 20px hsl(25 95% 53% / .3);
}

*{box-sizing:border-box;margin:0;padding:0;border-color:hsl(var(--border));}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  background:hsl(var(--background));
  color:hsl(var(--foreground));
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
a{color:inherit;text-decoration:none;transition:all .2s;}
button{font-family:inherit;cursor:pointer;transition:all .2s;}
img{max-width:100%;display:block;}
ul{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight:700;letter-spacing:-.025em;line-height:1.25;}

/* ---------- layout helpers ---------- */
.container-page{max-width:80rem;margin:0 auto;padding:0 1rem;}
@media(min-width:640px){.container-page{padding:0 1.5rem;}}
@media(min-width:1024px){.container-page{padding:0 2rem;}}
.section-padding{padding:3rem 0;}
@media(min-width:768px){.section-padding{padding:4rem 0;}}
@media(min-width:1024px){.section-padding{padding:6rem 0;}}
.section-padding-sm{padding:2rem 0;}
@media(min-width:768px){.section-padding-sm{padding:3rem 0;}}
.text-center{text-align:center;}
.max-2xl{max-width:42rem;margin:0 auto;}
.max-3xl{max-width:48rem;margin:0 auto;}

/* backgrounds */
.bg-hero{background:var(--gradient-hero);color:hsl(var(--primary-foreground));}
.bg-emergency{background:var(--gradient-emergency);color:hsl(var(--primary-foreground));}
.bg-primary{background:hsl(var(--primary));color:hsl(var(--primary-foreground));}
.bg-secondary{background:hsl(var(--secondary));}
.bg-background{background:hsl(var(--background));}
.bg-slate{background:#f8fafc;}
.bg-orange-50{background:#fff7ed;}
.bg-blue-50{background:#eff6ff;}
.text-accent{color:hsl(var(--accent));}
.text-primary{color:hsl(var(--primary));}
.text-muted{color:hsl(var(--muted-foreground));}

/* eyebrow label */
.eyebrow{display:inline-block;font-size:.8rem;font-weight:600;text-transform:uppercase;
  letter-spacing:.05em;color:hsl(var(--accent));margin-bottom:.5rem;}
.section-head{max-width:42rem;margin:0 auto 2rem;text-align:center;}
@media(min-width:768px){.section-head{margin-bottom:3rem;}}
.section-head h2{font-size:1.5rem;margin-bottom:.75rem;}
@media(min-width:768px){.section-head h2{font-size:2.25rem;}}
.section-head p{color:hsl(var(--muted-foreground));font-size:.95rem;}

/* type scale */
h1{font-size:1.875rem;}
h2{font-size:1.5rem;}
h3{font-size:1.25rem;}
@media(min-width:768px){h1{font-size:2.25rem;}h2{font-size:1.875rem;}h3{font-size:1.5rem;}}
@media(min-width:1024px){h1{font-size:3rem;}h2{font-size:2.25rem;}}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-weight:600;border:none;border-radius:var(--radius);white-space:nowrap;
  height:2.5rem;padding:0 1rem;font-size:.875rem;transition:all .2s;}
.btn-lg{height:3rem;padding:0 2rem;font-size:1rem;}
.btn-xl{height:3.5rem;padding:0 2.5rem;font-size:1.125rem;}
.btn-cta,.btn-phone{background:hsl(var(--accent));color:hsl(var(--accent-foreground));}
.btn-cta:hover,.btn-phone:hover{background:hsl(var(--orange-dark));}
.btn-phone{box-shadow:var(--shadow-glow);animation:pulse-glow 2s ease-in-out infinite;}
.btn-hero{background:hsl(var(--primary));color:hsl(var(--primary-foreground));}
.btn-hero:hover{background:hsl(var(--navy-light));}
.btn-outline-hero{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.6);}
.btn-outline-hero:hover{background:rgba(255,255,255,.1);}
.btn-full{width:100%;}
.cta-row{display:flex;flex-direction:column;gap:.75rem;}
@media(min-width:640px){.cta-row{flex-direction:row;gap:1rem;}.cta-row .btn{width:auto;}}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header{position:sticky;top:0;z-index:50;background:hsl(var(--card));
  box-shadow:var(--shadow-md);}
.header-inner{display:flex;align-items:center;justify-content:space-between;
  height:4rem;}
@media(min-width:768px){.header-inner{height:5rem;}}
.logo{display:flex;align-items:center;gap:.6rem;}
.logo img{width:40px;height:auto;}
@media(min-width:768px){.logo img{width:56px;}}
.logo-text{display:flex;flex-direction:column;line-height:1.15;}
.logo-text strong{font-size:1.125rem;color:hsl(var(--primary));font-weight:700;}
.logo-text small{font-size:.72rem;color:hsl(var(--muted-foreground));}
@media(min-width:768px){.logo-text strong{font-size:1.5rem;}.logo-text small{font-size:.85rem;}}

.desktop-nav{display:none;align-items:center;gap:1.25rem;}
@media(min-width:1024px){.desktop-nav{display:flex;}}
.nav-link{font-weight:500;font-size:.95rem;color:hsl(var(--foreground));position:relative;
  padding:.25rem 0;}
.nav-link:hover{color:hsl(var(--accent));}
.nav-link.active{color:hsl(var(--accent));}
.nav-link.active::after{content:"";position:absolute;left:0;right:0;bottom:-4px;
  height:2px;background:hsl(var(--accent));border-radius:2px;}
.nav-sep{width:1px;height:20px;background:hsl(var(--border));}
.nav-link.secondary{color:hsl(var(--muted-foreground));}
.header-cta{display:flex;align-items:center;gap:.5rem;}
.hamburger{display:inline-flex;background:transparent;border:none;padding:.4rem;color:hsl(var(--primary));}
@media(min-width:1024px){.hamburger{display:none;}}
.header-phone-sm{display:inline-flex;}
@media(min-width:1024px){.header-phone-sm .label-full{display:inline;}}

/* mobile menu */
.mobile-menu{display:none;background:hsl(var(--card));border-top:1px solid hsl(var(--border));
  box-shadow:var(--shadow-lg);}
.mobile-menu.open{display:block;animation:slideDown .2s ease-out;}
@media(min-width:1024px){.mobile-menu{display:none!important;}}
.mobile-menu a{display:block;padding:.85rem 1rem;font-weight:500;border-bottom:1px solid hsl(var(--border));}
.mobile-menu a:hover{color:hsl(var(--accent));background:hsl(var(--muted));}
.mobile-menu .menu-cta{padding:1rem;border-bottom:none;}

/* =====================================================================
   HERO
   ===================================================================== */
.hero-grid{display:grid;gap:2rem;align-items:center;}
@media(min-width:1024px){.hero-grid{grid-template-columns:1fr 1fr;gap:3rem;}}
.badge-pill{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;
  background:hsl(var(--accent)/.2);color:hsl(var(--accent));padding:.5rem 1rem;
  font-size:.8rem;font-weight:500;margin-bottom:1.25rem;}
.hero h1{font-size:2rem;line-height:1.15;margin-bottom:1.25rem;}
@media(min-width:768px){.hero h1{font-size:3rem;}}
@media(min-width:1024px){.hero h1{font-size:3.5rem;}}
.hero-sub{font-size:1.05rem;color:rgba(255,255,255,.8);margin-bottom:1.5rem;}
.trust-row{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem;}
@media(min-width:640px){.trust-row{flex-direction:row;flex-wrap:wrap;gap:1rem;}}
.trust-chip{display:inline-flex;align-items:center;gap:.5rem;border-radius:var(--radius);
  background:rgba(255,255,255,.1);padding:.5rem .75rem;font-size:.85rem;}
.trust-chip svg{color:hsl(var(--accent));}

/* =====================================================================
   LEAD FORM CARD
   ===================================================================== */
.lead-card{background:hsl(var(--card));border-radius:.75rem;box-shadow:var(--shadow-lg);
  padding:1.5rem;color:hsl(var(--foreground));}
@media(min-width:640px){.lead-card{padding:2rem;}}
.lead-card h2{font-size:1.35rem;color:hsl(var(--primary));margin-bottom:.35rem;}
.lead-card .serving{color:hsl(var(--muted-foreground));font-size:.9rem;margin-bottom:1.25rem;}
.lead-card label{display:block;font-size:.8rem;font-weight:600;margin:.6rem 0 .25rem;}
.lead-card input{width:100%;height:2.75rem;border:1px solid hsl(var(--input));
  border-radius:var(--radius);padding:0 .85rem;font-size:.95rem;background:hsl(var(--background));}
.lead-card input:focus{outline:2px solid hsl(var(--primary)/.4);border-color:hsl(var(--primary));}
.lead-card .btn{margin-top:1rem;}
.secure-note{display:flex;align-items:center;justify-content:center;gap:.4rem;
  font-size:.75rem;color:hsl(var(--muted-foreground));margin-top:.85rem;}
.form-success{display:none;text-align:center;padding:1.5rem 0;}
.form-success.show{display:block;}
.form-success .check{width:56px;height:56px;border-radius:9999px;background:hsl(var(--success)/.15);
  color:hsl(var(--success));display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.6rem;}

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid{display:grid;gap:1rem;}
@media(min-width:640px){.grid{gap:1.5rem;}}
.cols-2{grid-template-columns:1fr;}
.cols-3{grid-template-columns:1fr;}
.cols-4{grid-template-columns:1fr;}
@media(min-width:640px){.cols-2{grid-template-columns:repeat(2,1fr);}.cols-4{grid-template-columns:repeat(2,1fr);}}
@media(min-width:768px){.cols-3{grid-template-columns:repeat(3,1fr);}}
@media(min-width:1024px){.cols-4{grid-template-columns:repeat(4,1fr);}}

.card{background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:.75rem;
  padding:1.5rem;box-shadow:var(--shadow-sm);}
.card-hover{transition:all .3s;display:block;}
.card-hover:hover{border-color:hsl(var(--accent));box-shadow:var(--shadow-lg);transform:translateY(-4px);}
.icon-circle{width:3rem;height:3rem;border-radius:9999px;background:hsl(var(--accent)/.1);
  display:flex;align-items:center;justify-content:center;color:hsl(var(--accent));margin:0 auto .85rem;}
@media(min-width:640px){.icon-circle{width:3.5rem;height:3.5rem;}}
.icon-square{width:3rem;height:3rem;border-radius:var(--radius);background:hsl(var(--primary)/.1);
  display:flex;align-items:center;justify-content:center;color:hsl(var(--primary));margin-bottom:.85rem;transition:all .3s;}
.card-hover:hover .icon-square{background:hsl(var(--accent)/.1);color:hsl(var(--accent));}
.card h3{font-size:1.125rem;margin-bottom:.5rem;}
.card p{font-size:.9rem;color:hsl(var(--muted-foreground));}
.emoji-lg{font-size:2.5rem;display:block;margin-bottom:1rem;}
.learn-more{display:inline-flex;align-items:center;gap:.25rem;font-size:.9rem;font-weight:500;
  color:hsl(var(--accent));margin-top:.5rem;}
.card-hover:hover .learn-more{transform:translateX(4px);}

/* promo split */
.split{display:grid;gap:2rem;align-items:center;}
@media(min-width:1024px){.split{grid-template-columns:3fr 2fr;gap:3rem;}}
.mini-card{display:flex;align-items:center;gap:1rem;background:hsl(var(--card));
  border:1px solid hsl(var(--border));border-radius:.75rem;padding:1rem;box-shadow:var(--shadow-sm);transition:all .3s;}
.mini-card:hover{box-shadow:var(--shadow-lg);transform:scale(1.02);}
.mini-card .emoji{font-size:1.6rem;}
.mini-card strong{display:block;font-size:.95rem;}
.mini-card span{font-size:.85rem;color:hsl(var(--accent));}

/* =====================================================================
   EMERGENCY CTA
   ===================================================================== */
.emergency{padding:4rem 0;text-align:center;}
.emergency .alert-circle{width:4rem;height:4rem;border-radius:9999px;background:hsl(var(--accent)/.2);
  color:hsl(var(--accent));display:flex;align-items:center;justify-content:center;margin:0 auto 2rem;}
.emergency h2{font-size:1.875rem;margin-bottom:1rem;}
@media(min-width:768px){.emergency h2{font-size:2.25rem;}}
.emergency p{max-width:42rem;margin:0 auto 2rem;color:rgba(255,255,255,.8);font-size:1.1rem;}
.emergency .cta-row{justify-content:center;}
.trust-dots{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;margin-top:1.5rem;
  font-size:.85rem;color:rgba(255,255,255,.7);}
.trust-dots span{display:inline-flex;align-items:center;gap:.5rem;}
.dot{width:8px;height:8px;border-radius:9999px;background:hsl(var(--success));}

/* =====================================================================
   STORE
   ===================================================================== */
.breadcrumb{background:#f8fafc;padding:.75rem 0;font-size:.85rem;color:hsl(var(--muted-foreground));}
.breadcrumb a:hover{color:hsl(var(--accent));}
.breadcrumb .sep{margin:0 .5rem;}
.product-card{display:flex;flex-direction:column;background:hsl(var(--card));
  border:1px solid hsl(var(--border));border-radius:.75rem;padding:1.5rem;box-shadow:var(--shadow-sm);transition:all .3s;}
.product-card:hover{box-shadow:var(--shadow-lg);}
.product-thumb{height:10rem;border-radius:var(--radius);background:#f1f5f9;display:flex;
  align-items:center;justify-content:center;font-size:3.5rem;margin-bottom:1rem;}
.product-card h3{font-size:1.05rem;margin-bottom:.5rem;}
.stars{display:flex;align-items:center;gap:.15rem;margin-bottom:1rem;color:hsl(var(--accent));font-size:.9rem;}
.stars .num{color:hsl(var(--muted-foreground));margin-left:.3rem;}
.feat-label{font-size:.85rem;font-weight:600;margin-bottom:.4rem;}
.product-card ul{margin-bottom:1rem;}
.product-card li{font-size:.85rem;color:hsl(var(--muted-foreground));display:flex;gap:.5rem;margin-bottom:.2rem;}
.product-card li::before{content:"•";color:hsl(var(--accent));}
.best-for{font-size:.85rem;margin-bottom:1rem;}
.best-for strong{color:hsl(var(--foreground));}
.price-tag{font-size:.85rem;font-weight:600;color:hsl(var(--primary));margin-bottom:1rem;}
.product-card .spacer{flex:1;}

/* =====================================================================
   BLOG / ARTICLE
   ===================================================================== */
.article-hero{background:var(--gradient-hero);color:#fff;padding:3rem 0;}
.article-hero .kicker{color:hsl(var(--accent));font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;}
.article-hero h1{font-size:1.9rem;margin:.75rem 0;}
@media(min-width:768px){.article-hero h1{font-size:2.5rem;}}
.article-hero .meta{color:rgba(255,255,255,.75);font-size:.9rem;}
.article-body{max-width:44rem;margin:0 auto;padding:3rem 0;}
.article-body h2{font-size:1.5rem;color:hsl(var(--primary));margin:2rem 0 .75rem;}
.article-body p{margin-bottom:1.1rem;color:hsl(var(--foreground)/.9);}
.article-body a{color:hsl(var(--accent));font-weight:600;text-decoration:underline;}
.article-body a:hover{color:hsl(var(--orange-dark));}
.article-cta{background:hsl(var(--muted));border-left:4px solid hsl(var(--accent));
  border-radius:var(--radius);padding:1.25rem 1.5rem;margin:2rem 0;}
.blog-card{display:flex;flex-direction:column;background:hsl(var(--card));border:1px solid hsl(var(--border));
  border-radius:.75rem;padding:1.5rem;box-shadow:var(--shadow-sm);transition:all .3s;}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:hsl(var(--accent));}
.blog-card .cat{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--accent));margin-bottom:.5rem;}
.blog-card h3{font-size:1.1rem;margin-bottom:.5rem;}
.blog-card p{font-size:.9rem;color:hsl(var(--muted-foreground));flex:1;margin-bottom:1rem;}

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid{display:grid;gap:3rem;}
@media(min-width:1024px){.contact-grid{grid-template-columns:1fr 1fr;}}
.contact-card{display:flex;gap:1rem;align-items:flex-start;background:hsl(var(--card));
  border:1px solid hsl(var(--border));border-radius:.75rem;padding:1.5rem;box-shadow:var(--shadow-md);margin-bottom:1.5rem;}
.contact-card .ic{width:3.5rem;height:3.5rem;border-radius:var(--radius);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;background:hsl(var(--accent)/.1);color:hsl(var(--accent));}
.contact-card .ic.navy{background:hsl(var(--primary)/.1);color:hsl(var(--primary));}
.contact-card h3{font-size:1rem;margin-bottom:.25rem;}
.contact-card .big{font-size:1.5rem;font-weight:700;color:hsl(var(--accent));}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer{background:hsl(var(--primary));color:hsl(var(--primary-foreground));padding:3rem 0 1.5rem;}
.footer-grid{display:grid;gap:2rem;grid-template-columns:1fr;}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.footer-grid{grid-template-columns:repeat(4,1fr);}}
.footer-grid h4{font-size:.95rem;margin-bottom:1rem;color:#fff;}
.footer-grid a{display:block;color:rgba(255,255,255,.75);font-size:.9rem;padding:.25rem 0;}
.footer-grid a:hover{color:hsl(var(--accent));}
.footer-logo{display:flex;align-items:center;gap:.6rem;margin-bottom:1rem;}
.footer-logo img{width:44px;}
.footer-logo strong{color:#fff;font-size:1.1rem;}
.footer-logo small{color:rgba(255,255,255,.7);font-size:.75rem;display:block;}
.footer-about{color:rgba(255,255,255,.7);font-size:.85rem;line-height:1.6;}
.footer-phone{display:inline-flex;margin-top:.75rem;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.15);margin-top:2rem;padding-top:1.5rem;
  display:flex;flex-wrap:wrap;gap:.5rem;justify-content:space-between;font-size:.8rem;color:rgba(255,255,255,.6);}

/* =====================================================================
   EMAIL POPUP (lead magnet)
   ===================================================================== */
.popup-overlay{position:fixed;inset:0;background:hsl(var(--navy-dark)/.85);z-index:100;
  display:none;align-items:center;justify-content:center;padding:1rem;}
.popup-overlay.show{display:flex;animation:fade-in .3s ease-out;}
.popup{background:#fff;border-radius:1rem;max-width:34rem;width:100%;padding:2.5rem 2rem;
  text-align:center;position:relative;box-shadow:var(--shadow-lg);}
.popup-close{position:absolute;top:1rem;right:1rem;background:transparent;border:none;
  color:hsl(var(--muted-foreground));font-size:1.4rem;line-height:1;padding:.25rem;}
.popup .emoji{font-size:3rem;margin-bottom:1rem;}
.popup h2{font-size:1.6rem;color:hsl(var(--foreground));margin-bottom:.75rem;}
.popup>p{color:hsl(var(--muted-foreground));margin-bottom:1.5rem;}
.popup input{width:100%;height:3.25rem;border:1px solid hsl(var(--input));border-radius:var(--radius);
  padding:0 1rem;font-size:1rem;margin-bottom:1rem;background:hsl(var(--background));}
.popup .btn{width:100%;}
.popup ul{text-align:left;max-width:20rem;margin:1.25rem auto 0;}
.popup li{display:flex;gap:.6rem;align-items:center;padding:.3rem 0;color:hsl(var(--foreground));}
.popup li::before{content:"✓";color:hsl(var(--accent));font-weight:700;}
.popup .fine{font-size:.8rem;color:hsl(var(--muted-foreground));margin-top:1rem;}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes fade-in{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}
@keyframes slideDown{from{opacity:0;transform:translateY(-10px);}to{opacity:1;transform:translateY(0);}}
@keyframes pulse-glow{0%,100%{box-shadow:0 0 20px hsl(25 95% 53% / .3);}50%{box-shadow:0 0 30px hsl(25 95% 53% / .55);}}
.animate-fade-in{animation:fade-in .5s ease-out both;}
.pulse-slow{animation:pulse-glow 3s ease-in-out infinite;}

/* utility */
.mt-2{margin-top:2rem;}.mb-1{margin-bottom:1rem;}.mb-2{margin-bottom:2rem;}
.hide-mobile{display:none;}
@media(min-width:640px){.hide-mobile{display:inline;}}
.icon{width:1.25rem;height:1.25rem;stroke:currentColor;fill:none;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

/* =====================================================================
   FEEDBACK REVISIONS
   ===================================================================== */
/* Colored, iconic card icons by default (no more grey) */
.icon-square{background:hsl(var(--accent)/.12);color:hsl(var(--accent));}
.card-hover:hover .icon-square{background:hsl(var(--accent)/.2);color:hsl(var(--accent));}
/* slightly larger, friendlier icons in cards */
.icon-circle .icon,.icon-square .icon{width:1.6rem;height:1.6rem;}

/* Static cards (no hover motion) for non-linked content */
.card.static,.card.static:hover{transform:none;border-color:hsl(var(--border));box-shadow:var(--shadow-sm);}

/* Phone numbers centered inside buttons */
.btn{text-align:center;justify-content:center;}
.footer-phone,.btn-phone{justify-content:center;}

/* Compact service-page hero (distinct from homepage) */
.service-hero{background:var(--gradient-hero);color:#fff;padding:2rem 0 2.25rem;position:relative;}
.service-hero::after{content:"";position:absolute;left:0;right:0;bottom:0;height:4px;background:var(--gradient-cta);}
.service-hero .badge-pill{margin-bottom:.75rem;}
.service-hero h1{font-size:1.8rem;margin-bottom:.5rem;}
@media(min-width:768px){.service-hero h1{font-size:2.4rem;}}
.service-hero p{color:rgba(255,255,255,.82);max-width:44rem;margin-bottom:1rem;}
.service-hero .cta-row{margin-top:.25rem;}

/* Subtle inline lead-magnet band (helpful, not salesy) */
.magnet-band{background:hsl(var(--ice-blue,200 80% 95%));border:1px solid hsl(var(--accent)/.25);
  border-radius:.9rem;padding:1.5rem;display:grid;gap:1rem;align-items:center;}
.magnet-band .mb-copy strong{display:block;color:hsl(var(--primary));font-size:1.15rem;margin-bottom:.35rem;}
.magnet-band .mb-copy p{color:hsl(var(--muted-foreground));font-size:.92rem;margin:0;}
.magnet-inline{display:flex;flex-direction:column;gap:.6rem;}
.magnet-inline input{height:2.9rem;border:1px solid hsl(var(--input));border-radius:var(--radius);padding:0 .9rem;font-size:.95rem;background:#fff;}
@media(min-width:640px){.magnet-band{grid-template-columns:3fr 2fr;}.magnet-inline{flex-direction:row;}.magnet-inline input{flex:1;}}
.magnet-note{font-size:.75rem;color:hsl(var(--muted-foreground));margin-top:.25rem;}
.magnet-success{display:none;}
.magnet-success.show{display:block;}
.magnet-success a{color:hsl(var(--accent));font-weight:700;text-decoration:underline;}

/* Download button on success */
.dl-btn{display:none;margin-top:1rem;}
.dl-btn.show{display:inline-flex;}

/* FAQ (SEO rich-result blocks) */
.faq-list{display:grid;gap:.75rem;}
.faq{background:hsl(var(--card));border:1px solid hsl(var(--border));border-left:4px solid hsl(var(--accent));border-radius:var(--radius);padding:1.1rem 1.25rem;}
.faq h3{font-size:1.02rem;color:hsl(var(--primary));margin-bottom:.35rem;}
.faq p{font-size:.92rem;color:hsl(var(--muted-foreground));margin:0;}