:root{
  --navy:#0b1f4d;
  --yellow:#ffea00;
  --bg:#ffffff;
  --muted:#f5f7fb;
  --text:#0f172a;
  --sub:#334155;
  --line:#e6eaf2;
  --shadow: 0 10px 25px rgba(2, 8, 23, .08);
  --shadowSoft: 0 6px 16px rgba(2, 8, 23, .06);
  --radius: 14px;
  --radiusSm: 10px;
  --max: 1150px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  line-height:1.65;
  background:var(--bg);
  padding-bottom:70px;
}
a{ color:inherit; }
.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{ height:42px; width:auto; display:block; }
.nav{
  display:flex; align-items:center; gap:22px;
  font-weight:600; color:var(--sub);
}
.nav a{ text-decoration:none; padding:10px 6px; border-radius:10px; }
.nav a:hover{ background:var(--muted); color:var(--text); }
.header-cta{
  display:flex; align-items:center; gap:12px;
}
.badge{
  font-size:12px; color:var(--sub); line-height:1.2; text-align:right;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn-primary{
  background:var(--navy);
  color:#fff;
  box-shadow: var(--shadowSoft);
}
.btn-primary:hover{ filter:brightness(1.05); }
.btn-outline{
  background:#fff;
  color:var(--navy);
  border-color: var(--line);
}
.btn-outline:hover{ background:var(--muted); }

/* Hero */
.hero{
  padding:42px 0 20px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--sub);
  font-weight:600;
  font-size:13px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:999px; background:var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,234,0,.25);
}
h1{
  margin:12px 0 10px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-0.02em;
}
.subhead{
  margin:0 0 14px;
  font-size:17px;
  color:var(--sub);
}
.trust-bullets{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px 14px;
  margin:14px 0 18px;
  padding:0;
  list-style:none;
  color:var(--sub);
  font-weight:600;
}
.trust-bullets li{
  display:flex; gap:10px; align-items:flex-start;
}
.check{
  width:20px; height:20px; border-radius:6px;
  background:rgba(11,31,77,.08);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--navy);
  flex:0 0 auto;
}
.hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.microcopy{
  margin:10px 0 0;
  color:var(--sub);
  font-size:13px;
}
.hero-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  aspect-ratio: 4 / 3;
  width:100%;
  background:var(--muted);
}
.hero-media img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.hero-card-footer{
  padding:14px 16px 16px;
  display:flex; flex-direction:column; gap:10px;
}
.rating{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  color:var(--sub);
  font-weight:700;
}
.rating span{ font-weight:800; color:var(--text); }
.pills{
  display:flex; flex-wrap:wrap; gap:8px;
}
.pill{
  font-size:12px;
  color:var(--navy);
  background:rgba(255,234,0,.18);
  border:1px solid rgba(255,234,0,.35);
  padding:7px 10px;
  border-radius:999px;
  font-weight:700;
}

/* Trust strip */
.trust-strip{
  margin:18px 0 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--muted);
}
.trust-strip-inner{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  padding:14px 0;
  color:var(--sub);
  font-weight:700;
  font-size:13px;
}
.trust-item{ display:flex; gap:0px; align-items:center; justify-content:center; }
.icon{
  width:28px; height:28px; border-radius:10px;
  background:#fff; border:1px solid var(--line);
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 10px rgba(2, 8, 23, .05);
}

