:root{
  --navy:#0b1f3b;
  --navy-2:#0a1730;
  --blue:#1e7ed6;
  --sky:#7dc8ff;
  --white:#ffffff;
  --bg:#f6faff;
  --muted:#5b6b85;
  --ink:#0a1020;
  --red:#e11d48;
  --red-2:#ff3b4d;
  --border:rgba(11,31,59,.14);
  --shadow:0 18px 50px rgba(10,16,32,.12);
  --radius:18px;
  --radius-2:26px;
  --container:1120px;
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(30,126,214,.12), transparent 55%),
    radial-gradient(900px 500px at 85% 10%, rgba(225,29,72,.10), transparent 52%),
    linear-gradient(#ffffff, #f7fbff 55%, #ffffff);
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.10;
  background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27200%27%20height%3D%27200%27%3E%3Cfilter%20id%3D%27n%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%27.85%27%20numOctaves%3D%273%27%20stitchTiles%3D%27stitch%27/%3E%3C/filter%3E%3Crect%20width%3D%27200%27%20height%3D%27200%27%20filter%3D%27url(%23n)%27%20opacity%3D%27.35%27/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

.site-header, main, footer{ position:relative; z-index:2; }

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, select, textarea{ font:inherit; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute;
  left:16px; top:10px;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  transform:translateY(-160%);
  transition:transform .2s ease;
  z-index:999;
}
.skip-link:focus{ transform:translateY(0); }

.container{ max-width:var(--container); margin:0 auto; padding:0 20px; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,31,59,.84);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
}
.brand-logo{
  width:56px;
  height:auto;
  background:transparent;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.25));
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{
  font-family:"Bebas Neue", system-ui, sans-serif;
  color:#fff;
  font-size:30px;
  letter-spacing:.5px;
}
.brand-tagline{
  color:rgba(255,255,255,.86);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color:rgba(255,255,255,.9);
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
.nav a:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}
.nav-cta{
  background:linear-gradient(135deg, var(--red), var(--red-2));
  color:#fff !important;
  box-shadow:0 14px 35px rgba(225,29,72,.35);
  border:1px solid rgba(255,255,255,.18);
}

.menu-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.mobile-call-btn{
  display:none;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.2px;
  color:#fff;
  background:linear-gradient(135deg, var(--red), var(--red-2));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 12px 28px rgba(225,29,72,.30);
  white-space:nowrap;
}
.hamburger{
  width:22px;
  height:14px;
  position:relative;
  display:block;
}
.hamburger:before, .hamburger:after, .hamburger i{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#fff;
  border-radius:2px;
}
.hamburger:before{ top:0; }
.hamburger i{ top:6px; }
.hamburger:after{ bottom:0; }

.mobile-menu{
  display:none;
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 0 18px;
}
.mobile-menu.is-open{ display:block; }
.mobile-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-links a{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
}
.mobile-links a.nav-cta{
  background:linear-gradient(135deg, var(--red), var(--red-2));
}

/* Sections */
section{ scroll-margin-top:100px; }
.section-pad{
  padding:clamp(56px, 7vw, 96px) 0;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(30,126,214,.10);
  border:1px solid rgba(30,126,214,.18);
  color:rgba(11,31,59,.96);
  font-weight:800;
  letter-spacing:.2px;
  text-transform:uppercase;
  font-size:12.5px;
}
.eyebrow .dot{
  width:10px; height:10px; border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow:0 10px 18px rgba(30,126,214,.35);
}
h1,h2,h3{ margin:0; }
.h1{
  font-size:clamp(36px, 4.6vw, 58px);
  line-height:1.02;
  letter-spacing:-.7px;
}
.h2{
  font-size:clamp(26px, 3.0vw, 38px);
  line-height:1.14;
  letter-spacing:-.4px;
}
.lead{
  font-size:clamp(16px, 1.6vw, 19px);
  color:rgba(10,16,32,.84);
  line-height:1.6;
  margin-top:14px;
}
.subtle{
  color:rgba(11,31,59,.78);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
}
.btn:active{ transform:translateY(0); }
.btn:focus-visible{
  outline:3px solid rgba(30,126,214,.46);
  outline-offset:3px;
}
.nav a:focus-visible, .menu-toggle:focus-visible, a:focus-visible{
  outline:3px solid rgba(30,126,214,.46);
  outline-offset:3px;
  border-radius:14px;
}
.btn-primary{
  background:linear-gradient(135deg, var(--red), var(--red-2));
  color:#fff;
  box-shadow:0 16px 40px rgba(225,29,72,.35);
  border-color:rgba(255,255,255,.16);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 55px rgba(225,29,72,.40);
}
.btn-secondary{
  background:rgba(255,255,255,.86);
  border-color:rgba(30,126,214,.22);
  color:var(--navy);
}
.btn-secondary:hover{
  transform:translateY(-2px);
  border-color:rgba(30,126,214,.36);
}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.24);
  color:#fff;
}
.btn-ghost:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
}
.btn .icon{
  width:18px; height:18px; display:inline-block;
}
.mobile-sticky-cta{
  display:none;
}

