:root {
  --ink: #192019;
  --muted: #5d675e;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dce2da;
  --green: #2e6a57;
  --green-bright: #719a8e;
  --green-pale: #eaf2ef;
  --deep: #10231d;
  --deep-2: #173028;
  --red: #c83a2e;
  --shadow: 0 20px 60px rgba(20, 32, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(200, 58, 46, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #afd0c6;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.5vw, 5.75rem);
  font-weight: 780;
}

h1 span {
  color: var(--green);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 750;
}

h3 {
  font-size: 1.35rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: #245545;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #bbc5ba;
}

.button-secondary:hover {
  border-color: var(--green);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.875rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 226, 218, 0.8);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: grid;
  min-height: 106px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand img {
  width: 96px;
  height: auto;
}

.brand span {
  max-width: 112px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  color: #39423a;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 94px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 8% 8%, rgba(113, 154, 142, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafbf8 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 100%;
  background: rgba(73, 110, 18, 0.12);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #465047;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.62;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--green);
  background: var(--green-pale);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 19, 13, 0.54));
  content: "";
  pointer-events: none;
}

.hero-image-frame > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 58% center;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(15, 28, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption strong {
  margin-bottom: 2px;
  font-size: 0.94rem;
}

.image-caption div > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.79rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: var(--red);
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.signal-pulse::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.signal-strip {
  color: var(--white);
  background: var(--deep);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 30px clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #afd0c6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.signal-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.signal-grid strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.signal-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.45;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  margin-bottom: 54px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-intro {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

.insight-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.insight-card.featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-18px);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 54px;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.featured .card-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.insight-card h3 {
  margin-bottom: 16px;
}

.insight-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.insight-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.solution-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(113, 154, 142, 0.2), transparent 24%),
    var(--deep);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.solution-copy {
  position: sticky;
  top: 126px;
}

.solution-copy h2 {
  max-width: 520px;
}

.solution-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #b5d8ce;
  font-weight: 760;
  text-decoration: none;
}

.solution-groups {
  display: grid;
  gap: 18px;
}

.service-group {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.service-group-accent {
  background: rgba(113, 154, 142, 0.13);
}

.group-label {
  margin-bottom: 14px;
  color: #afd0c6;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-group h3 {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.service-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding: 15px 0 15px 23px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.service-group li::before {
  position: absolute;
  top: 25px;
  left: 0;
  width: 9px;
  height: 2px;
  background: #afd0c6;
  content: "";
}

.service-group li:last-child {
  padding-bottom: 0;
}

.service-group strong {
  color: var(--white);
}

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

.continuity-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(330px, 1fr) minmax(250px, 0.6fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: stretch;
  padding: clamp(36px, 6vw, 72px);
  background:
    radial-gradient(circle at 0 0, rgba(176, 200, 192, 0.45), transparent 30%),
    var(--green-pale);
  border: 1px solid #cbdcd6;
  border-radius: var(--radius-lg);
}

.continuity-copy h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.6rem);
}

.continuity-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.continuity-details {
  display: grid;
  align-content: center;
}

.continuity-details article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid #c2d4ce;
}

.continuity-details article:last-child {
  border-bottom: 1px solid #c2d4ce;
}

.continuity-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border: 1px solid #c2d4ce;
  border-radius: 50%;
}

.continuity-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.continuity-details h3 {
  margin-bottom: 10px;
}

.continuity-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.warranty-panel {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: var(--white);
  background: var(--deep);
  border-radius: 20px;
}

.warranty-panel > span {
  margin-bottom: 20px;
  color: #afd0c6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.warranty-panel strong {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.warranty-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.sectors-section {
  background: var(--paper);
}

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

.sector-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sector-grid article:hover {
  box-shadow: 0 14px 34px rgba(20, 32, 24, 0.08);
  transform: translateY(-4px);
}

