:root {
  --blue-950: #05233d;
  --blue-900: #07345a;
  --blue-800: #075083;
  --blue-700: #006bb6;
  --cyan-500: #16aee2;
  --cyan-100: #e7f9ff;
  --green-600: #26a944;
  --green-500: #39b54a;
  --ink: #102334;
  --muted: #5d7283;
  --line: #d7e7ee;
  --paper: #ffffff;
  --mist: #f3faff;
  --shadow: 0 18px 42px rgba(5, 35, 61, .12);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--cyan-500), var(--blue-700));
  z-index: 100;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100% - 1120px) / 2));
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(5, 35, 61, .1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .16));
}

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

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 4px;
  font-size: .74rem;
  opacity: .8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .94rem;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  opacity: .88;
}

.site-nav > a:not(.button):hover {
  opacity: 1;
}

.nav-social {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 20px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-active .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-active .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-active .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--green-500);
  border-radius: 6px;
  color: #fff;
  background: var(--green-500);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(38, 169, 68, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-600);
  border-color: var(--green-600);
  box-shadow: 0 16px 30px rgba(38, 169, 68, .28);
}

.button-small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: .9rem;
}

.button-ghost,
.button-ghost-dark {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .45);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .75);
}

.button-ghost-dark {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--line);
}

.button-ghost-dark:hover {
  color: var(--blue-900);
  background: var(--cyan-100);
  border-color: #bfefff;
}

.button-light {
  color: var(--blue-900);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.button-light:hover {
  background: var(--cyan-100);
  border-color: var(--cyan-100);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-900);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 35, 61, .92) 0%, rgba(5, 35, 61, .78) 34%, rgba(5, 35, 61, .18) 72%, rgba(5, 35, 61, .04) 100%),
    linear-gradient(0deg, rgba(5, 35, 61, .58) 0%, rgba(5, 35, 61, 0) 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding: 114px 0 74px;
}

.hero-copy {
  width: min(670px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--cyan-500);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: .92;
  letter-spacing: 0;
}

.hero-lead {
  width: min(630px, 100%);
  margin: 24px 0 0;
  font-size: clamp(1.13rem, 2.2vw, 1.45rem);
  color: rgba(255, 255, 255, .9);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .9);
  font-size: .94rem;
  font-weight: 800;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-strip {
  color: #fff;
  background: var(--blue-950);
}

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

.trust-grid div {
  min-height: 108px;
  padding: 28px;
  background: var(--blue-950);
}

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

.trust-grid strong {
  font-size: 1rem;
}

.trust-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 84px;
}

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

.section-blue {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 52, 90, .96), rgba(0, 107, 182, .96)),
    var(--blue-800);
}

.section-process {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 35, 61, .98), rgba(7, 80, 131, .96)),
    var(--blue-900);
}

.section-water {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 107, 182, .96), rgba(22, 174, 226, .88)),
    var(--blue-700);
}

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

.section-showcase {
  background: var(--blue-950);
  color: #fff;
}

.split,
.service-layout,
.commerce-grid,
.benefits-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
}

.section-copy h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.final-cta p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-blue .section-copy p,
.section-process .section-heading p,
.section-water .section-copy p,
.section-showcase .section-heading p,
.final-cta p {
  color: rgba(255, 255, 255, .78);
}

.section-heading {
  width: min(800px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.metric-grid,
.service-grid,
.feature-grid,
.showcase-grid {
  display: grid;
  gap: 16px;
}

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

.metric-card,
.service-card,
.feature-card,
.showcase-item,
.benefit-stack article {
  border-radius: var(--radius);
}

.metric-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(5, 35, 61, .07);
}

.metric-card strong {
  display: block;
  color: var(--blue-700);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--blue-950);
  font-weight: 900;
}

.metric-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.service-layout {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
}

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

.service-card {
  min-height: 222px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
}

.service-card .icon,
.benefit-stack .icon,
.showcase-item .icon {
  width: 34px;
  height: 34px;
  color: var(--green-500);
}

.service-card h3,
.feature-card h3,
.benefit-stack h3,
.showcase-item h3,
.timeline h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.service-card p,
.feature-card p,
.benefit-stack p,
.showcase-item p,
.timeline p {
  margin: 12px 0 0;
  color: inherit;
  opacity: .76;
}

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

.feature-card {
  min-height: 245px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.feature-card-accent {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.feature-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  font-size: .8rem;
}

.feature-card-accent .feature-number {
  color: var(--green-500);
  border-color: rgba(255, 255, 255, .4);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-950);
  background: var(--green-500);
  border-radius: 50%;
  font-weight: 900;
}

.well-diagram {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #dffbff 0%, #8de4f6 34%, #2aa6d9 35%, #0b6da6 100%);
  box-shadow: var(--shadow);
}

.well-diagram::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 28%;
  height: 18%;
  background: linear-gradient(180deg, #55c566, #2f9e47);
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.well-diagram::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 61%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .12) 0 2px, rgba(255, 255, 255, 0) 2px 46px);
  z-index: 1;
}

.well-sky {
  position: absolute;
  inset: 0 0 auto;
  height: 36%;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .75) 0 22px, transparent 23px),
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, .42) 0 54px, transparent 55px);
}