/* Hero */
.hero{
  position:relative;
  padding:clamp(44px, 6vw, 74px) 0 clamp(42px, 5vw, 58px);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:-40px -120px -60px -120px;
  background:
    radial-gradient(800px 400px at 15% 30%, rgba(30,126,214,.22), transparent 55%),
    radial-gradient(700px 360px at 85% 35%, rgba(225,29,72,.18), transparent 55%),
    linear-gradient(135deg, rgba(11,31,59,.92), rgba(11,31,59,.78));
  border-bottom-left-radius:80px;
  border-bottom-right-radius:80px;
}
.hero-bg:after{
  content:"";
  position:absolute;
  right:-180px;
  top:10px;
  width:540px;
  height:360px;
  background-image:url("Assets/flyer.png");
  background-size:cover;
  background-position:center;
  opacity:.12;
  transform: rotate(-8deg);
  filter:saturate(1.05);
}
.hero-bg:before{
  content:"";
  position:absolute;
  left:-120px;
  bottom:70px;
  width:620px;
  height:120px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(225,29,72,0), rgba(225,29,72,.58));
  transform:rotate(-9deg);
  filter: blur(.6px);
  opacity:.95;
}
.hero-card{
  position:relative;
  z-index:1;
  color:#fff;
}
.hero-title{
  font-family:"Bebas Neue", system-ui, sans-serif;
}
.hero-title span{
  background:linear-gradient(90deg, #fff, rgba(125,200,255,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}
.hero-badges{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.badge{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
}
.badge strong{
  display:block;
  font-size:14px;
  letter-spacing:.2px;
}
.badge small{
  color:rgba(255,255,255,.86);
  font-weight:700;
}
.hero-side{
  position:relative;
  z-index:1;
}
.hero-side-panel{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.26);
  border-radius:var(--radius-2);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-side-media{
  height:200px;
  background:linear-gradient(135deg, rgba(30,126,214,.20), rgba(225,29,72,.18));
  position:relative;
  overflow:hidden;
}
.hero-side-media--photo{
  background:#0b1f3b;
}
.hero-side-media--photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-side-media--photo:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(11,31,59,.45), transparent 55%);
  pointer-events:none;
}
/* Fallback when no photo img (legacy) */
.hero-side-media:not(.hero-side-media--photo):before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("Assets/flyer.png");
  background-size:cover;
  background-position:center;
  opacity:.35;
  transform:scale(1.06);
}
.hero-side-content{
  padding:18px 18px 20px;
}
.hero-side-title{
  font-family:"Bebas Neue", system-ui, sans-serif;
  font-size:30px;
  letter-spacing:.5px;
}
.hero-side-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-side-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(10,16,32,.85);
  font-weight:800;
}
.check{
  width:18px; height:18px; border-radius:6px;
  background:rgba(30,126,214,.14);
  border:1px solid rgba(30,126,214,.25);
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.hero-side-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(11,31,59,.10);
}
.phone-mini{
  display:flex; flex-direction:column; gap:2px;
}
.phone-mini small{ color:rgba(11,31,59,.64); font-weight:800; }
.phone-mini a{ font-weight:1000; color:var(--navy); }

/* Grids and cards */
.grid{
  display:grid;
  gap:18px;
}
.grid-2{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
.grid-4{ grid-template-columns:repeat(4, minmax(0, 1fr)); }

.card{
  position:relative;
  border:1px solid rgba(11,31,59,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(10,16,32,.05);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(30,126,214,.55), rgba(225,29,72,.45), rgba(255,255,255,.55));
  opacity:0;
  transition:opacity .18s ease;
  pointer-events:none;
  z-index:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}
.card > *{ position:relative; z-index:1; }
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 55px rgba(10,16,32,.10);
  border-color:rgba(30,126,214,.18);
}
.card:hover:before{ opacity:.95; }
.card-body{ padding:18px; }
.card h3{
  font-size:18px;
  letter-spacing:-.2px;
}
.card p{
  margin:10px 0 0;
  color:rgba(11,31,59,.78);
  font-weight:700;
  line-height:1.6;
}
.card-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.service-icon{
  width:42px; height:42px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(30,126,214,.16), rgba(125,200,255,.20));
  border:1px solid rgba(30,126,214,.22);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.service-icon svg{ width:20px; height:20px; fill:var(--blue); }
