@font-face {
  font-family: "Maison_Neue_Extended";
  src: url("MaisonNeueExtended-Bold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

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

:root {
  --text: #000000;
  --hero-text: #000000;
  --text-muted: #5c5c5c;
  --accent: #1a7a4c;
  --overscroll: #22c55e;
  --border: rgba(26, 122, 76, 0.12);
  --surface: rgba(255, 255, 255, 0.65);
  --white: #ffffff;
  --marble-base: #f8faf9;
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: var(--overscroll);
  overflow-x: hidden;
}

/* Animated background orbs */
@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -80px) scale(1.08); }
  66%  { transform: translate(-40px, 50px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-70px, 60px) scale(1.05); }
  66%  { transform: translate(50px, -40px) scale(0.97); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, 70px) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-drift-4 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-50px, -60px) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.bg-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: orb-drift-1 22s ease-in-out infinite;
}

.bg-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 220, 200, 0.35) 0%, transparent 70%);
  top: 20%;
  right: -8%;
  animation: orb-drift-2 28s ease-in-out infinite;
}

.bg-orb--3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(26, 122, 76, 0.15) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation: orb-drift-3 34s ease-in-out infinite;
}

.bg-orb--4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 240, 215, 0.4) 0%, transparent 70%);
  bottom: 30%;
  right: 15%;
  animation: orb-drift-4 26s ease-in-out infinite;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--marble-base);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(26, 122, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(180, 210, 195, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 75% 80%, rgba(26, 122, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 90% 50% at 30% 90%, rgba(200, 225, 210, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 45%, rgba(255, 255, 255, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, #f7faf8 0%, #eef5f0 35%, #f2f8f4 65%, #e8f2ec 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 40px);
}

.container-narrow {
  max-width: 880px;
  text-align: center;
}

.container-hero {
  max-width: 960px;
}

h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-family: "Maison_Neue_Extended" !important;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 2.6rem;
  line-height: 1.15;
  text-wrap: balance;
  text-align: center;
  color: rgb(19, 22, 40);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
  }
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.accent {
  color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 999px;
  padding: 14px 32px 14px 22px;
  margin-bottom: 28px;
  box-shadow: 0 0 18px 4px rgba(255,255,255,0.55);
  color: var(--text);
}

.hero-sub-2 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ROI section */
.roi-section {
  padding: 64px 0 48px;
}

.roi-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.roi-block {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,122,76,0.15);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
}

.roi-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.roi-row:last-child { border-bottom: none; }

.roi-row--highlight {
  background: rgba(26,122,76,0.07);
}

.roi-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 110px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.roi-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.roi-value.accent {
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
}

.btn-cta {
  background: linear-gradient(135deg, #0a5c2a, #0f7a38);
  color: #ffffff;
  width: 100%;
  padding: 20px 28px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

.btn-cta:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.4);
  text-decoration: none;
}

.btn-cta:disabled,
.btn-cta.is-loading {
  opacity: 0.92;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-cta.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-cta.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
  flex-shrink: 0;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta.is-loading::before {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.35);
    opacity: 0.7;
  }
}

.btn-primary:hover {
  opacity: 0.85;
  text-decoration: none;
}

.btn-secondary {
  background: #fff;
  color: #000000;
  border: 1px solid rgba(19, 22, 40, 0.18);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 28px;
  box-shadow: 0 1px 3px rgba(19, 22, 40, 0.06);
}

.btn-secondary:hover {
  background: rgba(19, 22, 40, 0.04);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 0.5px solid rgba(19, 22, 40, 0.28);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 28px;
}

.btn-outline:hover {
  background: rgba(19, 22, 40, 0.04);
  text-decoration: none;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  padding: 20px 0 8px;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  outline: none;
  box-shadow: none;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  line-height: 1.2;
  border: none;
  outline: none;
}

.logo__name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #000000;
}

.logo__by {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 112px 0 96px;
}

.hero-sub {
  font-weight: 600;
  color: var(--hero-text);
  margin-top: 1rem;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .hero-sub {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1.5rem;
    white-space: nowrap;
  }
}

/* Hero bullets */
.hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px auto 48px;
  text-align: left;
}

