
: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 WRAPPER ──────────────────────────────────────── */
.hero-wrapper {
  position: relative;
  background: #f8faf5;
  background-image:
    radial-gradient(
      ellipse 55% 45% at 0% 0%,
      rgba(113, 191, 68, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 100%,
      rgba(113, 191, 68, 0.14) 0%,
      transparent 72%
    );
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: auto;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 88px;
  gap: 64px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* LEFT COLUMN */
.hero-left {
  flex: 1;
  max-width: 560px;
}

.hero-headline {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.15;
  color: #111111;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #222222;
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 520px;
}

/* Value bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.hero-bullet-text {
  font-size: 16px;
  color: #222222;
  line-height: 1.5;
  font-weight: 600;
}

/* RIGHT COLUMN — FORM CARD */
.hero-right {
  flex: 0 0 575px;
}

.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;
  font-size: inherit !important;
}

/* ─── 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: 48px 0 40px;
  overflow: hidden;
}

.proof-bar-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.proof-bar-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(26px, 3.2vw, 30px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 0 28px;
  padding: 0 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.proof-bar .logo-slider {
  overflow: hidden;
  width: 100%;
}

.proof-bar .logo-track {
  display: flex;
  gap: 60px;
  will-change: transform;
  padding: 20px 0;
  align-items: center;
}

.proof-bar .logo-track img {
  width: 180px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* ─── 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;
}

.ft-trial-includes {
  background: #ffffff;
  padding-top: 88px;
  padding-bottom: 88px;
  padding-left: unset;
  padding-right: unset;
}

.ft-includes-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 0px;
  text-align: left;
}

.ft-includes-sub {
  font-size: 17px;
  color: #3A4A5C;
  max-width: unset !important;
  line-height: 1.65;
  margin-bottom: 0;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.wyg-card {
  background: #ffffff;
  border: 0.84px solid #DDE4ED;
  border-radius: 16px;
  padding: 28px 24px 24px;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
  position: relative;
}

.wyg-card:hover {
  border: 0.84px solid #71BF44;
  box-shadow: 0px 0px 7.3px 1px #71BF4445;
  transform: translateY(-2px);
}

.wyg-card::after {
  display: none;
}

.wyg-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F7DF;
  transition: background 0.22s ease;
}

.wyg-card:hover .wyg-icon {
  background: #dff3d1;
}

.wyg-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.wyg-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.wyg-text {
  font-size: 15px;
  color: #3A4A5C;
  line-height: 1.65;
  margin: 0;
}

/* ─── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 0;
  border-right: 0;
  border-image: linear-gradient(268.89deg, #71bf44 2.49%, #0085cd 97.23%) 1;
  background: #ffffff;
  padding: 56px 0px;
  margin-bottom: 70px !important;
}

.ft-stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: center;
}

.ft-stats-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0D1B2A;
  margin: 0 0 14px;
}

.ft-stats-desc {
  font-size: 18px;
  color: #3A4A5C;
  line-height: 1.65;
  margin: 0;
  /* max-width: 360px; */
}

.ft-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.stat-item {
  padding: 0;
  text-align: center;
}

.stat-number {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(34px, 3.5vw, 44px);
  font-weight: 600;
  color: #71BF44;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 15px;
  color: #222222;
  line-height: 1.5;
  font-weight: 400;
}

/* ─── WHAT HAPPENS NEXT ────────────────────────────────── */
.hiw,
.ft-hiw {
  background: #F4F7FA;
  display: flex;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: 88px;
  padding-left: 0px;
  padding-right: 0px;
}

.ft-hiw-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 0;
  text-align: center;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.hiw-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: #dfe7ef;
  z-index: 0;
}

.hiw-steps::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  width: calc(100% - (100% / 3));
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hiw-steps.step-2::after {
  transform: scaleX(0.5);
}

.hiw-steps.step-3::after {
  transform: scaleX(1);
}

.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: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "CooperBTLight", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #111111;
  margin: 0 auto 24px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.hiw-step.active .hiw-step-num {
  background: #71bf44;
  border-color: #71bf44;
  color: #ffffff;
  transform: scale(1.05);
}

.hiw-step-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hiw-step-text {
  font-size: 15px;
  color: #3A4A5C;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ─── TESTIMONIAL CAROUSEL ─────────────────────────────── */
.ft-testimonial-section {
  background: #ffffff;
  padding-top: 88px;
  padding-bottom: 88px;
  padding-left: 0px;
  padding-right: 0px;
}

.ft-testimonial-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 600;
  color: #0D1B2A;
  text-align: center;
  margin: 0;
}

