/* ============================================================
   Zeke's Screens & Landscaping — Global Stylesheet
   Apple-inspired: huge type, generous whitespace, restraint.
   ============================================================ */

:root{
  --navy:        #0F2747;
  --navy-light:  #1B3A63;
  --navy-deep:   #0A1B33;
  --green:       #2F6B3C;
  --green-light: #3F8A4F;
  --gray:        #C7CDD4;
  --off-white:   #F6F8FA;
  --white:       #FFFFFF;
  --text-dark:   #11151B;
  --text-muted:  #4E5765;   /* darkened for cleaner, higher-contrast reading */
  --line:        #E4E7EC;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 20px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --shadow-sm: 0 2px 10px rgba(15,39,71,.07);
  --shadow-md: 0 16px 40px rgba(15,39,71,.10);
  --shadow-lg: 0 34px 80px rgba(15,39,71,.16);
  --shadow-dark: 0 30px 70px rgba(4,10,20,.45);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }

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

section{ position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4{
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 26px; height: 2px;
  background: var(--green);
  display:inline-block;
}
h1{ font-size: clamp(40px, 6.4vw, 82px); line-height: 1.04; }
h2{ font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08; }
h3{ font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; }
p{ margin: 0; }
.lead{
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 640px;
}
.section-head{ margin-bottom: 56px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head.center .lead{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 18px 34px;
  min-height: 56px;               /* comfortable tap target on mobile */
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
/* Visible keyboard focus for accessibility */
.btn:focus-visible{ outline: 3px solid var(--green-light); outline-offset: 3px; }

.btn-primary{
  background: linear-gradient(160deg, #3A8149 0%, #2A6136 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(47,107,60,.45), 0 0 0 1px rgba(255,255,255,.08) inset, inset 0 1px 0 rgba(255,255,255,.28);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(47,107,60,.58), inset 0 1px 0 rgba(255,255,255,.34);
}

/* High-visibility button for dark backgrounds — used for CALL actions */
.btn-white{
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.btn-white:hover{ background: #fff; color: var(--green); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.36); }

.btn-outline-light{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.75);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light:hover{ background: rgba(255,255,255,.24); border-color: #fff; transform: translateY(-2px); }
.btn-outline-dark{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover{ background: var(--navy); color: var(--white); }
.btn-navy{
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(15,39,71,.28);
}
.btn-navy:hover{ background: var(--navy-light); transform: translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding: 12px 22px; font-size: 14px; }

.cta-row{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }

/* ---------- Navbar ---------- */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 20px 20px 0;
  transition: padding .35s var(--ease);
}
.nav.solid{ padding: 12px 20px 0; }
.nav .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 12px 9px 24px;
  background: rgba(10,27,51,.55);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 100px;
  box-shadow: 0 10px 34px rgba(10,20,35,.22);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.solid .wrap{
  background: rgba(10,27,51,.92);
  box-shadow: 0 10px 34px rgba(10,20,35,.32);
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 40px; width:auto; border-radius: 8px; background: #fff; padding: 4px; }
.brand-word{ display:flex; flex-direction:column; line-height:1; }
.brand-word b{ color:#fff; font-size:17px; font-weight:800; letter-spacing:-0.01em; }
.brand-word span{ color: var(--gray); font-size: 10px; letter-spacing:.14em; text-transform:uppercase; margin-top:3px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}
.nav-links a{
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s ease;
  position:relative;
}
.nav-links a:hover{ color:#fff; }
.nav-links a.active{ color:#fff; font-weight:700; }

.has-dropdown{ display:flex; align-items:center; gap:4px; cursor:default; }
.has-dropdown .dropdown-caret{ width:9px; height:9px; opacity:.75; transition: transform .2s ease; }
.has-dropdown:hover .dropdown-caret{ transform: rotate(180deg); }
.nav-dropdown{
  position:absolute; top: calc(100% + 16px); left:50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 300px;
  background:#fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 56px rgba(10,20,35,.30);
  opacity:0; visibility:hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown{ opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a{
  display:block; color: var(--navy) !important; font-weight:600 !important;
  font-size: 14.5px; padding: 11px 14px; border-radius: 11px;
}
.nav-dropdown a:hover{ background: var(--off-white); color: var(--green) !important; }
.nav-dropdown a small{ display:block; color: var(--gray); font-weight:400; font-size:12px; margin-top:2px; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  color:#fff; font-size:14.5px; font-weight:600;
}
.nav-phone svg{ width:16px; height:16px; flex-shrink:0; }

.nav-burger{
  display:none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color:#fff;
  align-items:center; justify-content:center;
  cursor:pointer;
}

.mobile-panel{
  display:none;
  position: fixed;
  top: 0; right:0; left:0;
  background: var(--navy-deep);
  padding: 100px 28px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.mobile-panel.open{ transform: translateY(0); display:flex; }
.mobile-panel a{
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-panel .cta-row{ margin-top: 24px; }
.mobile-panel .mobile-label{
  color: rgba(255,255,255,.45); font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em; padding: 18px 0 4px; border:none;
}
.mobile-panel .mobile-sub{ font-size:17px !important; font-weight:500 !important; padding: 11px 0 11px 14px !important; color: rgba(255,255,255,.85) !important; }

@media (max-width: 920px){
  .nav-links{ display:none; }
  .nav-phone span{ display:none; }
  .nav-burger{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color:#fff;
  padding: 190px 0 120px;
  overflow: hidden;
  position: relative;
}
.hero::after{
  content:"";
  position:absolute;
  right:-10%; top:-15%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(47,107,60,.35) 0%, rgba(47,107,60,0) 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero h1{ color:#fff; }
.hero .lead{ color: rgba(255,255,255,.72); margin-top:22px; }
.hero .cta-row{ margin-top:38px; }
.hero-badge-row{
  display:flex; gap:28px; flex-wrap:wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-badge{ display:flex; align-items:center; gap:10px; color: rgba(255,255,255,.96); font-size:14px; font-weight:700; }
.hero-badge svg{ width:20px; height:20px; color: var(--green-light); flex-shrink:0; }

.hero-art{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
}
/* Soft green glow behind the photo — adds depth without a hard shape */
.hero-art::before{
  content:"";
  position:absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 82%; height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,60,.55) 0%, rgba(47,107,60,0) 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events:none;
}
.hero-art img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 40px 80px rgba(0,0,0,.55),
    0 12px 28px rgba(0,0,0,.35);
}

/* Floating verified-review badge overlapping the hero photo */
.hero-proof{
  position: absolute;
  left: -6px;
  bottom: 18px;
  z-index: 2;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 44px rgba(0,0,0,.4);
}
.hero-proof-stars{ display:flex; gap:2px; }
.hero-proof-stars svg{ width:15px; height:15px; color:#E8A33D; }
.hero-proof b{ display:block; font-size:16px; font-weight:800; color: var(--navy); line-height:1.1; }
.hero-proof span{ display:block; font-size:11.5px; font-weight:600; color: var(--text-muted); letter-spacing:.02em; margin-top:3px; }
@media (max-width: 900px){
  .hero-proof{ left: 50%; transform: translateX(-50%); bottom: -14px; }
  .hero-art{ margin-bottom: 26px; }
}

@media (max-width: 900px){
  .hero{ padding: 150px 0 80px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ margin-top: 34px; order: -1; }
  .hero-art img{ max-width: 460px; }
  .hero .cta-row .btn{ width: 100%; }   /* full-width tap targets on phones */
}

/* page hero (sub-pages) — shorter */
.page-hero{
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color:#fff;
  padding: 168px 0 84px;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute; right:-8%; top:-30%;
  width:560px; height:560px;
  background: radial-gradient(circle, rgba(47,107,60,.3) 0%, rgba(47,107,60,0) 70%);
}
.page-hero .wrap{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; max-width: 780px; }
.page-hero .lead{ color: rgba(255,255,255,.72); margin-top:18px; max-width: 620px; }
.breadcrumb{ font-size:13px; color: rgba(255,255,255,.55); margin-bottom:20px; letter-spacing:.02em; }
.breadcrumb b{ color: var(--green-light); }

/* ---------- Full-bleed photo service hero (dirtymint-style) ---------- */
.service-hero{
  position: relative;
  min-height: 78vh;
  display:flex;
  align-items:flex-end;
  padding: 170px 0 76px;
  color:#fff;
  overflow:hidden;
}
.service-hero-bg{ position:absolute; inset:0; z-index:0; background: var(--navy-deep); }
.service-hero-bg img{ width:100%; height:100%; object-fit:cover; opacity:.92; }
.service-hero-bg::after{
  content:"";
  position:absolute; inset:0;
  /* Lighter at top so the (now brighter) photo reads; still dark under the text for contrast */
  background: linear-gradient(180deg, rgba(8,17,31,.55) 0%, rgba(8,17,31,.15) 38%, rgba(8,17,31,.93) 100%);
  z-index:1;
}
.service-hero .wrap{ position:relative; z-index:2; }
.service-hero h1{ color:#fff; max-width: 760px; }
.service-hero .lead{ color: rgba(255,255,255,.82); margin-top:18px; max-width: 600px; }
.service-hero .cta-row{ margin-top:34px; }
.service-hero .hero-badge-row{ margin-top:44px; padding-top:26px; }
@media (max-width: 900px){
  .service-hero{ min-height: auto; padding: 150px 0 60px; }
}

/* ---------- Bento service grid (dirtymint-style) ---------- */
.service-grid-lg{ display:grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }
.service-grid-lg.two{ grid-template-columns: 1fr 1fr; }
.service-grid-sm{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-grid-sm.three{ grid-template-columns: repeat(3, 1fr); }
.tile-lg{ aspect-ratio: 21/9; border-radius: 22px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.tile-lg:hover{ box-shadow: var(--shadow-lg); }
.service-grid-lg.two .tile-lg{ aspect-ratio: 6/5; }
.tile-lg .tile-caption{ padding: 30px 34px; transition: transform .5s var(--ease); }
.tile-lg .tile-caption span{ font-size: 20px; font-weight:800; }
.tile-lg .tile-caption p{ color: rgba(255,255,255,.78); font-size:14px; margin-top:6px; max-width:480px; opacity:0; max-height:0; overflow:hidden; transition: opacity .4s ease .05s, max-height .4s ease; }
.tile-lg:hover .tile-caption p{ opacity:1; max-height:80px; margin-top:8px; }
.tile.photo img{ transition: transform .8s var(--ease); }
.tile.photo:hover img{ transform: scale(1.07); }
@media (hover: none){
  .tile-lg .tile-caption p{ opacity:1; max-height:none; margin-top:6px; }
}
.tile-icon{ background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%); }
.tile-icon svg{ width:34px; height:34px; color: var(--green-light); }
.tile-icon span{ font-size:14px; font-weight:700; text-align:center; padding: 0 14px; }
@media (max-width: 900px){
  .service-grid-sm{ grid-template-columns: repeat(2, 1fr); }
  .service-grid-sm.three{ grid-template-columns: repeat(2, 1fr); }
  .service-grid-lg.two{ grid-template-columns: 1fr; }
  .tile-lg{ aspect-ratio: 4/3; }
  .service-grid-lg.two .tile-lg{ aspect-ratio: 4/3; }
}
@media (max-width: 560px){
  .service-grid-sm{ grid-template-columns: 1fr; }
  .service-grid-sm.three{ grid-template-columns: 1fr; }
}

/* ---------- Duotone photo tiles (unified photographic look, no stock/icon mismatch) ---------- */
.tile.duo{ position:relative; }
.tile.duo img{ filter: saturate(0) contrast(1.05); }
.tile.duo::before{
  content:"";
  position:absolute; inset:0; z-index:1;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: .82;
}
.tile.duo::after{
  content:"";
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(160deg, rgba(47,107,60,.55) 0%, rgba(15,39,71,0) 60%);
}
.tile.duo .tile-caption{ z-index:2; background:none; }
.tile.duo .tile-caption span{ font-size:14px; font-weight:700; }
.tile.duo .tile-caption small{ display:block; color: rgba(255,255,255,.65); font-size:11px; margin-top:3px; font-weight:500; }
.tile.duo.p2 img{ object-position: 80% 30%; }
.tile.duo.p3 img{ object-position: 20% 70%; }
.tile.duo.p4 img{ object-position: 50% 90%; }
.tile.duo.p5 img{ object-position: 90% 10%; }

/* ---------- Hero scroll cue (dirtymint-style corner arrow) ---------- */
.hero-scroll-cue{
  position:absolute; right: 28px; bottom: -26px; z-index:3;
  width:52px; height:52px; border-radius:50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s ease, transform .3s var(--ease);
}
.hero-scroll-cue:hover{ background: var(--green); transform: translateY(4px); }
.hero-scroll-cue svg{ width:20px; height:20px; color:#fff; }

/* ---------- Arrow button (dirtymint-style CTA) ---------- */
.btn-arrow svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
.btn-arrow:hover svg{ transform: translate(3px,-3px); }

/* Let the real, color-graded photo show through the small service tiles
   (was heavily desaturated + navy — hid the actual work) */
.tile.duo img{ filter: saturate(1) contrast(1.02); }
.tile.duo::before{ opacity:.30; }
.tile.duo::after{ background: linear-gradient(180deg, rgba(10,20,35,0) 40%, rgba(10,20,35,.85) 100%); }

/* ============================================================
   MOBILE EXPERIENCE PASS  (<= 720px)
   Tighter, faster, one CTA per section, real photos over icons.
   ============================================================ */
@media (max-width: 720px){

  /* --- Global rhythm: less scrolling, intentional spacing --- */
  .section{ padding: 56px 0; }
  .section.tight{ padding: 44px 0; }
  .wrap{ padding: 0 20px; }
  .section-head{ margin-bottom: 32px; }
  h1{ font-size: clamp(32px, 9vw, 44px); line-height: 1.08; }
  h2{ font-size: clamp(25px, 6.4vw, 32px); }
  .lead{ font-size: 16px; line-height: 1.55; }
  .card p, .review-card p.review-text{ font-size: 14.5px; }

  /* --- Remove redundant in-content call buttons: the sticky bar
         already gives Call + Estimate on every screen. Keep ONE
         primary CTA (estimate) per section. --- */
  .hero a.btn[href^="tel:"],
  .service-hero a.btn[href^="tel:"],
  .section a.btn[href^="tel:"],
  .offer a.btn[href^="tel:"],
  .free-offer a.btn[href^="tel:"]{ display:none !important; }

  /* Any remaining single CTA goes full-width and comfortable */
  .cta-row{ gap:12px; }
  .cta-row .btn{ width:100%; }

  /* --- Hero: shorter, no oversized art --- */
  .hero{ padding: 128px 0 56px; }
  .hero .lead{ margin-top:16px; }
  .hero .cta-row{ margin-top:26px; }
  .hero-badge-row{ margin-top:32px; padding-top:22px; gap:14px 20px; }
  .hero-badge{ font-size:13px; }
  .hero-art{ margin-top: 26px; }
  .hero-art img{ max-width: 400px; }

  /* --- Compact service cards: understand each service at a glance --- */
  .card{ padding: 26px 22px; }
  .card .icon-badge{ width:46px; height:46px; margin-bottom:16px; }
  .card .icon-badge svg{ width:22px; height:22px; }
  .card h3{ margin-bottom:8px; }
  .grid-3, .grid-2{ gap:16px; }

  /* Large bento tiles: cap height so they don't eat the screen */
  .tile-lg{ aspect-ratio: 16/11 !important; }
  .service-grid-lg, .service-grid-sm{ gap:14px; }
  .tile-lg .tile-caption{ padding: 20px 22px; }
  .tile-lg .tile-caption span{ font-size:17px; }

  /* --- Process: keep the compact pill row, never the giant flow --- */
  .process-mini{ gap:10px; }
  .process-flow{ /* legacy big flow, if present */ gap:14px; }

  /* --- Stats: 2-up instead of cramped single column --- */
  .stats, .stats.four{ grid-template-columns: 1fr 1fr; gap:24px 18px; }
  .stat b{ font-size: clamp(30px,9vw,40px); }
  .stat span{ font-size:12px; }

  /* --- Offer banners: smaller, punchier --- */
  .free-offer{ padding: 34px 22px; }
  .free-offer h2{ font-size: clamp(26px,7vw,34px); }
  .free-offer p{ font-size:15px; }
  .offer{ padding: 36px 24px; }

  /* --- Reviews: single clean column --- */
  .review-card{ padding: 24px 22px; }

  /* --- Before/After slider: fits a phone --- */
  .ba-slider{ aspect-ratio: 3/4; }

  /* --- Projects: single column, keep it scannable --- */
  .filter-tabs{ gap:8px; margin-bottom:32px; }
  .filter-tab{ padding:9px 16px; font-size:12.5px; }

  /* --- Meet-the-owner block: photo on top, tighter --- */
  .meet-zeke{ gap:24px; padding: 32px 22px !important; }
  .meet-zeke-quote{ font-size:18px; }

  /* --- Kill the scroll cue on mobile (thumb reaches nothing useful) --- */
  .hero-scroll-cue{ display:none; }

  /* --- Footer: breathing room --- */
  footer{ padding: 56px 0 110px; }  /* clear the sticky bar */
}

/* Extra-small phones */
@media (max-width: 400px){
  .hero-proof{ padding: 11px 15px; }
  .hero-proof b{ font-size:14px; }
  .stat b{ font-size: 34px; }
}

/* ============================================================
   Estimate funnel — qualifying form with multiple-choice cards
   ============================================================ */
.estimate-layout{ display:grid; grid-template-columns: 1.35fr .85fr; gap: 40px; align-items:start; }
@media (max-width: 900px){ .estimate-layout{ grid-template-columns: 1fr; gap:28px; } }

.estimate-form .q{ margin-bottom: 26px; }
.estimate-form .q > label.q-label,
.estimate-form .q .q-label{ display:block; font-size:14px; font-weight:800; color: var(--navy); margin-bottom:10px; }
.estimate-form .q small.q-hint{ font-weight:600; color: var(--text-muted); }

.choice-group{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.choice-group.one{ grid-template-columns: 1fr; }
.choice{ position:relative; }
.choice input{ position:absolute; inset:0; opacity:0; cursor:pointer; }
.choice label{
  display:flex; align-items:center; gap:10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px; font-weight:600; color: var(--navy);
  background: var(--off-white);
  cursor:pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  min-height: 52px;
}
.choice input:checked + label{
  border-color: var(--green);
  background: rgba(47,107,60,.09);
  box-shadow: inset 0 0 0 1px var(--green);
}
.choice input:focus-visible + label{ outline: 2px solid var(--green-light); outline-offset:2px; }
@media (max-width: 520px){ .choice-group{ grid-template-columns: 1fr; } }

.file-drop{
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 20px 16px;
  text-align:center;
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 14px; font-weight:600;
}
.file-drop input{ display:block; margin: 10px auto 0; font-size:13px; }

.estimate-side{
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 28px;
  color:#fff;
  position: sticky; top: 100px;
}
.estimate-side h3{ color:#fff; font-size:18px; margin-bottom:6px; }
.estimate-side .stars{ justify-content:flex-start; margin-bottom:14px; }
.estimate-side .stars svg{ width:16px; height:16px; }
.estimate-side .side-step{ display:flex; gap:12px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.estimate-side .side-step:last-child{ border-bottom:none; }
.estimate-side .side-step b{ width:24px; height:24px; border-radius:50%; background: var(--green); color:#fff; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.estimate-side .side-step span{ font-size:13.5px; color: rgba(255,255,255,.85); line-height:1.45; }
@media (max-width: 900px){ .estimate-side{ position:static; } }

/* ============================================================
   Estimate WIZARD — one question at a time, mobile-first
   ============================================================ */
.wiz-shell{ min-height: 100vh; min-height: 100svh; display:flex; flex-direction:column; background: linear-gradient(170deg, #fff 0%, var(--off-white) 100%); }
.wiz-top{
  display:flex; align-items:center; gap:16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  position: sticky; top:0; z-index:10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.wiz-top .wiz-brand img{ height: 32px; display:block; }
.wiz-progress{ flex:1; height:7px; border-radius:100px; background: var(--line); overflow:hidden; }
.wiz-progress i{ display:block; height:100%; width:0; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius:100px; transition: width .35s var(--ease); }
.wiz-call{ display:inline-flex; align-items:center; gap:7px; font-size:14px; font-weight:800; color: var(--navy); }
.wiz-call svg{ width:17px; height:17px; }

.wiz-body{ flex:1; display:flex; align-items:center; justify-content:center; padding: 30px 20px 90px; }
.wiz-inner{ width:100%; max-width: 560px; }
.wiz-count{ font-size:13px; font-weight:700; color: var(--text-muted); margin-bottom:10px; letter-spacing:.02em; }

.wiz-step{ display:none; }
.wiz-step.active{ display:block; animation: wizin .32s var(--ease); }
@keyframes wizin{ from{ opacity:0; transform: translateY(12px);} to{ opacity:1; transform:none;} }

.wiz-q{ font-size: clamp(25px, 6.5vw, 36px); font-weight:800; color: var(--navy); letter-spacing:-.02em; line-height:1.14; margin-bottom: 8px; }
.wiz-sub{ font-size:15px; color: var(--text-muted); margin-bottom: 24px; }

.wiz-choices{ display:grid; gap:12px; }
.wiz-choices.two{ grid-template-columns: 1fr 1fr; }
.wiz-opt{ position:relative; }
.wiz-opt input{ position:absolute; inset:0; opacity:0; cursor:pointer; }
.wiz-opt label{
  display:flex; align-items:center; gap:12px;
  padding: 18px 20px; min-height: 62px;
  border: 1.5px solid var(--line); border-radius: 14px; background:#fff;
  font-size: 16px; font-weight:700; color: var(--navy); cursor:pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.wiz-opt label:hover{ border-color: var(--green); }
.wiz-opt input:checked + label{ border-color: var(--green); box-shadow: inset 0 0 0 2px var(--green); }
.wiz-opt label::before{
  content:""; width:22px; height:22px; border-radius:50%; border:2px solid var(--line);
  flex-shrink:0; transition: all .15s ease;
}
.wiz-opt input:checked + label::before{ border-color: var(--green); background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }

.wiz-fields{ display:grid; gap:16px; }
.wiz-field label{ font-size:13px; font-weight:700; color: var(--navy); display:block; margin-bottom:7px; }
.wiz-field input{ width:100%; border:1.5px solid var(--line); border-radius:12px; padding: 16px; font-size:16px; font-family:inherit; background:#fff; color:var(--text-dark); }
.wiz-field input:focus{ outline:none; border-color: var(--green); }

.wiz-file{ border:1.5px dashed var(--line); border-radius:14px; padding: 28px 20px; text-align:center; background:#fff; color: var(--text-muted); font-weight:600; font-size:14.5px; }
.wiz-file input{ display:block; margin: 12px auto 0; font-size:13px; }

.wiz-nav{ margin-top: 26px; display:flex; gap:12px; }
.wiz-nav .btn{ flex:1; }
.wiz-back{ background:transparent; border:1.5px solid var(--line); color: var(--navy); }
.wiz-back:hover{ border-color: var(--navy); }
.wiz-reassure{ margin-top:20px; font-size:13px; color: var(--text-muted); display:flex; align-items:center; justify-content:center; gap:8px; }
.wiz-reassure svg{ width:15px; height:15px; color: var(--green); }

/* Thank-you page steps */
.next-steps{ max-width: 640px; margin: 0 auto; }
.next-step{ display:flex; gap:18px; padding: 20px 0; border-bottom: 1px solid var(--line); text-align:left; }
.next-step:last-child{ border-bottom:none; }
.next-step b{ width:38px; height:38px; border-radius:50%; background: var(--green); color:#fff; font-size:16px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.next-step h3{ font-size:17px; margin-bottom:4px; }
.next-step p{ color: var(--text-muted); font-size:14.5px; }

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.trust-strip .wrap{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item svg{ width:26px; height:26px; color: var(--green); flex-shrink:0; }
.trust-item div{ font-size: 13.5px; font-weight:700; color: var(--navy); line-height:1.25; }
.trust-item span{ display:block; font-size:12px; font-weight:500; color: var(--text-muted); margin-top:2px; }
@media (max-width: 900px){
  .trust-strip .wrap{ grid-template-columns: repeat(2,1fr); }
}

/* ---------- Generic sections ---------- */
.section{ padding: 128px 0; }
.section.tight{ padding: 84px 0; }
.section.navy{ background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%); color:#fff; }
.section.navy h2, .section.navy h3{ color:#fff; }
.section.off{ background: var(--off-white); }
@media (max-width: 900px){
  .section{ padding: 88px 0; }
  .section.tight{ padding: 64px 0; }
}

/* ---------- Staggered reveal for grids ---------- */
.grid-3 .reveal:nth-child(2), .grid-2 .reveal:nth-child(2), .ladder-next .reveal:nth-child(2){ transition-delay: .08s; }
.grid-3 .reveal:nth-child(3){ transition-delay: .16s; }
.service-grid-sm .reveal:nth-child(2){ transition-delay: .06s; }
.service-grid-sm .reveal:nth-child(3){ transition-delay: .12s; }
.service-grid-sm .reveal:nth-child(4){ transition-delay: .18s; }
.process-flow .reveal:nth-child(3){ transition-delay: .08s; }
.process-flow .reveal:nth-child(5){ transition-delay: .16s; }
.process-flow .reveal:nth-child(7){ transition-delay: .24s; }
.process-flow .reveal:nth-child(9){ transition-delay: .32s; }

/* ---------- Two-tier hero headline (clarity, then emotion) ---------- */
.h1-clear, .h1-emotion{ display:block; }
.h1-clear{
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: rgba(255,255,255,.86);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.h1-emotion{ font-size: clamp(40px, 6vw, 76px); line-height:1.05; }

/* ---------- Guarantee cards ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

.card{
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s ease;
}
.card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card::before{
  content:"";
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,0%), rgba(47,107,60,.10), transparent 60%);
  opacity:0; transition: opacity .4s ease;
}
.card:hover::before{ opacity:1; }
.card > *{ position:relative; z-index:1; }
.card .icon-badge{
  width:56px; height:56px;
  border-radius: 14px;
  background: rgba(47,107,60,.1);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  transition: transform .45s var(--ease-spring), background .3s ease;
}
.card:hover .icon-badge{ transform: scale(1.08) rotate(-4deg); background: rgba(47,107,60,.16); }
.card .icon-badge svg{ width:26px; height:26px; color: var(--green); }
.card h3{ margin-bottom: 12px; }
.card p{ color: var(--text-muted); font-size: 15px; line-height:1.6; }

.card-dark{
  position: relative;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 38px 32px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card-dark:hover{ transform: translateY(-8px); box-shadow: var(--shadow-dark); }
.card-dark::before{
  content:"";
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,0%), rgba(255,255,255,.08), transparent 60%);
  opacity:0; transition: opacity .4s ease;
}
.card-dark:hover::before{ opacity:1; }
.card-dark > *{ position:relative; z-index:1; }
.card-dark .icon-badge{ background: rgba(255,255,255,.1); transition: transform .45s var(--ease-spring), background .3s ease; }
.card-dark:hover .icon-badge{ transform: scale(1.08) rotate(-4deg); background: rgba(255,255,255,.16); }
.card-dark .icon-badge svg{ color: var(--green-light); }
.card-dark h3{ color:#fff; }
.card-dark p{ color: rgba(255,255,255,.68); font-size:15px; line-height:1.6; }

/* ---------- Glass surface (premium overlay cards) ---------- */
.glass{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

/* ---------- Offer banner ---------- */
.offer{
  background: linear-gradient(120deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 28px;
  padding: 64px 56px;
  color:#fff;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items:center;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.offer::after{
  content:"";
  position:absolute; left:-6%; bottom:-40%;
  width:340px; height:340px;
  border-radius:50%;
  background: rgba(255,255,255,.08);
}
.offer h2{ color:#fff; margin-bottom:14px; }
.offer p{ color: rgba(255,255,255,.9); font-size:16.5px; max-width:520px; }
.offer-right{ text-align:right; }
.offer .btn-outline-light{ border-color:#fff; }
.offer .btn-block{ text-align:center; }
@media (max-width: 900px){
  .offer{ grid-template-columns:1fr; padding: 44px 30px; text-align:center; }
  .offer p{ margin: 0 auto; }
  .offer-right{ text-align:center; }
}

/* ---------- Proof bar (standalone, service landing pages) ---------- */
.proof-bar{ background: var(--off-white); border-bottom: 1px solid var(--line); padding: 20px 0; }
.proof-bar .proof-strip{ margin-top: 0; }

/* ---------- Proof strip (under free offer) ---------- */
.proof-strip{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap: 10px 14px;
  margin-top: 30px;
  text-align:center;
}
.proof-strip span{ font-size:13.5px; font-weight:700; color: var(--navy); letter-spacing:.01em; }
.proof-strip span:nth-child(even){ color: var(--gray); }  /* the dividers */

/* ---------- Scarcity note ---------- */
.scarcity-note{
  max-width: 720px;
  margin: -20px auto 48px;
  padding: 18px 26px;
  background: rgba(47,107,60,.08);
  border: 1px solid rgba(47,107,60,.22);
  border-radius: 14px;
  text-align:center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  line-height:1.55;
}

.partner-note{
  max-width: 760px;
  margin: -20px auto 48px;
  padding: 20px 26px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: 12px;
  text-align:left;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height:1.6;
}
.partner-note b{ color: var(--navy); }

/* ---------- Value-ladder next-step strip ---------- */
.ladder-next{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ladder-card{
  position: relative;
  display:flex; flex-direction:column; gap:10px;
  padding: 28px 30px;
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ladder-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ladder-card::before{
  content:"";
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(320px circle at var(--mx,50%) var(--my,0%), rgba(47,107,60,.09), transparent 60%);
  opacity:0; transition: opacity .4s ease;
}
.ladder-card:hover::before{ opacity:1; }
.ladder-card > *{ position:relative; z-index:1; }
.ladder-card .eyebrow{ margin-bottom:0; }
.ladder-card h3{ font-size:19px; }
.ladder-card p{ font-size:14.5px; color: var(--text-muted); }
.ladder-card .ladder-link{
  display:inline-flex; align-items:center; gap:6px;
  color: var(--green); font-weight:700; font-size:14.5px; margin-top:4px;
}
.ladder-card .ladder-link svg{ width:16px; height:16px; transition: transform .2s ease; }
.ladder-card:hover .ladder-link svg{ transform: translateX(4px); }
@media (max-width: 780px){ .ladder-next{ grid-template-columns:1fr; } }

/* ---------- Named process flow ---------- */
.process-flow{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap: 6px;
  flex-wrap: wrap;
}
.process-step{
  flex: 1 1 160px;
  max-width: 190px;
  text-align:center;
}
.process-num{
  width:40px; height:40px;
  border-radius:50%;
  background: var(--navy);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:15px;
  margin: 0 auto 16px;
}
.process-step h3{ font-size:16.5px; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color: var(--text-muted); line-height:1.5; }
.process-arrow{
  display:flex; align-items:center; justify-content:center;
  padding-top: 10px;
  color: var(--green);
  flex: 0 0 auto;
}
.process-arrow svg{ width:20px; height:20px; }
@media (max-width: 900px){
  .process-flow{ flex-direction:column; align-items:center; gap: 18px; }
  .process-step{ max-width: 320px; }
  .process-arrow{ transform: rotate(90deg); padding-top:0; }
}

/* ---------- Services list rows ---------- */
.service-row{
  display:grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child{ border-bottom: 1px solid var(--line); }
.service-row .num{ font-size:14px; font-weight:800; color: var(--green); }
.service-row h3{ margin-bottom: 8px; }
.service-row p{ color: var(--text-muted); font-size:15px; max-width: 640px; }

/* ---------- Process steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step{ position:relative; padding-top: 18px; }
.step::before{
  counter-increment: step;
  content: counter(step);
  display:flex; align-items:center; justify-content:center;
  width: 44px; height:44px;
  border-radius: 50%;
  background: var(--navy);
  color:#fff;
  font-weight:800; font-size:16px;
  margin-bottom: 18px;
}
.step h3{ font-size:18px; margin-bottom:8px; }
.step p{ color: var(--text-muted); font-size:14px; }
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }

/* ---------- Split section (image/graphic + text) ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.split.reverse{ direction: rtl; }
.split.reverse > *{ direction: ltr; }
.split-art{
  background: var(--off-white);
  border-radius: 24px;
  padding: 50px;
  display:flex; align-items:center; justify-content:center;
  min-height: 360px;
  border: 1px solid var(--line);
}
.split-art img{ max-width: 260px; opacity: .92; }
.split-art.photo{
  padding: 0;
  overflow: hidden;
  min-height: 460px;
  background: var(--navy);
}
.split-art.photo img{
  max-width: 100%;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: 1;
  border-radius: 24px;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; gap: 32px; }
  .split.reverse{ direction: ltr; }
  .split-art.photo{ min-height: 340px; }
  .split-art.photo img{ min-height: 340px; }
}

/* ---------- Meet Zeke ---------- */
.meet-zeke{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items:center;
}
.meet-zeke-photo{
  border-radius: 24px;
  overflow:hidden;
  box-shadow: 0 30px 60px rgba(15,39,71,.25);
}
.meet-zeke-photo img{ width:100%; display:block; aspect-ratio: 4/5; object-fit:cover; }
.section.navy .meet-zeke-photo{ box-shadow: var(--shadow-dark); }
.section.navy .meet-zeke-quote{ color: rgba(255,255,255,.94); }
.offer .proof-strip span{ color: rgba(255,255,255,.8); }
.offer .proof-strip span:nth-child(odd){ color:#fff; }
.meet-zeke-quote{
  font-size: clamp(19px,2vw,23px);
  color: var(--navy);
  font-weight: 600;
  line-height:1.5;
  margin: 22px 0;
}
@media (max-width: 900px){
  .meet-zeke{ grid-template-columns:1fr; gap:32px; }
}

/* ---------- Bullet list w/ check ---------- */
.check-list{ display:flex; flex-direction:column; gap:16px; margin-top: 26px; }
.check-item{ display:flex; align-items:flex-start; gap:12px; }
.check-item svg{ width:20px; height:20px; color: var(--green); flex-shrink:0; margin-top:2px; }
.check-item span{ font-size:15.5px; color: var(--text-dark); }

/* ---------- Stats ---------- */
.stats{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; text-align:center; }
.stats.four{ grid-template-columns: repeat(4,1fr); }
.stat b{
  display:block; font-size: clamp(34px,4vw,56px); font-weight:800; letter-spacing:-.02em;
  background: linear-gradient(160deg, var(--navy) 20%, var(--green) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span{ display:block; margin-top:8px; font-size:13.5px; color: var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
@media (max-width: 700px){
  .stats{ grid-template-columns: 1fr; gap: 36px; }
  .stats.four{ grid-template-columns: repeat(2,1fr); gap: 32px; }
}
@media (max-width: 480px){ .stats.four{ grid-template-columns: 1fr; } }

/* ---------- Gallery placeholder tiles ---------- */
.gallery{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tile{
  aspect-ratio: 4/3;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.06);
  position:relative;
  overflow:hidden;
}
.tile svg{ width:38px; height:38px; opacity:.85; }
.tile span{ font-size:13px; font-weight:600; letter-spacing:.02em; }
.tile.photo{ padding:0; }
.tile.photo img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.tile.photo .tile-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(10,20,35,.88) 0%, rgba(10,20,35,0) 100%);
  z-index:2;
}
.tile.photo .tile-caption span{ font-size:12.5px; }
@media (max-width: 900px){ .gallery{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .gallery{ grid-template-columns: 1fr; } }

/* ---------- Reviews page ---------- */
.review-hero-card{
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
  text-align:center;
}
.stars{ display:flex; gap:6px; justify-content:center; margin-bottom:22px; }
.stars svg{ width:26px; height:26px; color: #E8A33D; }

/* ---------- Form ---------- */
.form-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 0 24px 60px rgba(15,39,71,.08);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13px; font-weight:700; color: var(--navy); }
.field input, .field select, .field textarea{
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--green); background:#fff;
}
.field textarea{ resize: vertical; min-height: 110px; }
@media (max-width: 700px){ .form-row{ grid-template-columns: 1fr; } }

.contact-info-card{
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px;
  color:#fff;
}
.contact-info-card h3{ color:#fff; margin-bottom: 6px; }
.contact-line{ display:flex; align-items:center; gap:14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-line:last-child{ border-bottom:none; }
.contact-line svg{ width:20px; height:20px; color: var(--green-light); flex-shrink:0; }
.contact-line a, .contact-line span{ font-size: 15px; color: rgba(255,255,255,.9); }
.contact-line small{ display:block; color: rgba(255,255,255,.5); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:3px; }

/* ---------- Desktop floating call button ---------- */
.call-fab{
  position: fixed;
  bottom: 30px; right: 30px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 32px rgba(47,107,60,.42);
  z-index: 950;
  transition: transform .3s var(--ease), background .25s ease, box-shadow .25s ease;
}
.call-fab:hover{ background: var(--green-light); transform: scale(1.07); box-shadow: 0 18px 38px rgba(47,107,60,.5); }
.call-fab svg{ width: 26px; height: 26px; }
@media (max-width: 720px){ .call-fab{ display:none; } }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{
  display:none;
  position: fixed;
  bottom:0; left:0; right:0;
  z-index: 900;
  background: rgba(15,39,71,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(10,20,35,.28);
}
.mobile-cta a{ flex:1; text-align:center; padding: 15px 20px; }
@media (max-width: 720px){ .mobile-cta{ display:flex; } body{ padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); } }

/* ---------- Footer ---------- */
footer{ background: var(--navy-deep); color: rgba(255,255,255,.68); padding: 76px 0 32px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom: 18px; }
.footer-brand img{ height:38px; background:#fff; border-radius:8px; padding:4px; }
.footer-brand b{ color:#fff; font-size:16px; font-weight:800; }
footer p{ font-size:14px; line-height:1.7; max-width:280px; }
footer h4{ color:#fff; font-size:13px; letter-spacing:.08em; text-transform:uppercase; margin-bottom: 20px; }
footer ul li{ margin-bottom: 12px; }
footer ul a{ font-size:14.5px; transition: color .2s ease; }
footer ul a:hover{ color:#fff; }
.footer-bottom{
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- Fade in on scroll ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* ---------- Misc ---------- */
.badge-guarantee{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight:600;
  color:#fff;
}

/* ============================================================
   Condensed trust strip — replaces the repeated 5-step process
   + 3-card guarantee stack that used to live on every page.
   ============================================================ */
.trust-compact{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
}
.trust-compact-item{
  background:#fff;
  padding: 30px 28px;
  display:flex; align-items:flex-start; gap:16px;
}
.trust-compact-item svg{ width:26px; height:26px; color: var(--green); flex-shrink:0; margin-top:2px; }
.trust-compact-item h4{ font-size:15.5px; font-weight:800; color: var(--navy); margin-bottom:4px; letter-spacing:-0.01em; }
.trust-compact-item p{ font-size:13.5px; color: var(--text-muted); line-height:1.5; }
@media (max-width: 900px){ .trust-compact{ grid-template-columns: 1fr; } }

/* ---------- Compact process row (icon + label, no giant flow) ---------- */
.process-mini{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap: 8px;
}
.process-mini-step{
  display:flex; align-items:center; gap:10px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px 10px 12px;
}
.process-mini-step b{
  width:26px; height:26px; border-radius:50%;
  background: var(--navy); color:#fff;
  font-size:12px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.process-mini-step span{ font-size:13.5px; font-weight:600; color: var(--navy); white-space:nowrap; }
.process-mini-arrow{ color: var(--gray); flex-shrink:0; }
.process-mini-arrow svg{ width:16px; height:16px; }
@media (max-width: 700px){
  .process-mini{ flex-direction:column; align-items:stretch; }
  .process-mini-step{ width:100%; }
  .process-mini-arrow{ display:none; }
}

/* ============================================================
   Before / After slider
   ============================================================ */
.ba-slider{
  position:relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow:hidden;
  user-select:none;
  box-shadow: var(--shadow-md);
  touch-action: pan-y;
}
.ba-slider img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  pointer-events:none;
}
.ba-slider .ba-after{ z-index:1; }
.ba-slider .ba-before-wrap{
  position:absolute; inset:0; z-index:2;
  width: 50%;
  overflow:hidden;
  border-right: 2px solid #fff;
}
.ba-slider .ba-before-wrap img{ width: var(--ba-img-w, 100%); max-width:none; }
.ba-slider .ba-handle{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width:44px; height:44px;
  border-radius:50%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 20px rgba(10,20,35,.35);
  z-index:3;
  cursor: ew-resize;
}
.ba-slider .ba-handle svg{ width:18px; height:18px; color: var(--navy); }
.ba-slider .ba-range{
  position:absolute; inset:0;
  width:100%; height:100%;
  margin:0;
  opacity:0;
  cursor: ew-resize;
  z-index:4;
  -webkit-appearance:none;
  appearance:none;
}
.ba-tag{
  position:absolute; top:16px; z-index:3;
  padding: 6px 14px;
  border-radius: 100px;
  font-size:11.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:#fff;
}
.ba-tag.before{ left:16px; background: rgba(10,20,35,.72); }
.ba-tag.after{ right:16px; background: var(--green); }

/* ============================================================
   Projects: category filter tabs + project cards
   ============================================================ */
.filter-tabs{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  margin-bottom: 48px;
}
.filter-tab{
  background:#fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  cursor:pointer;
  transition: all .25s ease;
}
.filter-tab:hover{ border-color: var(--green); color: var(--navy); }
.filter-tab.active{ background: var(--navy); border-color: var(--navy); color:#fff; }

.project-card{
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.project-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card .project-photo{ position:relative; aspect-ratio: 4/3; overflow:hidden; }
.project-card .project-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.project-card:hover .project-photo img{ transform: scale(1.06); }
.project-card .project-cat{
  position:absolute; top:14px; left:14px; z-index:2;
  background: rgba(10,20,35,.75);
  color:#fff; font-size:11px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  padding: 6px 13px; border-radius: 100px;
}
.project-card .project-body{ padding: 22px 24px 26px; }
.project-card h3{ font-size:18px; margin-bottom:6px; }
.project-card .project-meta{ display:flex; gap:10px; align-items:center; margin-bottom:10px; }
.project-card .project-meta svg{ width:14px; height:14px; color: var(--text-muted); }
.project-card .project-meta span{ font-size:12.5px; color: var(--text-muted); font-weight:600; }
.project-card p.project-desc{ font-size:14px; color: var(--text-muted); line-height:1.55; }
.project-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 900px){ .project-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .project-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   Reviews: review card + confident empty state
   ============================================================ */
.review-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars{ justify-content:flex-start; margin-bottom:16px; }
.review-card .stars svg{ width:18px; height:18px; }
.review-card p.review-text{ font-size:15px; color: var(--text-dark); line-height:1.6; margin-bottom:18px; }
.review-card .review-author{ display:flex; align-items:center; gap:12px; }
.review-card .review-avatar{
  width:40px; height:40px; border-radius:50%;
  background: linear-gradient(150deg, var(--navy) 0%, var(--green) 140%);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:15px; flex-shrink:0;
}
.review-card .review-author b{ display:block; font-size:14px; color: var(--navy); }
.review-card .review-author span{ display:block; font-size:12px; color: var(--text-muted); }

/* ============================================================
   Free offer banner (lead magnet)
   ============================================================ */
.free-offer{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 52px 44px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-dark);
}
.free-offer::after{
  content:"";
  position:absolute; right:-8%; top:-40%;
  width: 360px; height: 360px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(47,107,60,.4) 0%, rgba(47,107,60,0) 70%);
  pointer-events:none;
}
.free-offer > *{ position: relative; z-index: 1; }
.free-offer-tag{
  display:inline-block;
  background: var(--green);
  color:#fff;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 20px;
}
.free-offer h2{ color:#fff; font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 14px; }
.free-offer p{ color: rgba(255,255,255,.82); font-size: 16.5px; line-height: 1.6; max-width: 620px; margin: 0 auto 28px; }
.free-offer .cta-row{ margin-bottom: 20px; }
.free-offer .btn-outline-light{ border-color: rgba(255,255,255,.5); color:#fff; }
.free-offer-fine{ font-size: 13px !important; color: rgba(255,255,255,.55) !important; margin-bottom: 0 !important; }
@media (max-width: 600px){ .free-offer{ padding: 40px 24px; } }
.badge-guarantee svg{ width:16px; height:16px; color: var(--green-light); }
