/* ─── RESET & BASE ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) and (max-width: 1366px) {
  body {
    zoom: 80%;
  }
}
@font-face {
  font-family: "MilligramText-Regular";
  src: url("/assets/fonts/MilligramText-Regular.ttf") format("truetype");
  /* ,url('/assets/fonts/Milligram-Regular-trial.woff2') format('woff2'); */
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "MilligramText-Regular";
  src: url("/assets/fonts/MilligramText-Regular.ttf") format("truetype");
  /* ,url('/assets/fonts/Milligram-Regular-trial.woff2') format('woff2'); */
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "CooperBTMedium";
  src:
    url("/assets/fonts/webFonts/CooperBTMedium/font.woff2") format("woff2"),
    url("/assets/fonts/webFonts/CooperBTMedium/font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CooperBTLight";
  src:
    url("/assets/fonts/webFonts/CooperBTLight/font.woff2") format("woff2"),
    url("/assets/fonts/webFonts/CooperBTLight/font.woff") format("woff");
  font-display: swap;
}
:root {
  --green: #71bf44;
  --green-dark: #56a130;
  --green-light: #e8f7df;
  --blue: #0085cd;
  --blue-dark: #0068a3;
  --ink: #0d1b2a;
  --ink-soft: #3a4a5c;
  --mist: #f4f7fa;
  --white: #ffffff;
  --border: #dde4ed;
  --ff-title: "CooperBTMedium", Georgia, serif;
  --ff-body: "MilligramText-Regular";
  --radius: 14px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 4px 16px rgba(113, 191, 68, 0.35);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "MilligramText-Regular" !important ;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 16px;
}
.nav-logo-text {
  font-family: var(--ff-title);
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
}
.nav-logo-text span {
  color: var(--green);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--blue);
}
.nav-demo-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-demo-btn:hover {
  background: var(--blue);
  color: white;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;

  display: flex;
  align-items: stretch;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
/* Background texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 20% 50%,
      rgba(113, 191, 68, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 70% at 80% 30%,
      rgba(0, 133, 205, 0.1) 0%,
      transparent 70%
    );
  pointer-events: none;
}
/* Dot grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  gap: 72px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* LEFT COLUMN */
.hero-left {
  flex: 1;
  max-width: 650px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(113, 191, 68, 0.15);
  border: 1px solid rgba(113, 191, 68, 0.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-headline {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(36px, 5.5vw, 45px);
  line-height: 1.15;
  color: rgba(34, 34, 34, 1);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-headline .accent {
  color: var(--green);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.44px;
  font-size: clamp(36px, 4.5vw, 36px);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 1);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 480px;
}

/* Value bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bullet-icon svg {
  width: 12px;
  height: 12px;
}
.hero-bullet-text {
  font-size: 15px;
  color: rgba(34, 34, 34, 1);
  line-height: 1.5;
}
.hero-bullet-text strong {
  color: rgba(34, 34, 34, 1);
  font-weight: 600;
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(34, 34, 34, 1);
  font-weight: 500;
}
.trust-pill svg {
  color: var(--green);
}
.trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* RIGHT COLUMN — FORM CARD */
.hero-right {
  flex: 0 0 460px;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.form-card.success-mode > * {
  display: none;
}

.form-card.success-mode #formSuccess {
  display: block !important;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
}

.form-card-title {
  font-family: var(--ff-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.form-card-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* Step indicator */
.step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  align-items: center;
}
.step-dot {
  height: 4px;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.step-dot.active {
  background: var(--green);
  flex: 3;
}
.step-dot.done {
  background: var(--green);
  opacity: 0.4;
  flex: 1;
}
.step-dot.upcoming {
  background: var(--border);
  flex: 1;
}
.step-label {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}

/* Form steps */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeSlide 0.3s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single {
  grid-template-columns: 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}
label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
input,
select,
textarea {
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--mist);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 133, 205, 0.1);
  background: white;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a4a5c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

/* Module chips */
.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.module-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--mist);
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.3;
}
.module-chip input[type="checkbox"] {
  display: none;
}
.module-chip .chip-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: white;
}
.module-chip.checked {
  border-color: var(--green);
  background: rgba(113, 191, 68, 0.07);
  color: var(--ink);
}
.module-chip.checked .chip-check {
  background: var(--green);
  border-color: var(--green);
}
.module-chip:hover:not(.checked) {
  border-color: var(--blue);
}

/* Primary btn */
.btn.continue-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, #5cb337 100%);
  color: white;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-btn);
  transition: all 0.25s;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(113, 191, 68, 0.45);
}
.btn:active {
  transform: translateY(0);
}

