:root {
  color-scheme: light;
  --green-900: #083d2d;
  --green-800: #0d563d;
  --green-600: #13a66b;
  --green-500: #24c47e;
  --mint-100: #e6f8ef;
  --mint-50: #f4fbf7;
  --ink: #13201a;
  --muted: #5c6b63;
  --line: #dbe8df;
  --white: #ffffff;
  --soft: #f7f4ed;
  --amber: #f0b84d;
  --shadow: 0 24px 70px rgba(8, 61, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mint-50);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

.money-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  min-width: 112px;
  transform: translate3d(-50%, -50%, 0);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: var(--green-900);
  box-shadow: 0 16px 34px rgba(8, 61, 45, 0.24);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 9px 13px;
  pointer-events: none;
  text-align: center;
  transition: opacity 160ms ease, scale 160ms ease;
  will-change: transform;
}

.money-cursor.is-moving {
  display: block;
  scale: 1.05;
}

.money-cursor::before {
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(36, 196, 126, 0.24);
  content: "";
}

.plant-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 14px 16px rgba(8, 61, 45, 0.2));
  object-fit: contain;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  transition: transform 140ms ease;
  will-change: transform;
}

.plant-cursor.is-growing {
  display: block;
  animation: plantPop 220ms ease;
}

@keyframes plantPop {
  0% {
    opacity: 0.64;
  }

  100% {
    opacity: 1;
  }
}

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

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

ul {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(244, 251, 247, 0.9);
  border-bottom: 1px solid rgba(219, 232, 223, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.trust-row,
.logos {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--green-600);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary-button {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(19, 166, 107, 0.24);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.primary-button {
  padding: 0 24px;
}

.primary-button:hover,
.header-cta:hover {
  background: var(--green-800);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 22px;
  color: var(--green-900);
}

.hero {
  display: grid;
  min-height: calc(100vh - 64px);
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(8, 61, 45, 0.05), rgba(240, 184, 77, 0.1)),
    var(--mint-50);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-eyebrow {
  text-transform: none;
}

h1 {
  max-width: 780px;
  margin-top: 12px;
  color: var(--green-900);
  font-size: clamp(2.15rem, 4.5vw, 4.6rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trust-row {
  width: 100%;
  justify-content: space-between;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(8, 61, 45, 0.12);
  border-bottom: 1px solid rgba(8, 61, 45, 0.12);
  padding: 16px 0 0;
}

.trust-row span {
  flex: 1;
  min-width: 0;
  padding: 0 clamp(8px, 1.5vw, 18px);
  color: var(--green-900);
  font-size: clamp(0.78rem, 1.15vw, 0.94rem);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.trust-row span + span {
  border-left: 1px solid rgba(8, 61, 45, 0.12);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 560px;
  align-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: 22px -18px 8px 24px;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(36, 196, 126, 0.22), rgba(240, 184, 77, 0.18)),
    repeating-linear-gradient(90deg, rgba(8, 61, 45, 0.08) 0 1px, transparent 1px 68px);
  content: "";
}

.pipeline-card {
  position: relative;
  width: min(100%, 470px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.pipeline-header,
.pipeline-stage,
.metric-grid,
.section-heading,
.cta-section,
.site-footer {
  display: flex;
}

.pipeline-header {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.pipeline-flow {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 20px 0 24px;
  padding: 8px 0 8px;
}

.pipeline-flow::before {
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 23px;
  width: 3px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(19, 166, 107, 0), rgba(19, 166, 107, 0.72), rgba(19, 166, 107, 0)),
    var(--line);
  content: "";
}

.flow-pulse {
  position: absolute;
  top: 31px;
  left: 18px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 8px rgba(36, 196, 126, 0.16), 0 0 28px rgba(36, 196, 126, 0.74);
  animation: flowPulse 3.4s linear infinite;
}

.pulse-two {
  animation-delay: 1.7s;
}

.pipeline-stage {
  position: relative;
  z-index: 3;
  gap: 16px;
  align-items: flex-start;
  padding: 0;
}

.pipeline-stage p {
  margin-top: 4px;
  color: var(--muted);
}

.stage-icon,
.card-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--mint-100);
  color: var(--green-800);
  font-weight: 900;
}

.stage-icon {
  position: relative;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 5px rgba(230, 248, 239, 0.96);
}

@keyframes flowPulse {
  0% {
    opacity: 0;
    top: 31px;
    transform: scale(0.72);
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 1;
    top: calc(100% - 44px);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    top: calc(100% - 44px);
    transform: scale(0.72);
  }
}

.metric-grid {
  gap: 12px;
}

.metric-grid div {
  flex: 1;
  border-radius: 12px;
  background: var(--green-900);
  padding: 18px;
  color: var(--white);
}

.metric-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.8rem;
}

.logos {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.logos span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 16px;
}

.section,
.split-section,
.cta-section {
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

h2 {
  color: var(--green-900);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.split-section > div > p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.outcome-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.testimonial-card,
.proof-stat,
.timeline article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(8, 61, 45, 0.08);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 196, 126, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(36, 196, 126, 0.08), transparent 48%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(19, 166, 107, 0.55);
  box-shadow: 0 22px 54px rgba(8, 61, 45, 0.16);
  transform: translateY(-6px);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card:hover .service-plant,
.service-card:focus-within .service-plant {
  opacity: 1;
  transform: translateY(-4px) scale(1.06);
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
}

.service-plant {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 68px;
  height: 68px;
  object-fit: contain;
  opacity: 0.86;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-card h3,
.timeline h3 {
  position: relative;
  z-index: 2;
  color: var(--green-900);
  font-size: 1.35rem;
  line-height: 1.12;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: var(--muted);
}

.service-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 650;
}

.service-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-600);
  content: "";
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 6vw, 82px);
  background: var(--soft);
}

.split-section h2 {
  margin-top: 14px;
}

.split-section > div > p {
  margin-top: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 22px;
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-600);
  font-weight: 900;
}

.timeline p {
  margin-top: 8px;
  color: var(--muted);
}

.dark-band {
  background: var(--green-900);
}

.dark-band h2,
.dark-band .eyebrow {
  color: var(--white);
}

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

.outcome-grid div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
  color: var(--white);
}

.outcome-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 1.15rem;
}

