:root{
  --green-dark:#062f20;
  --green:#073f28;
  --green-mid:#0b5b31;
  --green-bright:#168a43;
  --orange:#f28a00;
  --orange-bright:#ffad24;
  --cream:#fff1da;
  --light:#f6fff8;
  --ink:#112018;
  --muted:#5e6f64;
  --shadow:0 18px 44px rgba(6,47,32,.15);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 15% 12%,rgba(22,138,67,.14),transparent 30%),
    radial-gradient(circle at 88% 24%,rgba(242,138,0,.16),transparent 28%),
    linear-gradient(135deg,#fafffb,#fff 50%,#fff7ec);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.top{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  gap:18px;
  padding:12px clamp(14px,4vw,42px);
  background:linear-gradient(90deg,var(--green-dark),var(--green-mid));
  color:white;
  border-bottom:6px solid var(--orange);
  box-shadow:0 12px 24px rgba(0,0,0,.18);
}
.brand{display:flex;align-items:center;gap:12px;min-width:0}
.brand img{
  width:58px;height:58px;object-fit:contain;background:white;
  border-radius:16px;border:3px solid var(--orange);padding:3px;
}
.brand b{display:block;font-size:22px;text-transform:uppercase;line-height:1}
.brand span{display:block;color:#ffd17c;font-weight:900;font-size:13px;margin-top:3px}
.nav{display:flex;gap:18px;margin-left:auto;font-weight:900}
.nav a:hover{color:#ffd17c}
.call{
  background:linear-gradient(90deg,var(--orange),var(--orange-bright));
  color:var(--green-dark);
  padding:13px 18px;
  border-radius:999px;
  font-weight:950;
}

.hero{
  min-height:calc(100vh - 88px);
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:clamp(20px,4vw,50px);
  align-items:center;
  padding:clamp(28px,5vw,72px) clamp(16px,5vw,70px);
  background:
    linear-gradient(90deg,rgba(255,255,255,.90),rgba(255,255,255,.66)),
    url("./assets/logo-round.png");
  background-repeat:no-repeat;
  background-position:92% 60%;
  background-size:min(560px,48vw);
  border-bottom:8px solid var(--orange);
}
.tag,.section-head span,.gallery-head span,.split span,.quote-copy span{
  display:inline-flex;
  background:linear-gradient(90deg,var(--orange),var(--orange-bright));
  color:var(--green-dark);
  padding:10px 14px;
  border-radius:999px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
}
.hero h1{
  max-width:860px;
  margin:18px 0 14px;
  font-size:clamp(43px,7vw,86px);
  line-height:.92;
  letter-spacing:-.055em;
  color:var(--green-dark);
  text-shadow:0 3px 0 rgba(242,138,0,.20);
}
.hero p{
  max-width:720px;
  font-size:clamp(18px,2vw,23px);
  line-height:1.48;
  color:#31443a;
  font-weight:750;
}
.hero-buttons,.form-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 20px;
  border-radius:999px;
  font-weight:950;
  border:0;
  cursor:pointer;
  font-size:16px;
}
.btn.orange{background:linear-gradient(90deg,var(--orange),var(--orange-bright));color:var(--green-dark)}
.btn.green{background:linear-gradient(90deg,var(--green-dark),var(--green-bright));color:white}
.btn.white{background:white;color:var(--green-dark);border:3px solid rgba(242,138,0,.42)}

.mini-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:26px;
  max-width:860px;
}
.mini-cards div{
  background:white;
  border:2px solid rgba(242,138,0,.30);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
}
.mini-cards b{display:block;color:var(--green-dark);font-size:19px}
.mini-cards span{display:block;margin-top:5px;color:var(--muted);font-weight:800;font-size:13px}

.hero-logo-wrap{
  background:white;
  border:7px solid var(--orange);
  border-radius:36px;
  padding:18px;
  box-shadow:var(--shadow);
}
.hero-logo-wrap img{border-radius:26px;margin:auto}