.btn-back {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-top: 14px;
}
.btn-back:hover {
  color: var(--ink);
}

.form-note {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}
.form-note a {
  color: var(--blue);
  text-decoration: none;
}

/* ─── SUCCESS STATE ─────────────────────────────────────── */
/* SUCCESS STATE */
.form-success {
  /* display: none; */
  text-align: center;
  padding: 20px 0;
  opacity: 1 !important;
}

/* SUCCESS HEADER */
.success-header {
  margin-bottom: 20px;
}

/* SUCCESS STEP BAR */
.success-steps {
  margin: 16px 0 28px;
}

.success-steps .step-dot {
  height: 4px;
  border-radius: 2px;
  flex: 1;
  background: #cfe7c2;
}

.success-steps .step-dot.done {
  background: var(--green);
  flex: 2;
}

.success-steps .done-text {
  margin-left: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}



.form-success.active {
  display: block;
  opacity: 1;
  visibility: visible;
  min-height: 200px; /* important */
}

/* ERROR */
.error {
  border: 1px solid red !important;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-title {
  font-family: var(--ff-title);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.success-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── SOCIAL PROOF BAR ─────────────────────────────────── */
.proof-bar {
  background: linear-gradient(
    90deg,
    rgba(113, 191, 68, 1) 0%,
    rgba(0, 133, 205, 1) 100%
  );
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
}
.proof-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 12px;
  color: rgba(35, 35, 35, 1);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.proof-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-logo-item {
  font-family: var(--ff-title);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ─── WHAT YOU GET ─────────────────────────────────────── */
.section {
  padding: 100px 48px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(0, 133, 205, 0.08);
  border-radius: 100px;
}
.section-title {
  font-family: var(--ff-title);
  font-size: clamp(30px, 3.5vw, 40px);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: start;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.wyg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.wyg-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(113, 191, 68, 0.12);
  transform: translateY(-3px);
}
.wyg-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.wyg-card:hover::after {
  transform: scaleX(1);
}

.wyg-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.wyg-icon.green {
  background: var(--green-light);
}
.wyg-icon.blue {
  background: rgba(0, 133, 205, 0.1);
}
.wyg-icon.dark {
  background: rgba(13, 27, 42, 0.07);
}

.wyg-title {
  font-family: var(--ff-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.wyg-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  border: 3px solid transparent;
  border-left: 0;
  border-right: 0;

  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, rgba(113, 191, 68, 1), rgba(0, 133, 205, 1))
      border-box;
  padding: 72px 48px;
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
}
.stat-number {
  font-family: var(--ff-title);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  color: rgba(34, 34, 34, 1);
  line-height: 1.5;
  font-weight: 400;
}

/* ─── HOW IT WORKS ─────────────────────────────────────── */
.hiw {
  background: var(--mist);
  display: flex;
  justify-content: center;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* STEP 1 DONE */
.hiw-steps.step-1::after {
  transform: scaleX(0.33);
}

.hiw-steps.step-2::after {
  transform: scaleX(0.66);
}

.hiw-steps.step-3::after {
  transform: scaleX(1);
}

.hiw-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100% / 6);   /* start at center of first circle */
  right: calc(100% / 6);  /* end at center of last circle */
  height: 1px;
  background: #dfe7ef; /* light base line */
  z-index: 0;
}

/* PROGRESS LINE */
.hiw-steps::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100% / 6);   /* start at center of first circle */
  right: calc(100% / 6);  /* end at center of last circle */
  height: 2px;
  width: calc(100% - (100% / 3)); /* exact line length */
  transform: scaleX(0);
  transform-origin: left;
  /* background: linear-gradient(90deg, var(--green), var(--blue)); */
  z-index: 0;
  /* transition: width 1.2s ease; */
  /* transition: transform 1.2s ease-in-out; */
  /* transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1); */
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--blue) 50%,
    var(--green) 100%
  );
  background-size: 200% 100%;
  animation: flowLine 2s linear infinite;
}