.card-cta{
  margin-top:14px;
  display:flex;
  gap:10px;
  align-items:center;
}
.card-cta .btn{
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
}
.media-placeholder{
  height:140px;
  background:
    radial-gradient(400px 120px at 20% 20%, rgba(30,126,214,.25), transparent 55%),
    radial-gradient(340px 120px at 85% 10%, rgba(225,29,72,.20), transparent 45%),
    linear-gradient(135deg, rgba(11,31,59,.06), rgba(30,126,214,.10));
  border-bottom:1px solid rgba(11,31,59,.10);
  position:relative;
}
.media-placeholder:before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:16px;
  border:1px dashed rgba(11,31,59,.22);
  background:rgba(255,255,255,.40);
}
.media-placeholder:after{
  content:"HVAC photo placeholder";
  position:absolute;
  left:18px; bottom:14px;
  font-weight:900;
  color:rgba(11,31,59,.55);
  font-size:12.5px;
}

/* Real project photos (Assets/Work Photos) */
.card-media{
  height:160px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(11,31,59,.10);
  background:#0b1f3b;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.card:hover .card-media img{
  transform:scale(1.04);
}
.intro-photo{
  margin:0 0 18px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  aspect-ratio:4/3;
  background:#0b1f3b;
  box-shadow:var(--shadow);
}
.intro-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.work-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:16px;
  margin-top:22px;
}
.work-gallery-item{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  aspect-ratio:4/3;
  background:#0b1f3b;
  box-shadow:0 10px 30px rgba(10,16,32,.06);
}
.work-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.work-gallery-item:hover img{
  transform:scale(1.03);
}
.work-gallery-item figcaption{
  padding:10px 12px 12px;
  font-size:12.5px;
  font-weight:800;
  color:rgba(11,31,59,.62);
  background:rgba(255,255,255,.92);
}

/* Why choose us */
.feature{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(11,31,59,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
  position:relative;
  overflow:hidden;
}
.feature:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(30,126,214,.55), rgba(225,29,72,.40));
  opacity:.0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}