@media (max-width: 640px) {
  .hero-bullets {
    gap: 10px;
    margin-top: 2px;
    margin-bottom: 36px;
  }
  .hero-bullets li {
    font-size: 0.65rem;
    gap: 8px;
  }
  .hero-bullets svg {
    width: 18px;
    height: 18px;
  }
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Maison_Neue_Extended", Inter, system-ui, sans-serif;
  font-size: 1.175rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.hero-bullets svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

/* Lead box */
.lead-box {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.2rem 2.4rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(26, 122, 76, 0.1);
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
}

.lead-box::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50px;
  background: radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.lead-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.lead-step {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  visibility: hidden;
}

.lead-step.is-active {
  opacity: 1;
  height: auto;
  overflow: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.lead-step.is-exiting {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  transition-duration: 0.36s;
  pointer-events: none;
  visibility: visible;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lead-step {
    transition: none;
  }
}

.lead-sunk {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  font-style: italic;
}

.lead-prime {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.lead-prime-q {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.lead-offer-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.lead-offer-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.lead-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.commit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-align: center;
}

.commit-btn__icon {
  flex-shrink: 0;
}

/* PRIMARY — big, glowing */
.commit-btn--yes {
  padding: 18px 24px;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  background: var(--accent);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(26, 122, 76, 0.35),
    0 0 0 0 rgba(26, 122, 76, 0);
  animation: yes-pulse 2.8s ease-in-out infinite;
}

.commit-btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 122, 76, 0.45);
}

@keyframes yes-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(26,122,76,0.35), 0 0 0 0 rgba(26,122,76,0.2); }
  50%       { box-shadow: 0 4px 24px rgba(26,122,76,0.4), 0 0 0 8px rgba(26,122,76,0); }
}

/* SECONDARY — normal, neutral */
.commit-btn--maybe {
  padding: 13px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
  letter-spacing: 0;
}

.commit-btn--maybe:hover {
  background: rgba(0,0,0,0.08);
}