/* Sections */
.section{ padding:48px 0; }
.section.alt{ background:var(--muted); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section h2{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:-0.015em;
  line-height:1.18;
}
.lead{
  margin:0 0 18px;
  color:var(--sub);
  font-size:16px;
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  align-items:start;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
}
.card.pad{ padding:18px 18px; }
.media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadowSoft);
}
.media .frame{
  aspect-ratio: 4 / 3;
  background:var(--muted);
}
.media img{ width:100%; height:100%; object-fit:cover; display:block; }
.list{
  margin:0; padding-left:18px; color:var(--sub);
}
.callout{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px 16px;
  border-radius: var(--radiusSm);
  background:rgba(11,31,77,.05);
  border:1px solid rgba(11,31,77,.10);
}
.callout strong{ color:var(--text); }
.inline-cta{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

/* Feature cards */
.features{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.feature{
  padding:16px 16px;
}
.feature .t{ font-weight:800; margin:0 0 6px; }
.feature .d{ margin:0; color:var(--sub); font-size:14px; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
  margin-top:16px;
}
details{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radiusSm);
  box-shadow: var(--shadowSoft);
  padding:0;
}
summary{
  cursor:pointer;
  padding:14px 16px;
  list-style:none;
  font-weight:800;
  color:var(--text);
}
summary::-webkit-details-marker{ display:none; }
details[open] summary{ border-bottom:1px solid var(--line); }
.details-body{
  padding:12px 16px 16px;
  color:var(--sub);
}

/* Final CTA */
.final-cta{
  background:var(--navy);
  color:#fff;
  padding:52px 0;
}
.final-grid{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.final-cta h2{ color:#fff; margin:0; font-size:30px; }
.final-cta p{ margin:8px 0 0; color:rgba(255,255,255,.85); max-width:680px; }
.final-cta .btn-primary{ background:#fff; color:var(--navy); }
.final-cta .btn-outline{ background:transparent; color:#fff; border-color: rgba(255,255,255,.35); }

/* Footer */
.footer{
  padding:36px 0 90px; /* leave room for sticky bar on mobile */
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:14px;
  align-items:start;
}
.footer h4{ margin:0 0 10px; font-size:14px; color:var(--text); letter-spacing:.01em; }
.footer a{ text-decoration:none; color:var(--sub); }
.footer a:hover{ color:var(--text); text-decoration:underline; }
.small{ color:var(--sub); font-size:13px; }

/* Sticky bar */
.sticky{
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:60;
  background:#fff;
  border-top:1px solid var(--line);
  display:block;
}
.sticky-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:10px 12px;
}
.sticky .btn{ width:100%; padding:14px 14px; border-radius:14px; }

/* Mobile */
.mobile-only{ display:none; }
@media (max-width: 920px){
  h1{ font-size:36px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .trust-strip-inner{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .badge{ display:none; }
  .sticky{ display:block; }
  .mobile-only{ display:inline-flex; }
}

/* Mobile: show image first, reduce hero height, and avoid "bloated" above-the-fold */
@media (max-width: 920px){
  .hero{ padding:32px 0 14px; }
  .hero-grid{ gap:18px; }
  
  h1{ font-size:30px; line-height:1.16; }
  .subhead{ font-size:16px; }
  .trust-bullets{ display:none; }
  .microcopy{ font-size:12.5px; }
  .hero-media{ aspect-ratio: 16 / 9; }
  .hero-card-footer{ padding:12px 14px 14px; }
}

@media (max-width: 920px){
  .hero{ padding:28px 0 10px; }
  h1{ font-size:28px; }
}


@media (max-width: 920px){
  .hero-media-inline{ display:block; }
  .hero-media-aside{ display:none; }
}


/* Ensure CTAs sit side-by-side on mobile */
@media (max-width: 920px){
  .hero-ctas{
    display:flex;
    gap:10px;
  }
  .hero-ctas .btn{
    flex:1;
  }
}


/* Mobile hero image fix */
@media (max-width: 920px){
  .hero-media{
    display:block !important;
  }
  .hero-media img{
    width:100%;
    height:auto;
    display:block;
  }
}


/* Clean mobile hero structure */
@media (max-width: 920px){
  .hero-grid{
    display:flex;
    flex-direction:column;
  }

  .hero-card{
    order: 6;
  }

  .hero-media img{
    width:100%;
    height:auto;
    display:block;
  }

  .hero-card-footer{
    padding:12px 14px;
  }

  .footer{
    padding-bottom:20px;
  }
}


/* Testimonial polish */
.testimonial-section{
  margin:40px 0;
}

.testimonial-card{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:24px;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.testimonial-stars{
  color:#f5b301;
  font-size:18px;
  margin-bottom:12px;
  letter-spacing:2px;
}

.testimonial-text{
  font-size:18px;
  line-height:1.6;
  color:#111827;
  margin-bottom:14px;
}

.testimonial-author{
  font-weight:600;
  color:#374151;
}

@media (max-width: 920px){
  .testimonial-card{
    padding:20px;
  }
  .testimonial-text{
    font-size:16px;
  }
}


/* Google testimonial header */
.testimonial-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.google-logo{
  width:20px;
  height:auto;
}


/* Conversion polish upgrades */
.testimonial-card{
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.testimonial-text{
  font-size:19px;
  font-weight:500;
}

.hero-ctas{
  margin-top:22px;
}

.hero-ctas .btn{
  padding:14px 18px;
}

@media (max-width: 920px){
  .hero-ctas{
    margin-top:18px;
  }
  .hero-ctas .btn{
    padding:16px;
  }
}

/* Trust strip icon removal + alignment */
.trust-item{ justify-content:flex-start; }
.trust-strip-inner{ align-items:center; }
.icon{ display:none !important; }
@media (max-width: 920px){
  .trust-strip-inner{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:12px;
    padding:14px 0;
    font-size:14px;
  }
  .trust-item{
    justify-content:flex-start;
  }
}


/* ===========================
   Mobile Layout Cleanup v13
=========================== */

@media (max-width: 920px){

  .section{
    padding:36px 0;
  }

  .hero{
    padding:28px 0 18px;
  }

  .hero-ctas{
    display:flex;
    gap:12px;
  }

  .hero-ctas .btn{
    flex:1;
    text-align:center;
  }

  .trust-strip{
    margin-top:10px;
  }

  .trust-strip-inner{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:14px;
    text-align:left;
  }

  .trust-item{
    justify-content:flex-start;
    font-size:14px;
  }

  .pills{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }

  .pill{
    font-size:13px;
    padding:6px 10px;
  }

  .testimonial-section{
    margin:24px 0;
  }

  .testimonial-card{
    padding:18px;
  }

  .testimonial-text{
    font-size:16px;
    line-height:1.5;
  }

  .testimonial-stars{
    font-size:16px;
  }

}


/* ===========================
   Mobile Callouts Alignment Fix v14
=========================== */

@media (max-width: 920px){

  .trust-strip-inner{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
  }

  .trust-item{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    font-size:14px;
    line-height:1.3;
    min-height:48px; /* equal height rows */
  }

}


/* ===========================
   Mobile Alignment Overhaul v15
=========================== */

@media (max-width: 920px){

  /* Trust strip: perfectly even 2x2 grid */
  .trust-strip-inner{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:18px;
  }

  .trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:14px;
    line-height:1.3;
    min-height:54px;
  }

  /* Trusted locally pill section */
  .hero-card-footer{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .pills{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:8px;
  }

  .pill{
    font-size:13px;
    padding:7px 12px;
    border-radius:20px;
  }

}
