:root {
  --ink: #15201b;
  --soft-ink: #304038;
  --muted: #66746d;
  --line: #dbe3df;
  --paper: #f6f8f5;
  --white: #ffffff;
  --green: #1f6a4a;
  --green-dark: #13422f;
  --leaf: #79a85a;
  --gold: #c9962f;
  --clay: #b76543;
  --sky: #4f87a2;
  --mist: #e8f0e7;
  --shadow: 0 22px 55px rgba(21, 32, 27, 0.14);
  --shadow-soft: 0 14px 34px rgba(21, 32, 27, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--green-dark);
  font-weight: 800;
}

img {
  max-width: 100%;
  display: block;
}

p,
li,
dd,
label,
input,
textarea,
select {
  font-size: 16px;
  line-height: 1.65;
}

p,
ul,
ol,
dl,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(21, 32, 27, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 34px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, #f3d98f 0 9%, transparent 10%),
    radial-gradient(circle at 50% 47%, var(--leaf) 0 31%, transparent 32%),
    linear-gradient(180deg, var(--green) 0 100%);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 950;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.site-nav a {
  color: var(--soft-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  padding: 12px 10px;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--mist);
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  padding: 10px 12px;
  cursor: pointer;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: var(--green-dark);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: rgba(31, 106, 74, 0.35);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--mist);
  color: var(--green-dark);
}

.button.dark {
  background: var(--ink);
}

.button.dark:hover,
.button.dark:focus {
  background: #26352e;
}

.hero {
  min-height: clamp(620px, calc(100vh - 78px), 760px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: #1d2a24;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 28, 23, 0.92) 0%, rgba(18, 28, 23, 0.72) 40%, rgba(18, 28, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(18, 28, 23, 0.82) 0%, rgba(18, 28, 23, 0.28) 48%, transparent 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(54px, 10vw, 110px) 0 clamp(34px, 7vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(310px, 0.44fr);
  gap: 28px;
  align-items: end;
}

.hero-copy {
  max-width: 810px;
}

.eyebrow {
  margin-bottom: 14px;
  color: #d4e8cb;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7.2vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 950;
}

.hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 24px;
}

.hero-panel {
  align-self: stretch;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel-list,
.quick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel-list li,
.quick-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.hero-panel-list li::before,
.quick-list li::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #18221d;
  font-size: 13px;
  font-weight: 950;
}

.hero-panel-note {
  padding: 13px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.trust-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(31, 106, 74, 0.14), transparent 38%),
    linear-gradient(180deg, #ffffff, #eef5ec);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(1050px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 78px) 0;
}

.page-hero .eyebrow {
  color: var(--green);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 6vw, 70px);
}

.page-hero .lead {
  max-width: 820px;
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.breadcrumbs {
  width: min(1050px, calc(100% - 34px));
  margin: 0 auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 6px;
  color: #a3aea8;
}

.breadcrumbs li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.section {
  padding: clamp(42px, 8vw, 82px) 0;
}

.section.white {
  background: var(--white);
}

.section.mist {
  background: var(--mist);
}

.wrap {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 34px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.content h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.section-heading p,
.content > p {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3.5vw, 28px);
  box-shadow: 0 12px 28px rgba(21, 32, 27, 0.06);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.service-lead {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 106, 74, 0.96), rgba(19, 66, 47, 0.96)),
    var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-lead h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1.02;
}

.service-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.service-lead .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-row {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.service-row:hover,
.service-row:focus {
  border-color: rgba(31, 106, 74, 0.45);
  transform: translateY(-1px);
}

.service-row strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.service-row span {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.card p {
  color: var(--soft-ink);
  margin-bottom: 16px;
}

.card a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft-ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(121, 168, 90, 0.18);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 6vw, 62px);
  align-items: start;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.process-step {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--green-dark);
  font-weight: 950;
}