.soil-layer {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.layer-top {
  top: 42%;
  height: 16%;
  background: linear-gradient(90deg, #9a6236, #b8743f 46%, #8f542f);
}

.layer-rock {
  top: 58%;
  height: 19%;
  background:
    radial-gradient(circle at 18% 54%, rgba(255, 255, 255, .18) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, .16) 0 8px, transparent 9px),
    linear-gradient(90deg, #5f6670, #7c8590 50%, #525b65);
}

.layer-aquifer {
  top: 77%;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(165deg, rgba(255, 255, 255, .32) 0 2px, rgba(255, 255, 255, 0) 2px 18px),
    linear-gradient(90deg, #0088ca, #13bde9 50%, #006bb6);
}

.well-casing {
  position: absolute;
  left: 48%;
  top: 33%;
  width: 34px;
  height: 59%;
  background: linear-gradient(90deg, #d9edf5, #ffffff 48%, #8db2c0);
  border: 4px solid rgba(5, 35, 61, .22);
  border-bottom: 0;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.well-casing::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 80px;
  height: 34px;
  background: rgba(255, 255, 255, .24);
  border: 2px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  transform: translateX(-50%);
}

.well-head {
  position: absolute;
  left: 48%;
  top: 27%;
  width: 86px;
  height: 54px;
  background: linear-gradient(180deg, #0b7fbd, #045b90);
  border: 5px solid rgba(255, 255, 255, .62);
  border-radius: 8px 8px 4px 4px;
  transform: translateX(-50%);
  z-index: 6;
}

.well-head::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 24px;
  height: 28px;
  background: #0b7fbd;
  border-radius: 6px 6px 0 0;
  transform: translateX(-50%);
}

.well-pump-line {
  position: absolute;
  left: 52%;
  top: 35%;
  width: 36%;
  height: 18px;
  background: linear-gradient(180deg, #0d78b5, #074f84);
  border-radius: 999px;
  z-index: 5;
}

.well-pump-line::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -11px;
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #0a6ca7, #043e68);
  border: 5px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
}

.water-flow {
  position: absolute;
  left: 64%;
  top: 40%;
  width: 26%;
  height: 38%;
  border: 3px solid rgba(255, 255, 255, .62);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 60px 0 0;
  z-index: 4;
}

.water-flow::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -15px;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, .82);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.water-table {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 46px;
  background:
    repeating-linear-gradient(172deg, rgba(255, 255, 255, .38) 0 2px, rgba(255, 255, 255, 0) 2px 16px),
    rgba(255, 255, 255, .12);
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  z-index: 3;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list .icon {
  color: var(--green-500);
  margin-top: .2em;
}

.commerce-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

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

.condition-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.condition-list .icon {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  color: var(--blue-700);
}

.condition-list strong,
.condition-list span {
  display: block;
}

.condition-list span {
  color: var(--muted);
}

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

.audience-grid span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px;
  color: var(--blue-950);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.benefits-layout {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.benefit-stack {
  display: grid;
  gap: 14px;
}

.benefit-stack article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(5, 35, 61, .06);
}

.benefit-stack .icon {
  grid-row: 1 / span 2;
}

.benefit-stack h3 {
  margin: 0;
}

.benefit-stack p {
  margin-top: 4px;
  color: var(--muted);
  opacity: 1;
}

.showcase-grid {
  grid-template-columns: 1.2fr .9fr .9fr;
}

.showcase-item {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.showcase-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.showcase-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  color: #fff;
  background: rgba(5, 35, 61, .74);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  font-weight: 800;
}

.faq-layout {
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--blue-950);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--blue-700);
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 88px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(5, 35, 61, .98), rgba(0, 107, 182, .94)),
    var(--blue-900);
}

.final-cta-inner {
  width: min(790px, var(--container));
}

.cta-mark {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  margin: 0 auto 22px;
}

.final-cta .section-kicker,
.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .section-kicker {
  color: var(--green-500);
}

.site-footer {
  color: rgba(255, 255, 255, .76);
  background: #031827;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0;
  font-size: .94rem;
}

.footer-inner strong,
.footer-inner span,
.footer-links {
  display: block;
}

.footer-inner strong {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(38, 169, 68, .36);
  transition: transform .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--green-600);
}

.floating-whatsapp .icon {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    gap: 0;
    padding: 88px 20px 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(5, 35, 61, .14);
    transform: translateY(-100%);
    transition: transform .25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-social {
    border: 0;
    width: auto;
    justify-content: start;
  }

  .split,
  .split-reverse,
  .service-layout,
  .commerce-grid,
  .benefits-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

  .timeline li,
  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    height: 68px;
    padding-inline: 14px;
  }

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

  .brand-copy small {
    display: none;
  }

  .site-nav {
    padding-top: 82px;
  }

  .eyebrow,
  .section-kicker {
    font-size: .7rem;
    letter-spacing: .06em;
  }

  .hero,
  .hero-inner {
    min-height: 86svh;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 35, 61, .94) 0%, rgba(5, 35, 61, .78) 58%, rgba(5, 35, 61, .28) 100%),
      linear-gradient(0deg, rgba(5, 35, 61, .72) 0%, rgba(5, 35, 61, .08) 46%);
  }

  .hero-inner {
    padding: 104px 0 52px;
    align-items: end;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .hero-copy {
    width: min(100%, 360px);
  }

  .hero-actions,
  .final-cta .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .trust-grid,
  .metric-grid,
  .service-grid,
  .feature-grid,
  .timeline,
  .showcase-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    padding-inline: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 30px;
  }

  .section-copy h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .well-diagram {
    min-height: 320px;
  }

  .condition-list div,
  .benefit-stack article {
    grid-template-columns: 38px 1fr;
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
