:root {
  --bg: #f5efe6;
  --bg-strong: #101512;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #171717;
  --text-soft: #5e5f61;
  --text-inverse: #f9f7f3;
  --line: rgba(23, 23, 23, 0.08);
  --primary: #0b8a68;
  --primary-dark: #06634b;
  --accent: #c85b2b;
  --shadow: 0 24px 60px rgba(19, 27, 24, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1320px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 138, 104, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(200, 91, 43, 0.15), transparent 24%),
    linear-gradient(180deg, #fbf6ef 0%, #efe6d8 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  opacity: 0.45;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.site-shell::before {
  width: 420px;
  height: 420px;
  top: 120px;
  right: -120px;
  background: rgba(11, 138, 104, 0.14);
}

.site-shell::after {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 40%;
  background: rgba(200, 91, 43, 0.12);
}

.topbar,
.section,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding: 18px 0 12px;
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(251, 246, 239, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(19, 27, 24, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-panel {
  display: block;
  padding: 7px 9px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-strong), #1f2a24);
  box-shadow: 0 18px 34px rgba(16, 21, 18, 0.18);
}

.brand-logo-full {
  width: 74px;
  height: auto;
  display: block;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 138, 104, 0.28);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.topnav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 7px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(16, 21, 18, 0.04);
}

.topnav::-webkit-scrollbar {
  display: none;
}

.topnav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.topnav a:hover,
.topnav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 18px rgba(19, 27, 24, 0.08);
  transform: translateY(-1px);
}

.topnav-mobile-cta {
  display: none;
}

.brand-logo-panel-footer {
  padding: 8px 12px 10px;
  border-radius: 20px;
}

.brand-logo-full-footer {
  width: 92px;
}

.topbar-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text-inverse);
  border: 1px solid rgba(11, 138, 104, 0.18);
  background: linear-gradient(135deg, var(--primary), #11ad83);
  box-shadow: 0 18px 32px rgba(11, 138, 104, 0.22);
  white-space: nowrap;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.topbar-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 138, 104, 0.4);
  box-shadow: 0 20px 36px rgba(11, 138, 104, 0.26);
}

.section {
  padding: 52px 0;
}

.hero[id],
.section[id] {
  scroll-margin-top: var(--header-offset, 128px);
}

.hero {
  padding-top: 26px;
  padding-bottom: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.service-card,
.form-card,
.final-cta-card,
.results-visual,
.split-banner {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 54px);
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(10, 18, 15, 0.94), rgba(18, 29, 24, 0.94)),
    rgba(10, 18, 15, 0.94);
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-quick-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 138, 104, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 252, 248, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(11, 138, 104, 0.12);
}

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

.hero-quick-copy h2 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.hero-quick-copy p:last-child {
  max-width: 52ch;
  color: var(--text-soft);
}

.hero-quick-form {
  margin-top: 20px;
}

.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-quick-grid .field:first-child {
  grid-column: span 2;
}

.field-compact {
  margin-bottom: 12px;
}

.field-compact input {
  min-height: 56px;
}

.btn-hero {
  position: relative;
  min-height: 64px;
  font-size: 1rem;
  box-shadow:
    0 20px 34px rgba(11, 138, 104, 0.22),
    0 0 0 8px rgba(17, 173, 131, 0.08);
}

.hero-quick-note {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-quick-feedback {
  margin-top: 10px;
}

.hero-panel-copy h2 {
  max-width: 12ch;
}

.eyebrow,
.step-kicker,
.service-tag,
.panel-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.icon-inline {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: block;
}

.icon-badge,
.stat-icon,
.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11, 138, 104, 0.14);
  background: rgba(11, 138, 104, 0.09);
  color: var(--primary);
}

.icon-badge .icon-inline,
.stat-icon .icon-inline,
.list-icon .icon-inline {
  width: 1.15rem;
  height: 1.15rem;
}

.eyebrow,
.step-kicker,
.service-tag {
  color: var(--primary-dark);
  font-weight: 700;
}