.process-step h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.process-step p {
  margin: 0;
  color: var(--soft-ink);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.proof-panel {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.proof-panel h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  margin-bottom: 12px;
}

.proof-panel p {
  color: var(--soft-ink);
  margin-bottom: 18px;
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-point {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.proof-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proof-point strong {
  color: var(--ink);
  font-size: 18px;
}

.proof-point span {
  color: var(--soft-ink);
  line-height: 1.55;
}

.aside-panel {
  border-left: 4px solid var(--green);
  background: #fbfcfa;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(21, 32, 27, 0.08);
}

.aside-panel h2,
.aside-panel h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.aside-panel p,
.aside-panel li {
  color: var(--soft-ink);
}

.content {
  display: grid;
  gap: 22px;
}

.content h2 {
  margin-bottom: 0;
}

.content h3 {
  margin-bottom: 4px;
  font-size: 23px;
}

.content p {
  color: var(--soft-ink);
  margin-bottom: 0;
}

.content ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 22px;
  color: var(--soft-ink);
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.service-nav a {
  display: inline-flex;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--soft-ink);
  text-decoration: none;
  font-size: 14px;
}

.service-nav a:hover,
.service-nav a:focus {
  border-color: rgba(31, 106, 74, 0.5);
  color: var(--green-dark);
}

.contact-band {
  background:
    linear-gradient(120deg, rgba(31, 106, 74, 0.96), rgba(19, 66, 47, 0.96)),
    var(--green-dark);
  color: var(--white);
}

.contact-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-band h2 {
  margin-bottom: 9px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
  max-width: 760px;
}

.contact-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
}

.reviews-list {
  display: grid;
  gap: 14px;
}

.review-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.review-note p {
  margin: 0;
  color: var(--soft-ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-list details p {
  padding: 0 20px 20px;
  color: var(--soft-ink);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 48px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.contact-method {
  display: grid;
  gap: 4px;
}

.contact-method span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong,
.contact-method a {
  font-size: 19px;
  line-height: 1.35;
}

.form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
}

#quote-form {
  scroll-margin-top: 104px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c9d4cf;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(79, 135, 162, 0.25);
  border-color: var(--sky);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success {
  display: none;
  border: 1px solid #b5d8c7;
  background: #e4f4ed;
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 13px 15px;
  font-weight: 900;
}

.success.is-visible {
  display: block;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.site-footer {
  background: #111a16;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 58px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.45fr));
  gap: 28px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.footer-title {
  color: var(--white);
  font-size: 19px;
  font-weight: 950;
  margin-bottom: 10px;
}

.footer-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links h2 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 17px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(21, 32, 27, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 880px) {
  .grid.two,
  .grid.three,
  .grid.four,
  .split,
  .service-showcase,
  .service-list,
  .process-steps,
  .proof-layout,
  .contact-grid,
  .contact-band .wrap,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-band .wrap {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 68px;
    width: min(100% - 24px, 1180px);
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(18, 28, 23, 0.92), rgba(18, 28, 23, 0.72)),
      linear-gradient(0deg, rgba(18, 28, 23, 0.72), transparent 40%);
  }

  .hero-inner {
    width: min(100% - 26px, 1180px);
    padding: 34px 0 30px;
  }

  h1 {
    font-size: clamp(34px, 9.8vw, 40px);
    line-height: 0.98;
  }

  .hero .lead {
    font-size: 17px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

  .hero-panel {
    padding: 16px;
  }

  .hero-panel h2 {
    font-size: 20px;
  }

  .hero-panel-list {
    gap: 7px;
  }

  .hero-panel-list li {
    grid-template-columns: 25px 1fr;
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-panel-list li::before {
    width: 25px;
    height: 25px;
  }

  .hero-panel-note,
  .trust-strip {
    display: none;
  }

  .hero-actions,
  .cta-row,
  .contact-band .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 11px 9px;
    font-size: 14px;
  }

  .button,
  button.button {
    width: 100%;
  }

  .wrap,
  .narrow,
  .page-hero-inner,
  .breadcrumbs,
  .footer-inner,
  .footer-bottom-inner {
    width: min(100% - 26px, 1180px);
  }

  .mobile-call {
    position: fixed;
    left: 13px;
    right: 13px;
    bottom: 13px;
    z-index: 70;
    display: flex;
    justify-content: center;
    min-height: 48px;
    padding: 14px 18px;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.show-mobile-call .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body {
    padding-bottom: 74px;
  }
}
