:root {
  --green: #38ad27;
  --green-dark: #1c741f;
  --green-deep: #145f1a;
  --green-soft: #eef9e9;
  --blue: #00aeea;
  --blue-dark: #0e5fc9;
  --ink: #143126;
  --muted: #617067;
  --line: #dce7df;
  --white: #ffffff;
  --soft: #f7fbf8;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(20,49,38,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
figure { margin: 0; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 96px 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 999; background: #fff; padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(220,231,223,.85); }
.nav-wrap { height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 280px; }
.brand img { width: 92px; height: 62px; object-fit: contain; object-position: left center; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 14px; letter-spacing: -.01em; color: var(--ink); white-space: nowrap; }
.brand-copy > span { margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .04em; }
.site-nav { display: flex; gap: 26px; margin-left: auto; font-weight: 700; font-size: 14px; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--green-dark); }
.nav-cta { flex: 0 0 auto; }
.menu-button { display: none; margin-left: auto; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; font-weight: 800; border: 1px solid transparent; box-shadow: 0 10px 24px rgba(56,173,39,.20); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(56,173,39,.28); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }
.button-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: none; }
.button-white { background: #fff; color: var(--green-dark); box-shadow: none; }

.hero { overflow: hidden; background: radial-gradient(circle at 85% 5%, rgba(0,174,234,.12), transparent 28%), linear-gradient(180deg, #fff, #fbfefb); padding-bottom: 122px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; min-height: 600px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.eyebrow.light { color: #d8ffcb; }
.dot { width: 9px; height: 9px; border-radius: 999px; background: var(--blue); box-shadow: 0 0 0 5px rgba(0,174,234,.12); }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(48px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; margin: 18px 0 24px; max-width: 760px; }
h1 span { color: var(--green-dark); }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; margin-bottom: 18px; }
h3 { line-height: 1.2; }
.hero-lead { font-size: 19px; max-width: 660px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.trust-row { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--muted); font-size: 14px; font-weight: 800; }
.trust-row i { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

.hero-visual { min-height: 500px; position: relative; display: grid; place-items: center; }
.visual-shape { position: absolute; border-radius: 50%; }
.visual-shape-one { width: 470px; height: 470px; background: linear-gradient(145deg, rgba(56,173,39,.15), rgba(0,174,234,.12)); }
.visual-shape-two { width: 335px; height: 335px; border: 2px dashed rgba(14,95,201,.20); }
.hero-photo-frame { position: relative; z-index: 2; width: min(520px, 96%); aspect-ratio: 1.28 / 1; border-radius: 34px; overflow: hidden; border: 10px solid #fff; box-shadow: var(--shadow); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.floating-card { position: absolute; z-index: 5; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 15px 17px; display: flex; flex-direction: column; font-size: 13px; }
.floating-card strong { font-size: 14px; }
.floating-card span { color: var(--muted); }
.floating-card-top { top: 24px; right: -8px; }
.floating-card-bottom { bottom: 24px; left: -20px; flex-direction: row; gap: 12px; align-items: center; }
.floating-card-bottom div:last-child { display: flex; flex-direction: column; }
.mini-check { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-weight: 900; }

.trust-banner-wrap { margin-top: -76px; position: relative; z-index: 6; }
.trust-banner { border-radius: 34px; overflow: hidden; box-shadow: 0 22px 60px rgba(20,49,38,.13); background: #fff; }
.service-banner-grid { display: grid; grid-template-columns: repeat(5, 1fr); background: linear-gradient(110deg, #35b227, #17721c); color: #fff; padding: 28px 32px; }
.service-banner-item { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 84px; padding: 0 12px; }
.service-banner-icon { display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 auto; border-radius: 15px; background: #fff; color: var(--green-dark); font-size: 28px; font-weight: 900; }
.service-banner-item strong { font-size: 17px; line-height: 1.25; }
.benefit-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 28px 30px 30px; }
.benefit-strip-item { border-left: 4px solid #48b936; padding: 0 24px 0 22px; min-height: 82px; }
.benefit-strip-item strong { display: block; font-size: 17px; margin-bottom: 9px; }
.benefit-strip-item span { display: block; color: var(--muted); font-size: 14px; line-height: 1.4; }

.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p, .about-copy > p, .areas-grid p { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 225px; border: 1px solid var(--line); border-radius: 22px; padding: 30px 26px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; overflow: hidden; }
.service-card::before { content: ""; display: block; width: 36px; height: 5px; background: linear-gradient(90deg, var(--green), var(--blue)); border-radius: 999px; margin-bottom: 34px; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c5d8ca; }
.service-card.featured { background: var(--green-soft); border-color: #cfe9c5; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.service-tag { display: inline-block; margin-top: 18px; font-size: 11px; font-weight: 900; color: var(--green-dark); background: #fff; border-radius: 999px; padding: 7px 10px; }

.soft-section { background: var(--soft); }
.about-grid-simple { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.about-copy p { max-width: 600px; }
.about-points { display: grid; gap: 11px; margin: 28px 0 30px; }
.about-points span { color: #355846; font-weight: 750; }
.text-link { color: var(--green-dark); font-weight: 900; }
.text-link span { margin-left: 6px; }
.about-photo-card { position: relative; border-radius: 28px; overflow: hidden; min-height: 430px; box-shadow: var(--shadow); background: #dfeee4; }
.about-photo-card img { width: 100%; height: 430px; object-fit: cover; object-position: center; }
.about-photo-note { position: absolute; left: 24px; right: 24px; bottom: 24px; border-radius: 17px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); padding: 16px 18px; display: flex; flex-direction: column; box-shadow: 0 10px 35px rgba(20,49,38,.12); }
.about-photo-note strong { font-size: 16px; }
.about-photo-note span { color: var(--muted); font-size: 13px; }

.before-after-card { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 28px; padding: 16px; margin-bottom: 18px; }
.comparison-panel { position: relative; overflow: hidden; border-radius: 20px; aspect-ratio: 4 / 3; background: #e7eee9; }
.comparison-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.comparison-panel figcaption { position: absolute; left: 16px; top: 16px; background: rgba(20,49,38,.86); color: #fff; padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.results-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.result-card { position: relative; overflow: hidden; border-radius: 20px; aspect-ratio: .82 / 1; background: #eef4ef; }
.result-card img { width: 100%; height: 100%; object-fit: cover; }
.result-card figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); color: var(--ink); border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 850; }

.area-section { background: linear-gradient(135deg, var(--green-deep), #167b32 58%, #1f956f); color: #fff; }
.areas-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.areas-grid p { color: rgba(255,255,255,.82); max-width: 520px; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-list span { padding: 12px 15px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.10); border-radius: 999px; font-weight: 800; font-size: 14px; }

.quote-section { background: #fbfdfb; color: var(--ink); border-top: 1px solid #eef3ef; }
.quote-container { max-width: 1240px; }
.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.quote-intro { padding-top: 10px; }
.quote-intro h2 { max-width: 540px; margin: 14px 0 22px; }
.quote-intro > p { max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 34px; }
.quote-details { border-top: 1px solid var(--line); }
.quote-detail { display: flex; flex-direction: column; gap: 5px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.quote-detail span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.quote-detail strong { color: var(--ink); font-size: 16px; overflow-wrap: anywhere; }
.quote-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.quote-socials a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border: 1px solid #cfded3; border-radius: 999px; background: #fff; font-weight: 850; font-size: 13px; }
.quote-socials a:hover { border-color: #9fc5a4; color: var(--green-dark); }
.quote-form { background: #f6faf7; color: var(--ink); border: 1px solid #d7e4da; border-radius: 34px; padding: 38px 40px; box-shadow: 0 14px 45px rgba(20,49,38,.05); }
.form-row { display: grid; gap: 22px; }
.form-row[hidden] { display: none !important; }
.form-row.two { grid-template-columns: repeat(2, 1fr); }
.quote-form label { display: flex; flex-direction: column; gap: 9px; color: #294a3c; font-weight: 850; font-size: 14px; margin-bottom: 22px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #c7d9cb; background: #fff; color: var(--ink); border-radius: 15px; padding: 14px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form input, .quote-form select { min-height: 56px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(56,173,39,.09); }
.quote-form textarea { resize: vertical; min-height: 145px; }
.form-submit { width: 100%; border: 0; min-height: 58px; font-size: 17px; }
.form-note { color: var(--muted); font-size: 12px; text-align: center; margin: 15px 4px 0; }
.form-status { display: none; margin-top: 14px; border-radius: 12px; padding: 12px 14px; font-size: 13px; font-weight: 700; }
.form-status.show { display: block; background: #eaf8e5; color: #276d1a; }

.final-cta { padding: 40px 0 80px; }
.final-cta-inner { border-radius: 28px; padding: 42px 48px; background: linear-gradient(135deg, #23972a, #166b1d); color: #fff; display: flex; gap: 40px; align-items: center; justify-content: space-between; box-shadow: 0 16px 48px rgba(28,116,31,.18); }
.final-cta-inner span { display: block; color: #d9ffd0; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.final-cta-inner h2 { max-width: 720px; font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 0; }

.site-footer { background: #0b2119; color: #fff; padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 42px; }
.footer-brand img { width: 190px; height: 135px; object-fit: contain; object-position: left center; background: transparent; padding: 0; }
.footer-brand p { color: #aebfb7; max-width: 330px; margin-top: 18px; }
.footer-grid h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: #a6dc95; margin-bottom: 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid span { color: #cfddd6; font-size: 14px; overflow-wrap: anywhere; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #8fa49a; font-size: 12px; }
.mobile-action-bar { display: none; }

@media (max-width: 1060px) {
  .service-banner-grid { grid-template-columns: repeat(3, 1fr); row-gap: 14px; }
  .service-banner-item:nth-child(4), .service-banner-item:nth-child(5) { grid-column: span 1; }
  .benefit-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}

@media (max-width: 980px) {
  .site-nav, .nav-cta { display: none; }
  .menu-button { display: block; }
  .site-nav.open { position: absolute; top: 84px; left: 0; right: 0; display: flex; flex-direction: column; background: #fff; padding: 22px 20px 26px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .hero-grid, .about-grid-simple, .areas-grid, .quote-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 470px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid, .about-grid-simple, .quote-layout { gap: 42px; }
  .results-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 68px 0; }
  .nav-wrap { height: 72px; }
  .brand { min-width: 0; gap: 8px; }
  .brand img { width: 72px; height: 54px; object-fit: contain; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy > span { font-size: 10px; margin-top: 2px; }
  .site-nav.open { top: 72px; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero { padding-top: 58px; padding-bottom: 108px; }
  .hero-visual { min-height: 390px; }
  .hero-photo-frame { width: 94%; aspect-ratio: 1.16 / 1; border-width: 7px; border-radius: 26px; }
  .floating-card-top { top: 8px; right: -2px; }
  .floating-card-bottom { bottom: 8px; left: -2px; }
  .trust-row { flex-wrap: wrap; }
  .trust-banner-wrap { margin-top: -54px; }
  .trust-banner { border-radius: 24px; }
  .service-banner-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 16px; }
  .service-banner-item { justify-content: flex-start; min-height: 72px; padding: 0 6px; }
  .service-banner-item:last-child { grid-column: 1 / span 2; justify-content: center; }
  .service-banner-icon { width: 50px; height: 50px; border-radius: 13px; font-size: 23px; }
  .service-banner-item strong { font-size: 15px; }
  .benefit-strip-grid { grid-template-columns: 1fr; padding: 24px 20px; gap: 22px; }
  .benefit-strip-item { min-height: auto; padding-right: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 205px; }
  .about-photo-card, .about-photo-card img { min-height: 360px; height: 360px; }
  .before-after-card { grid-template-columns: 1fr; }
  .comparison-panel { aspect-ratio: 4 / 3; }
  .results-gallery { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 28px 20px; border-radius: 24px; }
  .quote-intro { padding-top: 0; }
  .final-cta { padding-bottom: 96px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / span 2; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar { position: fixed; z-index: 60; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); box-shadow: 0 -10px 35px rgba(20,49,38,.12); }
  .mobile-action-bar a { display: grid; place-items: center; min-height: 46px; font-weight: 900; font-size: 14px; border-radius: 999px; }
  .mobile-action-bar a:first-child { color: var(--green-dark); }
  .mobile-action-bar a:last-child { background: var(--green); color: #fff; }
}

@media (max-width: 480px) {
  .brand img { width: 64px; height: 50px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy > span { font-size: 9px; }
  h1 { font-size: 43px; }
  .hero-actions .button { width: 100%; }
  .floating-card { padding: 11px 12px; }
  .floating-card strong { font-size: 12px; }
  .floating-card span { font-size: 11px; }
  .results-gallery { grid-template-columns: 1fr; }
  .result-card { aspect-ratio: 1 / .92; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Revision 3: stronger header/hero treatment inspired by the provided reference */
.site-header {
  background: rgba(255,255,255,.98);
  border-bottom: 0;
  box-shadow: 0 8px 30px rgba(20,49,38,.06);
}
.nav-wrap { height: 92px; gap: 22px; }
.brand { min-width: 260px; }
.brand img { width: 84px; height: 60px; }
.site-nav { gap: 22px; font-size: 13px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .2s ease;
}
.nav-phone:hover { background: var(--green-soft); }
.nav-phone-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dfff45;
  color: #244a1f;
  font-size: 16px;
  font-weight: 900;
}
.nav-phone > span:last-child { display: flex; flex-direction: column; line-height: 1.08; }
.nav-phone small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.nav-phone strong { margin-top: 3px; font-size: 12px; white-space: nowrap; }
.nav-cta {
  background: #dfff45;
  color: #19391f;
  box-shadow: 0 9px 22px rgba(108,160,38,.16);
}
.nav-cta:hover { box-shadow: 0 12px 26px rgba(108,160,38,.22); }

.hero-showcase {
  padding: 24px 0 120px;
  background: linear-gradient(180deg, #fff 0%, #fbfefb 100%);
  overflow: hidden;
}
.hero-stage {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #dce8df;
  box-shadow: 0 24px 70px rgba(20,49,38,.13);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,39,27,.14) 0%, rgba(10,39,27,.04) 34%, rgba(10,39,27,0) 58%);
  pointer-events: none;
}
.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.hero-overlay-card {
  position: absolute;
  z-index: 3;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, calc(100% - 110px));
  padding: 44px 42px 38px;
  border-radius: 30px;
  background: rgba(250,254,249,.96);
  box-shadow: 0 20px 55px rgba(20,49,38,.16);
  backdrop-filter: blur(8px);
}
.hero-overlay-card h1 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: .98;
  margin: 15px 0 20px;
  max-width: 520px;
}
.hero-overlay-card .hero-lead { font-size: 17px; line-height: 1.65; max-width: 500px; }
.hero-overlay-card .hero-actions { margin-top: 25px; }
.hero-overlay-card .trust-row { gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-overlay-card .trust-row span { display: inline-flex; align-items: center; gap: 7px; color: #52665a; }
.hero-overlay-card .trust-row b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
}
.hero-mini-card {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 38px rgba(20,49,38,.18);
}
.hero-mini-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
}
.hero-mini-card > div:last-child { display: flex; flex-direction: column; }
.hero-mini-card strong { font-size: 13px; }
.hero-mini-card span { color: var(--muted); font-size: 11px; }

/* Required contact consent */
.quote-form .consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  margin: -2px 0 22px;
  padding: 15px 16px;
  border: 1px solid #d4e2d7;
  border-radius: 15px;
  background: #fff;
  color: #4c6156;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}
.quote-form .consent-check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--green-dark);
  box-shadow: none;
}
.quote-form .consent-check input:focus { box-shadow: 0 0 0 3px rgba(56,173,39,.12); }

@media (max-width: 1120px) {
  .nav-phone { display: none; }
  .site-nav { gap: 18px; }
  .hero-stage { min-height: 590px; }
}

@media (max-width: 980px) {
  .nav-wrap { height: 82px; }
  .site-nav.open { top: 82px; }
  .hero-showcase { padding-top: 18px; }
  .hero-stage { min-height: 620px; }
  .hero-overlay-card { left: 28px; width: min(560px, calc(100% - 56px)); }
}

@media (max-width: 720px) {
  .nav-wrap { height: 74px; }
  .site-nav.open { top: 74px; }
  .hero-showcase { padding: 12px 0 100px; }
  .hero-stage { min-height: 690px; border-radius: 24px; }
  .hero-stage-image { height: 50%; object-position: 64% center; }
  .hero-stage::after { display: none; }
  .hero-overlay-card {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 18px;
    width: auto;
    transform: none;
    padding: 28px 24px 24px;
    border-radius: 22px;
  }
  .hero-overlay-card h1 { font-size: 42px; }
  .hero-overlay-card .hero-lead { font-size: 15px; }
  .hero-mini-card { display: none; }
}

@media (max-width: 480px) {
  .brand { gap: 6px; }
  .brand img { width: 58px; height: 46px; }
  .brand-copy strong { font-size: 10.5px; }
  .brand-copy > span { font-size: 8.5px; }
  .hero-stage { min-height: 720px; }
  .hero-overlay-card { left: 12px; right: 12px; bottom: 12px; padding: 25px 20px 22px; }
  .hero-overlay-card h1 { font-size: 38px; }
  .hero-overlay-card .hero-actions .button { width: 100%; }
  .hero-overlay-card .trust-row { gap: 11px; }
  .hero-overlay-card .trust-row span { font-size: 12px; }
}


/* Revision 5: exact header treatment + hero framing + required consent cue */
.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(20,49,38,.05);
}
.site-header .nav-wrap {
  width: min(1800px, calc(100% - 96px));
  height: 132px;
  gap: 34px;
}
.site-header .brand {
  min-width: 500px;
  gap: 28px;
}
.site-header .brand img {
  width: 120px;
  height: 92px;
}
.site-header .brand-copy strong {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.site-header .brand-copy > span {
  margin-top: 8px;
  font-size: 16px;
  letter-spacing: .06em;
}
.site-header .site-nav {
  gap: 46px;
  margin-left: auto;
  font-size: 21px;
  font-weight: 800;
  white-space: nowrap;
}
.site-header .nav-cta {
  min-height: 70px;
  padding: 0 34px;
  margin-left: 8px;
  background: linear-gradient(135deg, #35b52a, #17751d);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 13px 28px rgba(35,151,42,.18);
}
.site-header .nav-cta:hover {
  box-shadow: 0 16px 32px rgba(35,151,42,.25);
}

.hero-stage-image {
  object-position: 68% center;
  transform: scale(1.055) translateX(2.4%);
  transform-origin: center;
}

.quote-form .consent-check .consent-asterisk {
  color: #d93025;
  font-weight: 400;
  margin-left: 3px;
}

@media (max-width: 1500px) {
  .site-header .nav-wrap {
    width: min(1360px, calc(100% - 56px));
    height: 104px;
    gap: 24px;
  }
  .site-header .brand {
    min-width: 350px;
    gap: 16px;
  }
  .site-header .brand img { width: 92px; height: 70px; }
  .site-header .brand-copy strong { font-size: 18px; }
  .site-header .brand-copy > span { font-size: 13px; margin-top: 5px; }
  .site-header .site-nav { gap: 28px; font-size: 16px; }
  .site-header .nav-cta { min-height: 54px; padding: 0 24px; font-size: 16px; }
}

@media (max-width: 1100px) {
  .site-header .brand { min-width: 300px; }
  .site-header .site-nav { gap: 20px; font-size: 14px; }
  .site-header .nav-cta { padding: 0 20px; font-size: 14px; }
}

@media (max-width: 980px) {
  .site-header .nav-wrap {
    width: min(100% - 40px, 1160px);
    height: 84px;
  }
  .site-header .brand { min-width: 0; gap: 12px; }
  .site-header .brand img { width: 82px; height: 60px; }
  .site-header .brand-copy strong { font-size: 14px; }
  .site-header .brand-copy > span { font-size: 11px; margin-top: 4px; }
}

@media (max-width: 720px) {
  .site-header .nav-wrap { width: min(100% - 28px, 1160px); height: 72px; }
  .site-header .brand { gap: 8px; }
  .site-header .brand img { width: 68px; height: 52px; }
  .site-header .brand-copy strong { font-size: 11.5px; }
  .site-header .brand-copy > span { font-size: 9.5px; margin-top: 2px; }
  .hero-stage-image {
    transform: none;
    object-position: 66% center;
  }
}

/* Revision 7: required field indicators */
.quote-form .field-asterisk,
.quote-form .consent-asterisk {
  color: #d93025;
  font-weight: 400;
  margin-left: 3px;
}


/* Revision 9: keep required asterisks on the same line as field labels */
.quote-form .field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  width: fit-content;
}
.quote-form .field-label .field-asterisk {
  margin-left: 0;
}