.ft-testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.ft-testi-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ft-testi-nav:hover {
  color: var(--green);
  transform: scale(1.08);
}

.ft-testi-viewport {
  flex: 1;
  min-width: 0;
  display: grid;
}

.ft-testi-slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: flex;
}

.ft-testi-slide.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  animation: ftTestiFade 0.45s ease;
}

@keyframes ftTestiFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ft-testi-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 48px 56px 40px;
  background: linear-gradient(90deg, #022213 0%, #155C3A 100%);
  box-shadow: 0px 4px 100px 0px #11111140;
  flex: 1;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.ft-testi-quote {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(22px, 2.4vw, 25px);
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.55;
  margin: 0 0 40px;
  max-width: 92%;
  position: relative;
  z-index: 1;
}

.ft-testi-footer {
  position: relative;
  z-index: 1;
}

.ft-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft-testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ft-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0085cd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "MilligramText-Medium", "MilligramText-Regular", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  flex-shrink: 0;
}

.ft-testi-name {
  font-family: "MilligramText-Medium", "MilligramText-Regular", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.ft-testi-role {
  font-family: "MilligramText-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.ft-testi-quote-mark {
  position: absolute;
  right: 28px;
  bottom: 20px;
  width: clamp(100px, 12vw, 140px);
  height: auto;
  /* opacity: 0.28; */
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}
.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;
}

/* ─── FINAL CTA ────────────────────────────────────────── */
.final-cta,
.ft-final-cta {
  background: linear-gradient(180deg, #dcf6e3 0%, #b4e1b6 100%);
  padding: 88px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ft-final-cta-title {
  font-family: "CooperBTLight", sans-serif;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 600;
  color: #111111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}

.ft-final-cta-sub {
  font-size: 17px;
  color: #111111;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.final-cta .section-title {
  color: #222222;
  text-align: center;
}

.final-cta .section-sub {
  color: #222222;
  margin: 0 auto 36px;
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 14px 32px;
  border-radius: 10px;
  background: linear-gradient(90deg, #17A34C 0%, #099668 100%);
  color: #ffffff;
  font-family: "MilligramText-Medium", "MilligramText-Regular", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(9, 150, 104, 0.28);
  /* transition: all 0.25s ease; */
  display: inline-block;
}

.btn-cta-primary:hover {
  background: #0a7f5a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(9, 150, 104, 0.32);
}

.btn-cta-secondary {
  padding: 14px 32px;
  border-radius: 10px;
  border: 1.5px solid #56a130;
  background: rgba(232, 247, 223, 0.65);
  color: #111111;
  font-family: "MilligramText-Medium", "MilligramText-Regular", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn-cta-secondary:hover {
  border-color: #56a130;
  color: #111111;
  background: rgba(223, 243, 209, 0.95);
}

/* ─── 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-reverse;
    align-items: center;
    padding: 60px 0px;
  }
  .hero-right {
    flex: none;
    width: 100%;
    /* max-width: 520px; */
  }
  .wyg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-stats-bar-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ft-stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ft-testimonial-carousel {
    gap: 16px;
  }
  .ft-testi-card {
    padding: 36px 32px 32px;
  }
  .hiw-steps::before,
  .hiw-steps::after {
    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;
  }
  .ft-stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .ft-stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    padding: 40px 20px;
  }
  .proof-bar {
    padding: 36px 0 28px;
  }
  .module-grid {
    grid-template-columns: 1fr;
  }
  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .ft-testimonial-carousel {
    gap: 12px;
  }
  .ft-testi-nav {
    width: 36px;
    font-size: 24px;
  }
  .ft-testi-card {
    padding: 28px 24px 24px;
  }
  .ft-testi-quote {
    margin-bottom: 28px;
    max-width: 100%;
  }
  .ft-testi-quote-mark {
    right: 16px;
    bottom: 12px;
    width: 88px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hiw-step {
    padding: 0 12px;
  }
}
/*fonts*/
.wyg-title,
.stat-number,
.section-title,
.ft-testi-quote,
.form-card-title {
  font-family: "CooperBTLight", sans-serif;
}

@media screen and (max-width: 1366px) and (min-width: 1025px){
  .hero-right {
    flex: 0 0 465px;
  }
  .hero-inner{
    padding-left: unset !important;
    padding-right: unset !important;
  }
}