.outcome-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-grid {
  grid-template-columns: 0.8fr 1fr 1fr;
}

.proof-stat,
.testimonial-card {
  padding: 28px;
}

.proof-stat {
  background: var(--green-800);
  color: var(--white);
}

.proof-stat span {
  display: block;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 950;
  line-height: 0.92;
}

.proof-stat p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.testimonial-card p {
  color: var(--muted);
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
  color: var(--green-900);
}

.cta-section {
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 76px);
  overflow: hidden;
  text-align: right;
  background:
    linear-gradient(135deg, rgba(36, 196, 126, 0.16), rgba(240, 184, 77, 0.16)),
    var(--mint-50);
}

.conversion-visual {
  position: relative;
  flex: 1 1 420px;
  min-width: min(100%, 320px);
  max-width: 560px;
  min-height: 310px;
  isolation: isolate;
}

.conversion-visual::before {
  position: absolute;
  inset: 18px 0;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(19, 166, 107, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 166, 107, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.75;
  content: "";
}

.flow-wire {
  position: absolute;
  top: 50%;
  right: 58px;
  left: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(19, 166, 107, 0.16), var(--green-500), rgba(240, 184, 77, 0.75));
  transform: translateY(-50%);
}

.flow-wire::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 196, 126, 0.48), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
  animation: wirePulse 3.2s linear infinite;
}

.lead-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 10px rgba(36, 196, 126, 0.12), 0 12px 20px rgba(8, 61, 45, 0.16);
  transform: translateY(-50%);
  animation: leadMove 3.2s cubic-bezier(0.34, 0, 0.2, 1) infinite;
}

.lead-dot-two {
  animation-delay: 0.54s;
}

.lead-dot-three {
  animation-delay: 1.08s;
}

.flow-node {
  position: absolute;
  top: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 128px;
  min-height: 118px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 50px rgba(8, 61, 45, 0.14);
  color: var(--green-900);
  font-size: 1.04rem;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
}

.store-node {
  left: 34%;
}

.crm-node {
  left: 66%;
}

.store-awning {
  display: block;
  width: 58px;
  height: 28px;
  margin: 0 auto 12px;
  border-radius: 14px 14px 6px 6px;
  background:
    repeating-linear-gradient(90deg, var(--green-500) 0 12px, var(--amber) 12px 24px);
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.5);
}

.crm-lines {
  display: block;
  width: 58px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background:
    linear-gradient(var(--green-500), var(--green-500)) 14px 14px / 30px 5px no-repeat,
    linear-gradient(var(--green-500), var(--green-500)) 14px 25px / 22px 5px no-repeat,
    var(--mint-100);
}

.money-note {
  position: absolute;
  right: 0;
  top: 50%;
  min-width: 54px;
  border: 1px solid rgba(8, 61, 45, 0.1);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff8dd, var(--amber));
  box-shadow: 0 16px 26px rgba(8, 61, 45, 0.16);
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 950;
  padding: 10px 12px;
  opacity: 0;
  text-align: center;
  transform: translateY(-50%) rotate(-6deg) scale(0.82);
  animation: moneyOut 3.2s ease-out infinite;
}