.feature > *{ position:relative; z-index:1; }
.feature:hover:before{ opacity:.85; }
.feature h3{ font-size:18px; }
.feature p{
  margin:10px 0 0;
  color:rgba(11,31,59,.78);
  font-weight:750;
  line-height:1.6;
}
.feature-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.feature-badge{
  width:44px; height:44px;
  border-radius:18px;
  background:rgba(225,29,72,.10);
  border:1px solid rgba(225,29,72,.20);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.feature-badge svg{ width:22px; height:22px; fill:var(--red); }

/* Reviews */
.reviews-box{
  border-radius:var(--radius-2);
  border:1px solid rgba(11,31,59,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow:0 22px 55px rgba(10,16,32,.08);
  overflow:hidden;
  position:relative;
}
.reviews-box:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:var(--radius-2);
  background:linear-gradient(135deg, rgba(30,126,214,.50), rgba(225,29,72,.38), rgba(255,255,255,.55));
  opacity:0;
  transition:opacity .18s ease;
  pointer-events:none;
  z-index:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}
.reviews-box > *{ position:relative; z-index:1; }
.reviews-box:hover:before{ opacity:.85; }
.reviews-head{
  padding:18px 18px 0;
}
.reviews-inner{
  padding:14px 18px 22px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.embed-placeholder{
  border:1px dashed rgba(11,31,59,.28);
  border-radius:18px;
  background:rgba(11,31,59,.03);
  padding:18px;
}
.embed-placeholder strong{ display:block; font-size:16px; }
.embed-placeholder p{ margin:8px 0 0; color:rgba(11,31,59,.74); font-weight:750; line-height:1.6; }
.review-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
.review-card{
  border:1px solid rgba(11,31,59,.14);
  border-radius:16px;
  background:rgba(255,255,255,.94);
  padding:14px;
  box-shadow:0 8px 24px rgba(10,16,32,.06);
}
.review-stars{
  color:#f59e0b;
  letter-spacing:2px;
  font-size:16px;
  font-weight:900;
}
.review-card p{
  margin:10px 0 10px;
  color:rgba(11,31,59,.80);
  line-height:1.6;
  font-weight:740;
}
.review-card strong{
  display:block;
  color:var(--navy);
  font-size:14px;
}

/* Quote/contact form */
.form-card{
  border-radius:var(--radius-2);
  border:1px solid rgba(11,31,59,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  box-shadow:0 22px 55px rgba(10,16,32,.08);
  overflow:hidden;
  position:relative;
}
.form-card:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:var(--radius-2);
  background:linear-gradient(135deg, rgba(30,126,214,.50), rgba(225,29,72,.38));
  opacity:0;
  transition:opacity .18s ease;
  pointer-events:none;
  z-index:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}
.form-card > *{ position:relative; z-index:1; }
.form-card:hover:before{ opacity:.85; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .card, .feature, .reviews-box, .form-card, .btn{ transition:none !important; }
  .card:hover, .btn-primary:hover, .btn-secondary:hover{ transform:none !important; }
}
.form-card .card-body{ padding:20px; }
.fields{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.field label{
  display:block;
  font-weight:900;
  font-size:13.5px;
  color:rgba(11,31,59,.78);
  margin-bottom:8px;
}
.field input, .field select, .field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(11,31,59,.16);
  background:rgba(255,255,255,.95);
  padding:12px 12px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:rgba(30,126,214,.55);
  box-shadow:0 0 0 4px rgba(30,126,214,.16);
}
.field textarea{ min-height:120px; resize:vertical; }
.field.full{ grid-column:1 / -1; }
.recaptcha-widget{
  margin-top:14px;
  min-height:78px;
}
.recaptcha-notice{
  margin-top:12px;
  font-size:12px;
  line-height:1.5;
  color:rgba(11,31,59,.65);
}
.recaptcha-notice a{
  color:var(--navy);
  text-decoration:underline;
}
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
  margin-top:14px;
}
.form-note{
  color:rgba(11,31,59,.70);
  font-weight:750;
}
.form-error{
  margin-top:10px;
  display:none;
  color:var(--red);
  font-weight:900;
}
.form-success{
  margin-top:10px;
  display:none;
  color:#0f6b3f;
  font-weight:900;
}
.hp-field{
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.fine-print{
  margin-top:12px;
  color:rgba(11,31,59,.62);
  font-weight:750;
  line-height:1.55;
  font-size:13px;
}

/* CTA banner */
.cta-banner{
  border-radius:var(--radius-2);
  border:1px solid rgba(255,255,255,.20);
  background:
    radial-gradient(600px 260px at 10% 10%, rgba(125,200,255,.30), transparent 55%),
    radial-gradient(520px 240px at 85% 30%, rgba(255,255,255,.20), transparent 55%),
    linear-gradient(135deg, rgba(225,29,72,.96), rgba(11,31,59,.96));
  box-shadow:0 35px 80px rgba(11,31,59,.22);
  color:#fff;
  overflow:hidden;
  position:relative;
}
.cta-banner:after{
  content:"";
  position:absolute;
  right:-140px;
  top:-120px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  transform:rotate(14deg);
}
.cta-banner .container{ position:relative; z-index:1; }
.cta-inner{
  padding:26px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.cta-inner h2{
  font-family:"Bebas Neue", system-ui, sans-serif;
  font-size:42px;
  letter-spacing:1px;
}
.cta-inner p{
  margin:10px 0 0;
  color:rgba(255,255,255,.86);
  font-weight:750;
}

/* Footer */
footer{
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(30,126,214,.16), transparent 55%),
    linear-gradient(180deg, var(--navy), #07122a);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer-inner{
  padding:34px 0;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
}
.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.footer-brand img{
  width:52px;
  background:transparent;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.25));
}
.footer-brand strong{
  display:block;
  font-family:"Bebas Neue", system-ui, sans-serif;
  font-size:34px;
  letter-spacing:1px;
}
.footer-brand small{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.80);
  font-weight:750;
  line-height:1.6;
}
.footer-col h3{
  font-size:14.5px;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin:2px 0 14px;
  color:rgba(255,255,255,.86);
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  color:rgba(255,255,255,.86);
  font-weight:800;
  transition:color .15s ease;
}
.footer-links a:hover{ color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px 0 22px;
  color:rgba(255,255,255,.75);
  font-weight:700;
}