.panel-badge {
  width: fit-content;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #cfe5dc;
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Avenir Next Condensed", "Segoe UI", sans-serif;
  line-height: 1.05;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

p {
  margin: 0;
  line-height: 1.6;
}

.hero-lead {
  margin-top: 22px;
  max-width: 61ch;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-actions .microcopy {
  flex-basis: 100%;
  max-width: 56ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.media-frame {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  background: rgba(255, 250, 244, 0.72);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-hero {
  aspect-ratio: 4 / 3;
}

.media-frame-compact {
  aspect-ratio: 16 / 10;
}

.btn-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--primary), #11ad83);
  box-shadow: 0 18px 32px rgba(11, 138, 104, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.66);
}

.btn-accent {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--accent), #e47b4d);
  box-shadow: 0 18px 32px rgba(200, 91, 43, 0.24);
}

.btn-block {
  width: 100%;
}

.microcopy {
  color: var(--text-soft);
  max-width: 32ch;
  font-size: 0.95rem;
}

.proof-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-strip article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.proof-strip article .icon-badge {
  color: var(--primary);
}

.proof-strip strong,
.panel-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.proof-strip span,
.panel-note span {
  color: rgba(249, 247, 243, 0.76);
}

.proof-strip article span {
  color: var(--text-soft);
}

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

.hero-panel-points article {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel-points strong {
  display: block;
  margin-bottom: 6px;
}

.hero-panel-points span {
  color: rgba(249, 247, 243, 0.78);
}

.panel-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 14px;
  color: rgba(249, 247, 243, 0.86);
}

.panel-note {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 54ch;
  color: var(--text-soft);
}

.section-dark {
  padding: 66px clamp(18px, 4vw, 30px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(11, 138, 104, 0.25), transparent 28%),
    linear-gradient(180deg, #141915 0%, #0e120f 100%);
  color: var(--text-inverse);
}

.section-dark .eyebrow,
.section-dark .section-heading p,
.section-dark .card p,
.section-dark .card-index {
  color: rgba(249, 247, 243, 0.74);
}

.pain-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.service-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.card h3,
.service-card h3 {
  margin-bottom: 12px;
}

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

.service-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-banner {
  margin-top: 26px;
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.split-banner h3 {
  max-width: 20ch;
}

.split-banner p {
  max-width: 62ch;
  color: var(--text-soft);
}

.copy-stack {
  display: grid;
  gap: 10px;
}

.stats-grid,
.feature-grid,
.process-grid,
.results-layout,
.media-split {
  display: grid;
  gap: 18px;
}

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

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

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

.results-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: stretch;
}

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

.media-split {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  margin-top: 26px;
}

.media-split .split-banner {
  margin-top: 0;
  height: 100%;
}

.stats-grid .service-card,
.process-grid .service-card {
  min-height: 0;
}

.stat-card {
  align-items: flex-start;
  justify-content: center;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(11, 138, 104, 0.14);
  background: rgba(11, 138, 104, 0.08);
  color: var(--primary-dark);
}

.stat-value {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.stat-label {
  color: var(--text-soft);
  font-weight: 600;
}

.results-visual {
  border-radius: var(--radius-xl);
  padding: 22px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.results-visual h3 {
  max-width: 14ch;
}

.section-form {
  padding-top: 70px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.form-copy {
  padding: 18px 0;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

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

.list-icon {
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
  color: var(--primary-dark);
}

.form-card {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.inline-note {
  margin-top: 26px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 138, 104, 0.18);
  background: rgba(11, 138, 104, 0.06);
}

.inline-note p + p {
  margin-top: 6px;
}

.stepper {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.stepper-track {
  position: relative;
  height: 7px;
  background: rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.stepper-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: linear-gradient(135deg, var(--primary), #11ad83);
  border-radius: inherit;
  transition: width 220ms ease;
}

.stepper-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.stepper-labels .active {
  color: var(--text);
  font-weight: 700;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-header {
  margin-bottom: 20px;
  display: grid;
  gap: 8px;
}

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

.field-grid .field:first-child,
.field-grid .field:nth-child(3),
.field-grid .field:nth-child(5) {
  grid-column: span 2;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field span,
.choice-group legend {
  font-size: 0.95rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  padding: 16px 18px;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(11, 138, 104, 0.45);
  box-shadow: 0 0 0 4px rgba(11, 138, 104, 0.12);
  transform: translateY(-1px);
}

.choice-group {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 12px;
}

.choice-group .choice {
  margin-bottom: 10px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 23, 23, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.choice:hover {
  transform: translateY(-1px);
}

.choice:has(input:checked) {
  background: rgba(11, 138, 104, 0.08);
  border-color: rgba(11, 138, 104, 0.32);
  box-shadow: 0 14px 24px rgba(11, 138, 104, 0.08);
}

.choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

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

.form-actions .btn {
  flex: 1 1 auto;
}

.form-note,
.form-feedback {
  margin-top: 16px;
  font-size: 0.94rem;
}

.form-note {
  color: var(--text-soft);
}

.form-feedback {
  min-height: 1.4em;
}

.form-feedback.error {
  color: #9b3214;
}

.form-feedback.success {
  color: var(--primary-dark);
}

.final-cta {
  padding-top: 28px;
  padding-bottom: 84px;
}

.final-cta-card {
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--radius-xl);
  display: grid;
  gap: 18px;
  text-align: center;
  justify-items: center;
}

.final-cta-card p {
  max-width: 64ch;
  color: var(--text-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer {
  padding-bottom: 34px;
  color: rgba(249, 247, 243, 0.82);
  font-size: 0.94rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-shell {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(17, 173, 131, 0.18), transparent 28%),
    linear-gradient(180deg, #0f1512 0%, #09100d 100%);
  box-shadow: 0 28px 56px rgba(10, 18, 15, 0.28);
}

.footer-brand-block {
  display: grid;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-copy {
  display: grid;
  gap: 8px;
}

.footer-kicker,
.footer-title {
  margin: 0;
  color: #8ee7cd;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand-copy h3 {
  max-width: 18ch;
  color: var(--text-inverse);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.footer-brand-copy p,
.footer-copy {
  color: rgba(249, 247, 243, 0.72);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(249, 247, 243, 0.88);
}

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

.footer-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-link,
.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(249, 247, 243, 0.76);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover {
  color: #d8fff2;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  color: rgba(249, 247, 243, 0.58);
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@supports (content-visibility: auto) {
  .section:not(.hero),
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
  }
}

@media (max-width: 1280px) {
  .topbar-shell {
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-logo-full {
    width: 68px;
  }

  .topnav a {
    padding: 9px 10px;
    font-size: 0.87rem;
  }

  .topbar-cta {
    padding: 11px 15px;
    font-size: 0.94rem;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .form-layout,
  .pain-grid,
  .service-grid,
  .stats-grid,
  .feature-grid,
  .process-grid,
  .results-layout,
  .media-split {
    grid-template-columns: 1fr;
  }

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

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

  .hero-quick-grid .field:first-child {
    grid-column: span 1;
  }

  .topbar-shell {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .topnav {
    order: 3;
    width: 100%;
  }

  .results-layout .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .topbar {
    top: 10px;
    padding-top: 14px;
  }

  .topbar-shell {
    padding: 12px;
    border-radius: 24px;
    gap: 12px;
    align-items: center;
    backdrop-filter: none;
  }

  .brand-logo-full {
    width: 62px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .topnav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(251, 246, 239, 0.96);
    border: 1px solid rgba(23, 23, 23, 0.08);
    box-shadow: 0 18px 36px rgba(19, 27, 24, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .topbar-shell.menu-open .topnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topnav a {
    white-space: normal;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: rgba(16, 21, 18, 0.03);
  }

  .topnav a.topnav-mobile-cta {
    display: block;
    color: var(--text-inverse) !important;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #11ad83) !important;
    box-shadow: 0 16px 28px rgba(11, 138, 104, 0.2);
  }

  .topnav a.topnav-mobile-cta:hover,
  .topnav a.topnav-mobile-cta.is-active {
    color: var(--text-inverse) !important;
    background: linear-gradient(135deg, var(--primary), #11ad83) !important;
  }

  .topbar-shell.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar-shell.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar-shell.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand-logo-full-footer {
    width: 82px;
  }

  .hero-copy,
  .hero-panel,
  .form-card,
  .final-cta-card,
  .results-visual,
  .card,
  .service-card {
    padding: 22px;
    backdrop-filter: none;
  }

  .section-dark {
    padding: 28px 18px;
  }

  .hero {
    padding-top: 18px;
  }

  h1 {
    margin-top: 14px;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-quick-card {
    margin-top: 22px;
    padding: 20px;
  }

  .hero-copy,
  .hero-quick-copy,
  .hero-panel,
  .section-heading,
  .results-visual .copy-stack,
  .split-banner,
  .form-copy,
  .step-header {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-quick-copy .service-tag,
  .hero-panel .panel-badge,
  .section-heading .eyebrow,
  .results-visual .eyebrow,
  .split-banner .eyebrow,
  .form-copy .eyebrow,
  .step-header .step-kicker,
  .final-cta-card .eyebrow {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-lead,
  .hero-actions .microcopy,
  .hero-quick-copy h2,
  .hero-quick-copy p:last-child,
  .hero-panel h2,
  .section-heading h2,
  .section-heading p,
  .split-banner h3,
  .split-banner p,
  .results-visual h3,
  .results-visual .copy-stack p,
  .form-copy h2,
  .form-copy > p,
  .step-header h3 {
    margin-inline: auto;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 14px;
    justify-content: center;
  }

  .proof-strip {
    margin-top: 22px;
  }

  .proof-strip article,
  .hero-panel-points article,
  .panel-note {
    text-align: center;
  }

  .proof-strip article,
  .hero-panel-points article {
    justify-items: center;
  }

  .split-banner {
    align-items: center;
  }

  .form-copy .check-list,
  .form-copy .inline-note {
    text-align: left;
  }

  .form-copy .check-list {
    max-width: 32rem;
    margin-inline: auto;
  }

  .footer-shell {
    padding: 24px 20px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand-copy h3,
  .footer-brand-copy p {
    margin-inline: auto;
  }

  .footer-trust {
    justify-content: center;
  }

  .footer-card,
  .footer-bottom {
    text-align: center;
  }

  .footer-link,
  .footer-copy {
    justify-content: center;
  }

  .field-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .field-grid .field,
  .field-grid .field:first-child,
  .field-grid .field:nth-child(3),
  .field-grid .field:nth-child(5) {
    grid-column: span 1;
  }

  .form-actions {
    display: grid;
  }

  .btn,
  .topbar-cta {
    width: 100%;
  }

  .topbar-cta {
    display: none;
  }

  .button-row {
    display: grid;
    width: 100%;
  }

  .results-layout .stats-grid {
    grid-template-columns: 1fr;
  }

  .icon-badge,
  .stat-icon {
    width: 44px;
    height: 44px;
  }

  body::before,
  .site-shell::before,
  .site-shell::after {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 45;
    display: block;
  }

  .mobile-sticky-cta .btn {
    min-height: 60px;
    box-shadow: 0 18px 32px rgba(11, 138, 104, 0.24);
  }

  .footer {
    padding-bottom: 110px;
  }
}

@media (prefers-reduced-data: reduce) {
  body::before,
  .site-shell::before,
  .site-shell::after {
    display: none;
  }

  .topbar-shell,
  .hero-copy,
  .hero-panel,
  .form-card,
  .final-cta-card,
  .results-visual,
  .card,
  .service-card,
  .split-banner {
    backdrop-filter: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

.cc-wrap {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(390px, calc(100vw - 32px));
}

.cc-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 52px rgba(19, 27, 24, 0.18);
}

.cc-head {
  margin: 0;
  font-size: 1.05rem;
}

.cc-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cc-text a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-pref {
  display: none;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.cc-pref.in {
  display: grid;
}

.cc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cc-row label {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.cc-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-actions .btn {
  flex: 1 1 150px;
  justify-content: center;
}

.cc-manage {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 79;
}

.cc-manage button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 250, 244, 0.96);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(19, 27, 24, 0.14);
}

.cc-wrap[hidden],
.cc-manage[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .cc-wrap,
  .cc-manage {
    left: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .cc-wrap {
    width: calc(100vw - 28px);
  }

  .cc-actions .btn {
    width: 100%;
  }
}