.money-note-two {
  top: 42%;
  animation-delay: 0.45s;
}

.money-note-three {
  top: 58%;
  animation-delay: 0.9s;
}

.cta-copy {
  flex: 1 1 460px;
  min-width: 0;
  max-width: 680px;
  margin-left: auto;
}

.cta-section h2 {
  margin-top: 14px;
}

.cta-section p {
  margin-top: 16px;
}

.cta-inline {
  margin-top: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto;
}

.faq .section-heading {
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@keyframes leadMove {
  0% {
    left: 0;
    opacity: 0;
    transform: translateY(-50%) scale(0.76);
  }

  14% {
    opacity: 1;
  }

  46% {
    left: 34%;
    transform: translateY(-50%) scale(1);
  }

  72% {
    left: 66%;
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  100% {
    left: calc(100% - 58px);
    opacity: 0;
    transform: translateY(-50%) scale(0.72);
  }
}

@keyframes wirePulse {
  0% {
    left: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }

  24% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes moneyOut {
  0%,
  58% {
    opacity: 0;
    transform: translate(-78px, -50%) rotate(-8deg) scale(0.72);
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(34px, -96px) rotate(9deg) scale(1.08);
  }
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  color: var(--green-900);
  cursor: pointer;
  font-weight: 850;
}

.faq details p {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 61, 45, 0.58);
  backdrop-filter: blur(8px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(36, 196, 126, 0.1), rgba(240, 184, 77, 0.1)),
    var(--white);
  box-shadow: 0 30px 90px rgba(8, 61, 45, 0.28);
  padding: clamp(20px, 3vw, 30px);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.lead-modal__close:hover {
  border-color: var(--green-600);
  color: var(--green-600);
}

.lead-modal h2 {
  max-width: 470px;
  margin-top: 8px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.lead-modal__intro {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-modal__close:focus-visible {
  outline: 3px solid rgba(36, 196, 126, 0.24);
  outline-offset: 2px;
  border-color: var(--green-600);
}

.lead-form__submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-form__note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

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

  .hero,
  .split-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-visual {
    width: 100%;
    max-width: none;
    min-height: 260px;
    flex-basis: auto;
  }

  .cta-copy {
    max-width: none;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .pipeline-card {
    margin: 0;
  }

  .service-grid,
  .outcome-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 12px;
    padding: 18px 16px;
  }

  .lead-modal__close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .lead-modal h2 {
    max-width: calc(100% - 42px);
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.04;
  }

  .lead-modal__intro {
    font-size: 0.92rem;
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .lead-form label {
    gap: 5px;
    font-size: 0.86rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 42px;
    padding: 0 12px;
  }

  .lead-form__submit {
    min-height: 44px;
  }

  .lead-form__note {
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.9rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .trust-row {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .trust-row span,
  .logos span {
    width: 100%;
    text-align: center;
  }

  .trust-row span {
    padding: 12px 0;
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

  .trust-row span + span {
    border-left: 0;
    border-top: 1px solid rgba(8, 61, 45, 0.12);
  }

  .pipeline-card {
    padding: 18px;
  }

  .conversion-visual {
    min-height: 230px;
  }

  .flow-wire {
    right: 24px;
    left: 24px;
  }

  .flow-node {
    width: 104px;
    min-height: 96px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .store-awning {
    width: 48px;
    height: 24px;
    margin-bottom: 10px;
  }

  .crm-lines {
    width: 48px;
    height: 38px;
    background:
      linear-gradient(var(--green-500), var(--green-500)) 12px 12px / 25px 4px no-repeat,
      linear-gradient(var(--green-500), var(--green-500)) 12px 22px / 20px 4px no-repeat,
      var(--mint-100);
  }

  .money-note {
    min-width: 46px;
    font-size: 0.78rem;
    padding: 8px 9px;
  }

  .metric-grid,
  .site-footer {
    flex-direction: column;
  }
}

@media (max-height: 680px) {
  .lead-modal__dialog {
    padding: 16px;
  }

  .lead-modal h2 {
    font-size: 1.45rem;
  }

  .lead-modal__intro {
    font-size: 0.86rem;
  }

  .lead-form {
    gap: 8px;
    margin-top: 12px;
  }

  .lead-form label {
    gap: 4px;
    font-size: 0.82rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 38px;
  }

  .lead-form__submit {
    min-height: 40px;
  }
}