/* GHOST — tiny, barely there */
.commit-btn--no {
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 400;
  background: transparent;
  color: #bbb;
  width: auto;
  margin: 0 auto;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-committed {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
}

.lead-committed.is-visible {
  max-height: 600px;
  opacity: 1;
}

.lead-curiosity {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.lead-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 16px 0 12px;
}

.lead-anchor {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.lead-anchor s {
  color: var(--text-muted);
  font-weight: 400;
}

.lead-authority {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.lead-free {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.lead-process {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto 22px;
}

/* Forms */
.lead-form {
  text-align: center;
}

.lead-form input {
  width: 100%;
  padding: 18px 20px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: left;
  border: 1.5px solid rgba(0, 0, 0, 0.13);
  border-radius: 12px;
  background: #f7f8fa;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input::placeholder {
  color: #b0b0b0;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.lead-form input:focus {
  border-color: rgba(26, 122, 76, 0.35);
  box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.1);
}

.lead-form input#audit-phone {
  border-color: rgba(26, 122, 76, 0.4);
}

.lead-form .btn-cta {
  margin-top: 4px;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  letter-spacing: -0.01em;
}

.form-trust svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.form-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-align: center;
  line-height: 1.5;
}

.lead-step-title {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.lead-step-lead {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 4px;
}

.lead-step-sub {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 6px;
}

.lead-step-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 20px;
}

.lead-step-time-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.lead-qual-form {
  text-align: left;
}

.lead-qual-form .form-field input,
.lead-qual-form .form-field select {
  font-family: Inter, system-ui, sans-serif;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.lead-qual-form .form-field input:focus,
.lead-qual-form .form-field select:focus {
  border-color: rgba(26, 122, 76, 0.35);
  box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.1);
}

.lead-qual-form .btn-cta {
  margin-top: 8px;
}

.trust-mobile { display: none; }
.trust-desktop { display: inline; }

@media (max-width: 640px) {
  .trust-mobile { display: inline; }
  .trust-desktop { display: none; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.form-field label {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--text);
}

/* Sections */
section {
  padding: 96px 0;
}

.deliverables {
  padding-bottom: 32px;
}

.booking-section-wrap {
  padding-top: 32px;
}

.vsl > .container > h2,
.deliverables > .container > h2 {
  color: #000000;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin: 0;
}

.setup-container {
  max-width: 1040px;
  text-align: center;
}

.setup-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  text-align: left;
  align-items: stretch;
}

.setup-col {
  padding: 36px 32px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.setup-col--before {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.setup-col--after {
  border: 1px solid rgba(26, 122, 76, 0.22);
  box-shadow:
    0 4px 24px rgba(26, 122, 76, 0.08),
    0 0 0 1px rgba(26, 122, 76, 0.04);
}

.setup-col__title {
  font-family: Poppins, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.2;
}

.setup-col--after .setup-col__title {
  color: var(--accent);
}

.setup-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.setup-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.setup-item:first-child {
  padding-top: 0;
}

.setup-list .setup-item:nth-child(1),
.setup-list .setup-item:nth-child(2),
.setup-list .setup-item:nth-child(3) {
  min-height: 88px;
}

.setup-list .setup-item:nth-child(4),
.setup-list .setup-item:nth-child(5) {
  min-height: 96px;
}

.setup-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.setup-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.setup-icon--muted {
  color: #9ca3af;
  background: rgba(0, 0, 0, 0.03);
}

.setup-icon--accent {
  color: var(--accent);
  background: rgba(26, 122, 76, 0.08);
}

.setup-icon--google {
  background: rgba(255, 255, 255, 0.95);
}

.setup-icon--instagram {
  background: rgba(255, 255, 255, 0.95);
}

.setup-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  min-width: 0;
}

.setup-item__title {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000000;
  line-height: 1.3;
}

.setup-item__desc {
  font-size: 0.975rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.setup-result {
  margin-top: 36px;
  padding: 18px 20px;
  border-radius: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  text-align: center;
}

.setup-result--bad {
  background: rgba(0, 0, 0, 0.04);
  color: #6b7280;
}

.setup-result--good {
  background: rgba(26, 122, 76, 0.1);
  color: #000000;
}

@media (max-width: 768px) {
  .container { padding: 0 15px; }
  .lead-box { max-width: 100%; padding: 24px 16px 20px; }
  .booking__fields { padding: 0; }

  .setup-compare {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .setup-col {
    padding: 28px 24px 24px;
  }

  .setup-col__title {
    margin-bottom: 24px;
  }

  .setup-item {
    gap: 14px;
    padding: 16px 0;
  }

  .setup-icon {
    width: 44px;
    height: 44px;
  }

  .setup-result {
    margin-top: 28px;
  }
}

/* Deliverables */
.deliverables-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.deliverables-lead {
  margin: 36px 0 24px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: #000000;
}

.deliverables-lead strong {
  font-weight: 700;
  color: #000000;
}

.deliverables-lead em {
  font-style: italic;
  color: #000000;
}

.deliverables-includes-label {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.65;
  color: #000000;
}

.deliverables-includes-label strong {
  font-weight: 700;
}

.deliverables-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverables-list li {
  position: relative;
  padding-left: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: #000000;
}

.deliverables-list li::before {
  display: none;
}

.deliverables-total {
  margin: 0 0 28px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: #000000;
}

.deliverables-cta {
  margin-top: 4px;
  text-align: center;
}

.deliverables-total__amount {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  color: var(--accent);
}

@media (max-width: 640px) {
  .deliverables-block {
    max-width: 100%;
  }

  .deliverables-lead {
    margin-top: 28px;
    margin-bottom: 20px;
  }
}

.section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* Credibility */
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}

/* ── FAQ section ── */
.faq-section {
  padding: 3rem 0 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 16px;
  background: #0f2d1f;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  gap: 1rem;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.faq-question:hover { background: #163d28; }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  position: absolute;
  right: 16px;
}

.faq-item.is-open .faq-question { border-radius: 8px 8px 0 0; }

.faq-answer {
  display: none;
  padding: 1.5rem 1.5rem 1.75rem;
  background: transparent;
  border: none;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.faq-answer p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.5px;
  color: #333;
  margin: 0 0 1rem;
}

.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-answer { display: block; }

/* Footer */
.footer {
  padding: 32px 0 40px;
  text-align: center;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-legal a {
  color: #000000;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.6875rem;
  color: #aaa;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.modal-note {
  font-size: 0.875rem;
  margin-bottom: 24px !important;
}

/* Responsive */
@media (max-width: 640px) {
  .hero {
    padding: 48px 0 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