/* Utilities */
.muted{ color:rgba(11,31,59,.72); font-weight:750; }
.divider{
  height:1px;
  background:rgba(11,31,59,.10);
  margin:22px 0;
}

/* Scroll reveal (home page) */
.reveal{
  opacity:0;
  transform:translateY(18px) scale(.99);
  filter: blur(8px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.9,.2,1),
    filter .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; filter:none; transition:none; }
}

/* Page hero */
.page-hero{
  padding:40px 0 30px;
}
.page-hero .eyebrow{ margin-bottom:14px; }
.page-hero .h2{
  color:var(--navy);
}
.page-hero p{ margin-top:12px; color:rgba(11,31,59,.76); font-weight:760; line-height:1.7; }

/* Map placeholder */
.map-placeholder{
  border-radius:var(--radius-2);
  border:1px dashed rgba(11,31,59,.28);
  background:rgba(11,31,59,.03);
  height:320px;
  position:relative;
  overflow:hidden;
}
.map-placeholder:after{
  content:"Map embed placeholder (swap in Google Maps iframe later)";
  position:absolute;
  left:16px;
  bottom:16px;
  right:16px;
  color:rgba(11,31,59,.65);
  font-weight:900;
  font-size:13px;
  line-height:1.5;
}
.map-embed:after{ display:none; }
.map-embed iframe{
  display:block;
  width:100%;
  height:100%;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .brand{ min-width:unset; }
  .hero-badges{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .grid-3{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .fields{ grid-template-columns:1fr; }
  .review-grid{ grid-template-columns:1fr; }
}
@media (max-width: 1100px){
  .brand-tagline{ display:none; }
}
@media (max-width: 900px){
  body{ overflow-x:hidden; }
  .header-inner{ padding:10px 0; }
  .brand{ gap:8px; min-width:0; }
  .brand-logo{ width:44px; }
  .brand-name{ font-size:25px; line-height:1; }
  .nav{ display:none; }
  .mobile-call-btn{ display:inline-flex; }
  .menu-toggle{ display:inline-flex; align-items:center; gap:10px; }
  .hero-title{ line-height:1.08; }
  .lead{ line-height:1.72; }
  .btn{
    max-width:100%;
    white-space:normal;
    text-align:center;
  }
  .hero-actions .btn{
    width:100%;
    justify-content:center;
  }
  .card-cta{
    flex-wrap:wrap;
  }
  .card-cta .btn{
    flex:1 1 220px;
  }
  .hero-side-foot{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .form-actions .btn{
    width:100%;
    justify-content:center;
  }
  .mobile-sticky-cta{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:70;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    background:rgba(11,31,59,.95);
    backdrop-filter: blur(8px);
    border-top:1px solid rgba(255,255,255,.16);
  }
  .mobile-sticky-cta .btn{
    width:100%;
    min-height:48px;
    border-radius:12px;
    font-size:14px;
  }
  footer{ padding-bottom:84px; }
}

@media (max-width: 640px){
  .container{ padding:0 14px; }
  .section-pad{ padding:46px 0; }
  .page-hero{ padding:30px 0 20px; }
  .header-inner{ gap:8px; }
  .brand-name{ font-size:22px; }
  .h1{ line-height:1.1; }
  .h2{ line-height:1.22; }
  .lead{ font-size:16px; line-height:1.7; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns:1fr; }
  .card-body{ padding:16px; }
  .card-top{ flex-wrap:wrap; }
  .feature-row{ gap:10px; }
  .cta-inner h2{ font-size:34px; }
  .footer-brand{ align-items:center; }
  .footer-brand strong{ font-size:30px; }
  .map-placeholder{ height:260px; }
  .recaptcha-widget{
    transform:scale(.94);
    transform-origin:left top;
    min-height:72px;
  }
  .mobile-call-btn{
    padding:8px 10px;
    font-size:11px;
    letter-spacing:0;
    min-width:0;
    max-width:150px;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

@media (max-width: 420px){
  .container{ padding:0 12px; }
  .section-pad{ padding:40px 0; }
  .cta-inner h2{ font-size:30px; }
  .mobile-sticky-cta{
    gap:8px;
    padding:8px 10px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta .btn{
    min-height:44px;
    font-size:13px;
    padding:10px 8px;
  }
  .brand-text{ display:none; }
  .header-inner{ justify-content:space-between; }
  .mobile-call-btn{
    max-width:120px;
    font-size:10px;
    padding:8px 8px;
  }
}