.quick-bar{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:var(--green-dark);
  border-bottom:6px solid var(--orange);
}
.quick-bar a{
  color:white;
  text-align:center;
  padding:18px 10px;
  font-weight:950;
  border-right:1px solid rgba(255,255,255,.12);
}
.quick-bar a:nth-child(even){background:var(--green-mid);color:#ffd17c}

.section,.gallery,.split,.quote-section{
  padding:clamp(46px,7vw,86px) clamp(16px,5vw,70px);
}
.section-head,.gallery-head{
  max-width:900px;
  margin-bottom:28px;
}
.section-head h2,.gallery-head h2,.split h2,.quote-copy h2{
  margin:16px 0 10px;
  font-size:clamp(34px,5vw,58px);
  line-height:1;
  letter-spacing:-.04em;
  color:var(--green-dark);
}
.section-head p,.split p,.quote-copy p{
  color:var(--muted);
  font-size:19px;
  line-height:1.55;
  font-weight:650;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  background:white;
  border-radius:34px;
  overflow:hidden;
  border:2px solid rgba(6,47,32,.08);
  box-shadow:var(--shadow);
}
.service-card div{padding:24px}
.service-card h3{margin:0 0 10px;color:var(--green-dark);font-size:28px}
.service-card p{margin:0;color:var(--muted);line-height:1.55;font-weight:650}

.gallery{
  background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
  color:white;
  border-top:8px solid var(--orange);
  border-bottom:8px solid var(--orange);
  position:relative;
}
.gallery::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("./assets/logo-round.png") no-repeat center/640px;
  opacity:.04;
}
.gallery>*{position:relative;z-index:1}
.gallery-head h2{color:white}
.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
}
.gallery-grid div{
  background:white;
  border-radius:26px;
  padding:10px;
  box-shadow:0 18px 44px rgba(0,0,0,.18);
}
.gallery-grid img{
  width:100%;height:100%;object-fit:cover;border-radius:18px;
}
.wide{grid-row:span 2}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
  background:white;
}
.split.reverse{background:var(--cream)}
.split img{
  border-radius:32px;
  border:5px solid var(--orange);
  box-shadow:var(--shadow);
}

.quote-section{
  background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
  border-top:8px solid var(--orange);
}
.quote-card{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
}
.quote-copy h2,.quote-copy p{color:white}
.quote-copy p{color:#dcffe7}
.quote-form{
  background:white;
  border:6px solid var(--orange);
  border-radius:34px;
  padding:26px;
  box-shadow:0 22px 55px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
}
.quote-form::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("./assets/logo-round.png") no-repeat center/430px;
  opacity:.045;
}
.quote-form>*{position:relative;z-index:1}
.form-brand{display:flex;gap:15px;align-items:center;margin-bottom:16px}
.form-brand img{
  width:82px;background:white;border-radius:20px;border:3px solid var(--orange);
}
.form-brand h3{margin:0;color:var(--green-dark);font-size:24px}
.form-brand p{margin:4px 0 0;color:var(--orange);font-weight:950}
.quote-form label{
  display:grid;
  gap:8px;
  margin-top:14px;
  font-weight:950;
  color:var(--green-dark);
}
.quote-form input,.quote-form select,.quote-form textarea{
  width:100%;
  padding:15px;
  border-radius:16px;
  border:2px solid rgba(6,47,32,.12);
  font-size:16px;
  font-weight:700;
  background:white;
}
.quote-form textarea{min-height:132px;resize:vertical}
.quote-form input:focus,.quote-form select:focus,.quote-form textarea:focus{
  outline:none;border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(242,138,0,.18);
}