.sector-marker {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 48px;
  background: linear-gradient(90deg, var(--green), #9eb5ad);
  border-radius: 999px;
}

.sector-grid h3 {
  margin-bottom: 12px;
}

.sector-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-section {
  color: var(--white);
  background: var(--deep-2);
}

.process-heading {
  max-width: 740px;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.process-grid article {
  min-height: 310px;
  padding: 28px;
  background: var(--deep-2);
}

.process-grid article > span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 48px;
  place-items: center;
  color: #c2ddd5;
  background: transparent;
  border: 1px solid rgba(194, 221, 213, 0.44);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-grid h3 {
  min-height: 48px;
  margin-bottom: 14px;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

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

.trust-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(290px, 0.54fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 86px);
  padding: clamp(40px, 6vw, 72px);
  background: var(--green-pale);
  border: 1px solid #cbdcd6;
  border-radius: var(--radius-lg);
}

.trust-logo {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid #cadbd5;
  border-radius: 18px;
}

.trust-logo img {
  width: 142px;
  height: auto;
}

.trust-copy h2 {
  max-width: 690px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.trust-copy .trust-bio {
  max-width: 680px;
  margin-bottom: 0;
  color: #4c584d;
}

.trust-site-link {
  margin-top: 24px;
}

.trust-facts {
  display: grid;
  align-content: center;
}

.trust-facts div {
  padding: 17px 0;
  border-bottom: 1px solid #c2d4ce;
}

.trust-facts div:first-child {
  border-top: 1px solid #c2d4ce;
}

.trust-facts strong,
.trust-facts span {
  display: block;
}

.trust-facts strong {
  margin-bottom: 4px;
}

.trust-facts span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 126px;
  align-self: start;
}

.faq-heading p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #bdc7bc;
}

.faq-list details {
  border-bottom: 1px solid #bdc7bc;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 730;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green);
  border: 1px solid #acb8aa;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  padding: 0 54px 25px 0;
  color: var(--muted);
}

.contact-section {
  padding: 112px 0;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(73, 110, 18, 0.3), transparent 45%),
    var(--deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy {
  position: sticky;
  top: 126px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.direct-contact {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.direct-contact a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.direct-contact span,
.direct-contact strong {
  display: block;
}

.direct-contact span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 1.05rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
  padding: clamp(28px, 5vw, 50px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.84rem;
  font-weight: 740;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cfd7cd;
  border-radius: 10px;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #899188;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(73, 110, 18, 0.13);
  outline: none;
}

.button-submit {
  width: 100%;
  margin-top: 5px;
  color: var(--white);
  background: var(--green);
  border: 0;
  cursor: pointer;
}

.button-submit:hover {
  background: #245545;
}

.form-note {
  margin: 12px 4px 0;
  color: #737d73;
  font-size: 0.76rem;
  line-height: 1.45;
}

.site-footer {
  padding: 48px 0;
  background: #0c130e;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 34px;
}

.footer-grid > div:first-child img {
  width: 118px;
  height: auto;
  margin-bottom: 14px;
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
}

.footer-grid > div:first-child p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.mobile-wa {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image-frame,
  .hero-image-frame > img {
    min-height: 520px;
  }

  .problem-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-card.featured {
    transform: none;
  }

  .problem-grid .insight-card:last-child {
    grid-column: 1 / -1;
  }

  .solution-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .solution-copy,
  .faq-heading,
  .contact-copy {
    position: static;
  }

  .solution-copy {
    max-width: 760px;
  }

  .continuity-card {
    grid-template-columns: 1fr 1fr;
  }

  .continuity-copy {
    grid-column: 1 / -1;
    max-width: 780px;
  }

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

  .trust-card {
    grid-template-columns: 140px 1fr;
  }

  .trust-logo {
    min-height: 140px;
  }

  .trust-facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .contact-copy {
    max-width: 700px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 86px;
  }

  .brand img {
    width: 70px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(2.78rem, 13.5vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.05rem, 9.8vw, 3rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-image-frame,
  .hero-image-frame > img {
    min-height: 420px;
  }

  .hero-image-frame {
    border-radius: 20px;
  }

  .image-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid article,
  .signal-grid article:last-child {
    padding: 23px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .signal-grid article:last-child {
    border-bottom: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .problem-grid,
  .sector-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid .insight-card:last-child {
    grid-column: auto;
  }

  .insight-card {
    min-height: 0;
    padding: 27px;
  }

  .card-icon,
  .sector-marker {
    margin-bottom: 32px;
  }

  .solution-grid {
    gap: 38px;
  }

  .service-group {
    padding: 26px 22px;
  }

  .continuity-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .continuity-copy {
    grid-column: auto;
  }

  .continuity-details article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .continuity-icon {
    width: 40px;
    height: 40px;
  }

  .warranty-panel {
    min-height: 270px;
  }

  .sector-grid article {
    min-height: 0;
  }

  .process-grid article {
    min-height: 0;
  }

  .process-grid article > span {
    margin-bottom: 38px;
  }

  .process-grid h3 {
    min-height: auto;
  }

  .trust-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .trust-logo {
    width: 146px;
    min-height: 0;
  }

  .trust-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-grid,
  .contact-grid {
    gap: 42px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    border-radius: 20px;
  }

  .field-full {
    grid-column: auto;
  }

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

  .footer-links {
    display: grid;
    justify-content: start;
  }

  .mobile-wa {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    box-shadow: 0 10px 34px rgba(17, 32, 20, 0.28);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
