*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --blue: #224181;
  --blue-light: #2e55a8;
  --green: #80c241;
  --green-dark: #6aaa32;
  --green-pale: #f2fae8; /* Very light green background */
  --green-tint: #e8f5d8; /* Slightly deeper for contrast sections */
  --white: #ffffff;
  --text: #1a2640;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #d4e8b8;
  --shadow: 0 4px 24px rgba(34, 65, 129, 0.1);
  --shadow-lg: 0 12px 48px rgba(34, 65, 129, 0.14);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--green-pale);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ── NAV ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 6vw;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(34, 65, 129, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ── SHARED ── */
.section-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 6vw;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title .green {
  color: var(--green-dark);
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
}

/* ── HERO: COPY BLOCK ── */
#hero-copy {
  background: var(--white);
  padding: 72px 6vw 56px;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero-tag i {
  font-size: 14px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title .green {
  color: var(--green-dark);
}

.hero-p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
}

/* inline mini-stats row */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 680px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
}

.hero-stat {
  flex: 1 1 0;
  min-width: 120px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1.5px solid var(--border);
  background: var(--white);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat .num {
  font-family: "League Gothic", sans-serif;
  font-size: 30px;
  color: var(--blue);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.trust-pill i {
  color: var(--green);
  font-size: 16px;
}

/* ── HERO: FORM STRIP ── */
#hero-form-strip {
  background: var(--green-tint);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 56px 6vw 64px;
  text-align: center;
}

.form-strip-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-strip-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 6px;
}

.form-strip-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* ── FORM CARD ── */
.form-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.form-card-head {
  text-align: center;
  margin-bottom: 4px;
}

.form-card-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 3px;
}

.form-card-head p {
  font-size: 13px;
  color: var(--text-light);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--green-pale);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(128, 194, 65, 0.15);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* GHL Embed placeholder */
.ghl-embed-area {
  background: var(--green-pale);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 16px;
}

.ghl-embed-area p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.ghl-embed-area code {
  display: block;
  background: rgba(34, 65, 129, 0.06);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--blue);
  margin-top: 10px;
  word-break: break-all;
}

.btn-cta {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(128, 194, 65, 0.35);
}

.btn-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128, 194, 65, 0.45);
}
.btn-cta:active {
  transform: translateY(0);
}

.btn-cta i {
  margin-right: 8px;
}

.form-micro {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-micro i {
  color: var(--green);
}

/* ── PROCESS ── */
#process {
  padding: 96px 6vw;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header .section-sub {
  margin: 0 auto;
}

.steps-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  flex-shrink: 0;
}

.step:hover .step-bubble {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(128, 194, 65, 0.3);
}

.step-bubble i {
  font-size: 28px;
  color: var(--green);
  transition: color 0.25s;
}

.step:hover .step-bubble i {
  color: var(--white);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.step-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── STORY ── */
#story {
  padding: 96px 6vw;
  background: var(--green-tint);
}

.story-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  height: auto;
  width: 900px;
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.story-badge .big {
  font-family: "League Gothic", sans-serif;
  font-size: 42px;
  color: var(--green);
  line-height: 1;
}
.story-badge .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.story-content .section-sub {
  margin-bottom: 32px;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-val {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.val-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(34, 65, 129, 0.07);
}

.val-icon i {
  font-size: 20px;
  color: var(--green-dark);
}

.val-text h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 3px;
}

.val-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 96px 6vw;
  background: var(--white);
}

.test-header {
  text-align: center;
  margin-bottom: 56px;
}
.test-header .section-sub {
  margin: 0 auto;
}

.test-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: var(--green-pale);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.test-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.test-stars i {
  color: #f5b014;
  font-size: 16px;
}

.test-card blockquote {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "League Gothic", sans-serif;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.author-ava.green {
  background: var(--green);
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.author-loc {
  font-size: 12px;
  color: var(--text-light);
}

/* ── BEFORE / AFTER ── */
#before-after {
  padding: 96px 6vw;
  background: var(--green-tint);
}

.ba-header {
  text-align: center;
  margin-bottom: 56px;
}
.ba-header .section-sub {
  margin: 0 auto;
}

.ba-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ba-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.ba-img.before {
  background: #f0e8d8;
}
.ba-img.after {
  background: #d8f0d8;
}

.ba-img i {
  font-size: 36px;
}
.ba-img.before i {
  color: #c4935a;
}
.ba-img.after i {
  color: var(--green-dark);
}

.ba-img span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ba-img.before span {
  color: #9a6a3a;
}
.ba-img.after span {
  color: var(--green-dark);
}

.ba-label-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ba-divider-line {
  width: 2px;
  height: 48px;
  background: var(--white);
}

.ba-vs {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ba-info {
  padding: 18px 20px;
}

.ba-info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.ba-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* ── BOTTOM CTA ── */
#bottom-cta {
  background: var(--blue);
  padding: 88px 6vw;
  text-align: center;
}

#bottom-cta .section-label {
  color: rgba(255, 255, 255, 0.55);
}

#bottom-cta .section-title {
  color: var(--white);
  margin-bottom: 16px;
}
#bottom-cta .section-title .green {
  color: var(--green);
}

#bottom-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 18px 40px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 24px rgba(128, 194, 65, 0.4);
}

.cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

footer p {
  font-size: 12px;
  color: var(--text-light);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-badge {
    right: 0;
    bottom: -16px;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-stats-row {
    border-radius: 10px;
  }
  .hero-stat {
    min-width: 90px;
    padding: 14px 8px;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }
}