footer{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  padding:26px clamp(16px,5vw,70px);
  background:var(--green-dark);
  color:white;
  border-top:8px solid var(--orange);
}
footer img{width:86px;background:white;border-radius:20px;border:3px solid var(--orange)}
footer h2{margin:0;font-size:28px}
footer p{margin:6px 0 0;color:#ffd17c;font-weight:850}
footer a{background:var(--orange);color:var(--green-dark);padding:14px 20px;border-radius:999px;font-weight:950}

@media(max-width:980px){
  .nav{display:none}
  .hero{grid-template-columns:1fr .82fr;background-size:420px}
  .quick-bar{grid-template-columns:repeat(2,1fr)}
  .service-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .quote-card{grid-template-columns:1fr}
  .hero h1{font-size:52px}
}
@media(max-width:720px){
  .top{gap:10px}
  .brand b{font-size:17px}
  .brand span{font-size:11px}
  .brand img{width:50px;height:50px}
  .hero{grid-template-columns:1fr;background-size:360px;background-position:center bottom}
  .hero-logo-wrap{max-width:360px}
  .mini-cards,.split,footer{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .wide{grid-row:span 1}
  .btn,.call,footer a{width:100%}
  footer{text-align:center;justify-items:center}
}
@media print{
  .top,.hero,.quick-bar,.section,.gallery,.split,footer,.quote-copy,.form-buttons{display:none!important}
  .quote-section{background:white;border:0;padding:0}
  .quote-card{display:block}
  .quote-form{box-shadow:none;border:3px solid #073f28;border-radius:0}
}


/* ===== V6 BUSINESS WEBSITE UPGRADES ===== */

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 80;
  display: none;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(6,47,32,.92);
  border: 2px solid var(--orange);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}

.sticky-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 950;
  background: linear-gradient(90deg,var(--orange),var(--orange-bright));
  color: var(--green-dark);
}

.storm-callout {
  margin: clamp(34px,5vw,62px) clamp(16px,5vw,70px);
  padding: clamp(24px,4vw,38px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(6,47,32,.96), rgba(11,91,49,.94)),
    url("./assets/logo-round.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 360px;
  border: 6px solid var(--orange);
  border-radius: 34px;
  color: white;
  box-shadow: var(--shadow);
}

.storm-callout span,
.service-area span {
  display: inline-flex;
  background: linear-gradient(90deg,var(--orange),var(--orange-bright));
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.storm-callout h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px,4vw,48px);
  line-height: 1;
}

.storm-callout p {
  margin: 0;
  color: #dcffe7;
  font-size: 18px;
  line-height: 1.5;
  max-width: 820px;
}

.storm-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 950;
  background: linear-gradient(90deg,var(--orange),var(--orange-bright));
  color: var(--green-dark);
  white-space: nowrap;
}

.before-after,
.reviews,
.service-area,
.faq {
  padding: clamp(46px,7vw,86px) clamp(16px,5vw,70px);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ba-card {
  background: white;
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(6,47,32,.08);
}

.ba-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 12px;
  border: 3px solid rgba(242,138,0,.30);
}

.ba-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ba-photo b {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--green-dark);
  color: white;
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.ba-card h3 {
  margin: 14px 8px 8px;
  color: var(--green-dark);
  font-size: 24px;
}

