/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #5ABB28;
  --green-dark: #46991f;
  --green-light: #e8f7df;
  --navy: #1A1464;
  --navy-light: #2a2280;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--gray-600); }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--gray-50); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,187,40,.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.3);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__logo img { height: 38px; width: auto; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar__nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar__nav a:hover { color: var(--navy); }
.navbar__nav a:hover::after { transform: scaleX(1); }

.navbar__cta { display: flex; align-items: center; gap: 12px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.navbar__hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 20px 24px 24px;
  gap: 4px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.navbar__mobile a:hover { color: var(--navy); }
.navbar__mobile .btn { margin-top: 16px; justify-content: center; }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 96px;
  background: linear-gradient(135deg, #f0fbea 0%, #edf2ff 60%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(90,187,40,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,20,100,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero__title span { color: var(--green); }

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--gray-400);
}
.hero__trust-dots {
  display: flex;
  gap: -4px;
}
.hero__trust-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-left: -6px;
}
.hero__trust-dot:first-child { margin-left: 0; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.hero__card-logo { height: 32px; }
.hero__card-title { font-size: .85rem; font-weight: 600; color: var(--navy); }
.hero__card-subtitle { font-size: .75rem; color: var(--gray-400); }

.hero__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.hero__metric {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
}
.hero__metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__metric-value.green { color: var(--green); }
.hero__metric-label { font-size: .75rem; color: var(--gray-400); }

.hero__progress-wrap { margin-bottom: 8px; }
.hero__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--gray-600);
  margin-bottom: 6px;
  font-weight: 500;
}
.hero__progress-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.hero__progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.hero__float--1 {
  top: -16px;
  right: -16px;
  animation: float 3s ease-in-out infinite;
}
.hero__float--2 {
  bottom: -16px;
  left: -16px;
  animation: float 3s ease-in-out infinite .8s;
}
.hero__float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__float-icon.green { background: var(--green-light); color: var(--green-dark); }
.hero__float-icon.navy { background: #e8e7f7; color: var(--navy); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== LOGOS / PARTNERS ===== */
.logos { padding: 40px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.logos__label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.logos__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logos__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-400);
}
.logos__badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ===== FEATURES ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.feature-card__icon svg { color: var(--green-dark); transition: color var(--transition); }
.feature-card:hover .feature-card__icon { background: var(--green); }
.feature-card:hover .feature-card__icon svg { color: var(--white); }

.feature-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: .9rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.how__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  z-index: 0;
}

.how__step { text-align: center; position: relative; z-index: 1; }
.how__number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 20px;
  position: relative;
}
.how__step h3 { margin-bottom: 10px; font-size: 1rem; }
.how__step p { font-size: .88rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(90,187,40,.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(90,187,40,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner__tag {
  display: inline-block;
  background: rgba(90,187,40,.2);
  color: #9ee05f;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(90,187,40,.3);
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner__detail {
  margin-top: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ===== BENEFITS ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.benefits__list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.benefits__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefits__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: .75rem;
  margin-top: 2px;
}
.benefits__item-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; font-size: .95rem; }
.benefits__item-desc { font-size: .88rem; }

.benefits__visual {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4aa0 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.benefits__visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(90,187,40,.25) 0%, transparent 70%);
}
.benefits__logo { height: 40px; margin-bottom: 32px; }
.benefits__stat {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.benefits__stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.benefits__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.benefits__stat-label { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ===== TESTIMONIAL ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card__stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }
.testimonial-card__text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: .88rem; color: var(--navy); }
.testimonial-card__role { font-size: .78rem; color: var(--gray-400); }

/* ===== FAQ ===== */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}
.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  transition: all var(--transition);
}
.faq__item.open .faq__icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  display: none;
  padding-bottom: 20px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.faq__item.open .faq__answer { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: .88rem; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer__contact { font-size: .85rem; line-height: 1.8; }
.footer__contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__contact a:hover { color: var(--green); }

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--green); }

.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social-link:hover {
  background: var(--green);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer__bottom-right { display: flex; gap: 24px; }
.footer__bottom-right a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__bottom-right a:hover { color: var(--green); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.whatsapp-float__bubble {
  background: var(--white);
  color: var(--gray-800);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 12px 12px 0 12px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: fadeIn .4s ease;
}
.whatsapp-float__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}
@keyframes fadeIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a2280 100%);
  padding: 120px 0 64px;
  text-align: center;
  color: var(--white);
}
.page-hero__tag {
  display: inline-block;
  background: rgba(90,187,40,.2);
  color: #9ee05f;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(90,187,40,.3);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: 2.4rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; }

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.prose h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}
.prose h3 { font-size: 1.1rem; color: var(--navy); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 16px 24px; }
.prose li { font-size: .95rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 6px; }
.prose strong { color: var(--navy); }
.prose a { color: var(--green); text-decoration: underline; }

/* ===== AFFILIATES ===== */
.affiliates__highlight {
  background: linear-gradient(135deg, var(--green-light) 0%, #edf2ff 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}
.affiliates__highlight .big { font-size: 3rem; font-weight: 800; color: var(--green); }
.affiliates__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.affiliates__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.affiliates__card-icon { font-size: 2rem; margin-bottom: 12px; }
.affiliates__card h3 { color: var(--navy); margin-bottom: 10px; }
.affiliates__card p { font-size: .88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { padding: 120px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__card { max-width: 100%; }
  .hero__float { display: none; }

  .section { padding: 64px 0; }

  .features__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .affiliates__cards { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-right { flex-wrap: wrap; justify-content: center; }

  .cta-banner__actions { flex-direction: column; align-items: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .how__grid { grid-template-columns: 1fr; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.green-text { color: var(--green); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
.fade-in-delay-5 { transition-delay: .5s; }