@keyframes flowLine {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 100% 0;
  }
}

.hiw-step {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.hiw-step-num {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

/* ACTIVE STATE */
.hiw-step.active .hiw-step-num {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: scale(1.05);
}

/* OPTIONAL: subtle scale effect */
.hiw-step.active .hiw-step-num {
  transform: scale(1.05);
}



.hiw-step-title {
  font-family: var(--ff-title);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.hiw-step-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── TESTIMONIAL ──────────────────────────────────────── */
.testimonial-section {
  padding: 100px 48px;
}
.testimonial-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.testi-card {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--ff-title);
  font-size: 160px;
  color: rgba(113, 191, 68, 0.08);
  line-height: 1;
  pointer-events: none;
}
.testi-quote {
  font-family: var(--ff-title);
  font-size: 22px;
  font-style: italic;
  color: white;
  line-height: 1.55;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 18px;
  font-family: var(--ff-title);
  flex-shrink: 0;
}
.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.testi-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star {
  color: #f5a623;
  font-size: 16px;
}

.testi-right {
}
.testi-right .section-tag {
  margin-bottom: 16px;
}
.testi-right .section-title {
  margin-bottom: 20px;
}
.section-hiw-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-hiw-header .section-title {
  margin-bottom: 20px;
  text-align: center;
}
.testi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.testi-stat {
  background: var(--mist);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--green);
}
.testi-stat-num {
  font-family: var(--ff-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.testi-stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ─── FINAL CTA ────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(180deg, #e6f7ea 0%, #bfe7ca 100%);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(113, 191, 68, 0.08) 0%,
    transparent 70%
  );
}
.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta .section-title {
  color: black;
  text-align: center;
}
.final-cta .section-sub {
  color: rgba(34, 34, 34, 1);
  margin: 0 auto 36px;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  padding: 16px 36px;
  border-radius: 10px;
  background: rgba(9, 150, 104, 1);
  color: white;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: all 0.25s;
  display: inline-block;
  letter-spacing: 0.01em;
}
.btn-cta-primary:hover {
  background: rgba(23, 163, 76, 1);
  color: white;
  transform: translateY(-2px);
}
.btn-cta-secondary {
  border: 1.5px solid;
  padding: 16px 36px;
  border-radius: 10px;
  border-color: rgba(34, 34, 34, 1);
  color: rgba(34, 34, 34, 1);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-cta-secondary:hover {
  border-color: rgba(42, 172, 49, 0.5);
  color: rgb(29, 163, 58);
  background-color: #ffffff;
}

.final-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.final-trust-item {
  font-size: 13px;
  color: rgba(34, 34, 34, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── error ────────────────────────────────────────────── */
.error {
  border: 1px solid red !important;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}
/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 32px;
  }
  .hero-right {
    flex: none;
    width: 100%;
    max-width: 520px;
  }
  .wyg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }
  .hiw-steps::before {
    display: none;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nav {
    padding: 0 24px;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 20px;
  }
  .nav {
    padding: 0 20px;
  }
  .nav-right .nav-link {
    display: none;
  }
  .hero-inner {
    padding: 48px 20px;
  }
  .form-card {
    padding: 28px 20px;
  }
  .wyg-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar {
    padding: 48px 20px;
  }
  .proof-bar {
    padding: 16px 20px;
  }
  .module-grid {
    grid-template-columns: 1fr;
  }
  .testi-stats {
    grid-template-columns: 1fr 1fr;
  }
  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hiw-step {
    padding: 0 12px;
  }
}
/*fonts*/
.wyg-title,
.stat-number,
.section-title,
.testi-stat-num,
.testi-quote,
.form-card-title {
  font-family: "CooperBTLight", sans-serif;
}