.ba-card p {
  margin: 0 8px 8px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.reviews {
  background:
    linear-gradient(135deg,var(--green-dark),var(--green-mid));
  color: white;
  border-top: 8px solid var(--orange);
  border-bottom: 8px solid var(--orange);
}

.reviews .section-head h2,
.reviews .section-head p {
  color: white;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.review-grid article {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.stars {
  color: #ffd17c;
  letter-spacing: 3px;
  font-size: 22px;
  margin-bottom: 12px;
}

.review-grid p {
  color: #dcffe7;
  line-height: 1.55;
  font-size: 18px;
}

.review-grid b {
  color: #ffd17c;
}

.service-area {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at right, rgba(242,138,0,.18), transparent 34%),
    linear-gradient(180deg,#fff,#f6fff8);
}

.service-area h2 {
  margin: 16px 0 10px;
  font-size: clamp(34px,5vw,58px);
  line-height: 1;
  color: var(--green-dark);
}

.service-area p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 650;
}

.area-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  background: white;
  border: 5px solid var(--orange);
  border-radius: 34px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.area-box img {
  border-radius: 24px;
  background: white;
}

.area-box ul {
  margin: 0;
  padding-left: 20px;
  font-weight: 850;
  color: #30463a;
}

.area-box li {
  margin: 9px 0;
}

.faq {
  background: #fff7ec;
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 1100px;
}

details {
  background: white;
  border: 2px solid rgba(6,47,32,.10);
  border-left: 8px solid var(--orange);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(6,47,32,.07);
}

summary {
  cursor: pointer;
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 950;
}

details p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

@media(max-width:980px) {
  .sticky-actions {
    display: flex;
  }

  .storm-callout,
  .service-area {
    grid-template-columns: 1fr;
  }

  .ba-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .area-box {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .sticky-actions {
    width: calc(100% - 24px);
  }

  .sticky-actions a {
    flex: 1;
    min-width: 0;
  }

  .storm-callout {
    margin-inline: 14px;
  }
}

@media print {
  .sticky-actions,
  .storm-callout,
  .before-after,
  .reviews,
  .service-area,
  .faq {
    display: none !important;
  }
}


/* ===== V8 GOOGLE READY PUBLIC VERSION ===== */

.seo-service-block {
  padding: clamp(46px,7vw,86px) clamp(16px,5vw,70px);
  background:
    radial-gradient(circle at left, rgba(242,138,0,.13), transparent 34%),
    linear-gradient(180deg,#fff,#f6fff8);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.seo-grid article {
  background: white;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(6,47,32,.08);
  border-top: 8px solid var(--orange);
}

.seo-grid h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 24px;
}

.seo-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

@media(max-width:980px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== V9 REAL PICTURES ADDED ===== */

.real-work {
  padding: clamp(46px,7vw,86px) clamp(16px,5vw,70px);
  background:
    radial-gradient(circle at right, rgba(242,138,0,.14), transparent 34%),
    linear-gradient(180deg,#fff,#f6fff8);
}

.real-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.real-photo-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid rgba(6,47,32,.08);
  box-shadow: var(--shadow);
}

.real-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--green-dark);
}

.real-photo-card div {
  padding: 20px;
}

.real-photo-card b {
  display: inline-flex;
  background: linear-gradient(90deg,var(--orange),var(--orange-bright));
  color: var(--green-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
}

.real-photo-card h3 {
  margin: 12px 0 8px;
  color: var(--green-dark);
  font-size: 24px;
}

.real-photo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.big-real {
  grid-row: span 2;
}

.big-real img {
  height: 610px;
}

.sign-card img {
  object-fit: contain;
  background: #5d655a;
  padding: 12px;
}

@media(max-width:980px) {
  .real-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .big-real {
    grid-row: span 1;
  }

  .big-real img {
    height: 300px;
  }
}

@media(max-width:720px) {
  .real-photo-grid {
    grid-template-columns: 1fr;
  }

  .real-photo-card img,
  .big-real img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media print {
  .real-work {
    display: none !important;
  }
}


/* ===== V10 ONLINE READY UPGRADES ===== */

.hidden-field {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.online-ready-section {
  padding: clamp(46px,7vw,86px) clamp(16px,5vw,70px);
  background:
    radial-gradient(circle at 15% 25%, rgba(242,138,0,.14), transparent 34%),
    linear-gradient(135deg,#fff,#f6fff8);
}

.online-ready-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.online-ready-grid article {
  background: white;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(6,47,32,.08);
  border-top: 8px solid var(--orange);
}

.online-ready-grid b {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,var(--green-dark),var(--green-bright));
  color: white;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 950;
}

.online-ready-grid h3 {
  margin: 14px 0 8px;
  color: var(--green-dark);
  font-size: 24px;
}

.online-ready-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.online-form-note {
  margin-bottom: 16px;
  background: #fff7ec;
  border-left: 8px solid var(--orange);
  border-radius: 20px;
  padding: 16px;
}

.online-form-note b {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.online-form-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.4;
}

.thank-you-page {
  min-height: calc(100vh - 90px);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: clamp(34px,8vw,90px) clamp(16px,5vw,70px);
  background:
    linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.74)),
    url("./assets/logo-round.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(680px,80vw);
}

.thank-you-page img {
  width: min(260px,70vw);
  border: 7px solid var(--orange);
  border-radius: 34px;
  background: white;
  padding: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.thank-you-page h1 {
  margin: 18px 0 12px;
  color: var(--green-dark);
  font-size: clamp(42px,7vw,82px);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 900px;
}

.thank-you-page p {
  max-width: 780px;
  color: #30463a;
  line-height: 1.55;
  font-size: 20px;
  font-weight: 750;
}

@media(max-width:980px) {
  .online-ready-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .online-ready-section,
  .online-form-note {
    display: none !important;
  }
}


/* ===== V12 LEAD MACHINE UPGRADES ===== */

.v12-sticky-leads {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: none;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(6,47,32,.94);
  border: 2px solid var(--orange);
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

.v12-sticky-leads a {
  min-width: 78px;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--orange),var(--orange-bright));
  color: var(--green-dark);
  font-weight: 950;
}

.v12-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  border-top: 7px solid var(--orange);
  border-bottom: 7px solid var(--orange);
}

.v12-trust-strip div {
  padding: 20px clamp(12px,2vw,24px);
  border-right: 1px solid rgba(255,255,255,.13);
  color: white;
}

.v12-trust-strip div:nth-child(even) { background: var(--green-mid); }
.v12-trust-strip b { display: block; color: #ffd17c; font-size: 21px; text-transform: uppercase; }
.v12-trust-strip span { display: block; margin-top: 5px; color: #dcffe7; font-weight: 750; line-height: 1.35; }

.v12-lead-banner {
  margin: clamp(34px,5vw,62px) clamp(16px,5vw,70px);
  padding: clamp(24px,4vw,40px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(6,47,32,.96), rgba(11,91,49,.94)),
    url("./assets/logo-round.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 420px;
  border: 7px solid var(--orange);
  border-radius: 36px;
  color: white;
  box-shadow: var(--shadow);
}

.v12-lead-banner span {
  display: inline-flex;
  background: linear-gradient(90deg,var(--orange),var(--orange-bright));
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.v12-lead-banner h2 { margin: 14px 0 10px; color: white; font-size: clamp(30px,4vw,50px); line-height: 1; }
.v12-lead-banner p { max-width: 820px; margin: 0; color: #dcffe7; line-height: 1.5; font-size: 18px; font-weight: 750; }
.v12-lead-actions { display: grid; gap: 10px; min-width: 220px; }

.quote-page-hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(20px,5vw,60px);
  align-items: center;
  padding: clamp(38px,7vw,92px) clamp(16px,5vw,70px);
  background:
    linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.76)),
    url("./assets/logo-round.png");
  background-repeat: no-repeat;
  background-position: 90% center;
  background-size: min(580px,48vw);
  border-bottom: 8px solid var(--orange);
}

.quote-page-hero h1 {
  max-width: 900px;
  margin: 18px 0 14px;
  font-size: clamp(44px,7vw,86px);
  line-height: .92;
  letter-spacing: -.055em;
  color: var(--green-dark);
  text-shadow: 0 3px 0 rgba(242,138,0,.20);
}

.quote-page-hero p { max-width: 760px; color: #31443a; font-size: clamp(18px,2vw,23px); line-height: 1.48; font-weight: 750; }
.quote-page-hero > img { background: white; border: 7px solid var(--orange); border-radius: 36px; padding: 18px; box-shadow: var(--shadow); }
.standalone-quote { border-top: 0; }

.v12-area-grid-section {
  padding: clamp(46px,7vw,86px) clamp(16px,5vw,70px);
  background: linear-gradient(180deg,#fff,#f6fff8);
}

.v12-area-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.v12-area-grid article {
  background: white;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(6,47,32,.08);
  border-top: 8px solid var(--orange);
}

.v12-area-grid h3 { margin: 0 0 10px; color: var(--green-dark); font-size: 24px; }
.v12-area-grid p { margin: 0; color: var(--muted); line-height: 1.55; font-weight: 650; }

@media(max-width:980px) {
  .v12-sticky-leads { display: flex; }
  .v12-trust-strip, .v12-lead-banner, .quote-page-hero { grid-template-columns: 1fr; }
  .v12-area-grid { grid-template-columns: repeat(2,1fr); }
  .quote-page-hero > img { max-width: 360px; }
}

@media(max-width:720px) {
  .v12-sticky-leads { width: calc(100% - 24px); }
  .v12-sticky-leads a { min-width: 0; flex: 1; }
  .v12-trust-strip, .v12-area-grid { grid-template-columns: 1fr; }
  .v12-lead-banner { margin-inline: 14px; }
  .v12-lead-actions { min-width: 0; }
  .quote-page-hero { min-height: auto; }
  .quote-page-hero > img { display: none; }
}

@media print {
  .v12-sticky-leads, .v12-trust-strip, .v12-lead-banner, .v12-area-grid-section { display: none !important; }
}
