:root {
  --green: #00a847;
  --green-dark: #008839;
  --green-deep: #005523;
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --gray-text: #5A5A5A;
  --gray-line: #E8E8E8;
  --bg: #FAFAF8;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Gabarito', sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ===================== HEADER ===================== */
header {
  background: var(--white);
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gray-line);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-wrap img {
  height: 26px;
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 50%;
  color: var(--black);
}

.logo-text span {
  font-weight: 500;
  letter-spacing: 20%;
  color: var(--gray-text);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F0FDF4;
  color: var(--green-deep);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #BBF7D0;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 200, 83, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

/* ===================== HERO ===================== */
.hero {
  padding: 3.5rem 1.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.10) 0%, rgba(0, 200, 83, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.pre-headline {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  background: #F0FDF4;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid #BBF7D0;
  animation: fadeUp 0.7s ease-out;
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: var(--green);
  opacity: 0.35;
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.08rem;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero p strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===================== CTA BUTTON ===================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--green);
  color: var(--white);
  padding: 1.1rem 2.2rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 14px rgba(0, 200, 83, 0.35),
    0 12px 28px rgba(0, 200, 83, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 6px 18px rgba(0, 200, 83, 0.45),
    0 18px 36px rgba(0, 200, 83, 0.22);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button .arrow {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.cta-button:hover .arrow {
  transform: translateX(3px);
}

.cta-microcopy {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--gray-text);
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.cta-microcopy strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 1.5rem;
}

.trust-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
  align-items: center;
}

.trust-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust-item .num em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
}

.trust-item .label {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 0.35rem;
  line-height: 1.3;
}

/* ===================== BENEFITS ===================== */
.testimonials {
  padding: 4rem 1.5rem 3rem;
  max-width: 920px;
  margin: 0 auto;
}

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-align: center;
}

.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.3rem);
  font-weight: 800;
  text-align: center;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
}

.section-sub {
  text-align: center;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  place-items: center;
  
  gap: 0.2rem;
}

.testimonial-card {
  background: var(--white);
  /* padding: 1.8rem 1.6rem; */
  width: 80%;
  border-radius: 16px;
  border: 1px solid var(--gray-line);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.testimonial-card video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(0, 200, 83, 0.10);
}

/* .benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.benefit-card p {
  font-size: 0.94rem;
  color: var(--gray-text);
  line-height: 1.55;
} */

/* ===================== HOW IT WORKS ===================== */
.how {
  background: var(--white);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.how-inner {
  max-width: 620px;
  margin: 0 auto;
}

.how-list {
  list-style: none;
  counter-reset: step;
  margin-top: 2rem;
}

.how-list li {
  counter-increment: step;
  position: relative;
  padding: 1.2rem 0 1.2rem 3.2rem;
  border-bottom: 1px solid var(--gray-line);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

.how-list li:last-child {
  border-bottom: none;
}

.how-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.2rem;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--green-deep);
  line-height: 1;
}

.how-list li strong {
  display: block;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.how-list li span {
  color: var(--gray-text);
  font-size: 0.92rem;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 200, 83, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 200, 83, 0.06), transparent 50%),
    var(--black);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(0, 200, 83, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--white);
}

.final-cta h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.cta-button-final {
  background: var(--white);
  color: var(--black);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05) inset,
    0 6px 20px rgba(0, 200, 83, 0.4),
    0 18px 40px rgba(0, 0, 0, 0.5);
}

.cta-button-final:hover {
  background: var(--green);
  color: var(--white);
}

.final-microcopy {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1.8rem 1rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer p {
  margin: 0.3rem 0;
}

footer .official {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-line);
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.sticky-mobile-cta .cta-button {
  width: 100%;
  padding: 0.95rem 1.5rem;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 720px) {
  header {
    padding: 1rem 1.2rem;
  }

  .logo-wrap img {
    height: 30px;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .header-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .hero {
    padding: 2.5rem 1.2rem 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .trust-grid {
    gap: 0.5rem;
  }

  .trust-item .num {
    font-size: 1.3rem;
  }

  .trust-item .label {
    font-size: 0.7rem;
  }

  .benefits {
    padding: 3rem 1.2rem 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how {
    padding: 3rem 1.2rem;
  }

  .final-cta {
    padding: 3.5rem 1.2rem;
  }

  footer {
    padding-bottom: 5rem;
  }

  .sticky-mobile-cta {
    display: block;
  }
}

@media (max-width: 420px) {
  .header-badge .badge-text {
    display: none;
  }

  .header-badge {
    padding: 0.4rem;
  }

  .hero h1 {
    letter-spacing: -0.03em;
  }

  .cta-button {
    padding: 1rem 1.6rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
}

/* ===================== UTILS ===================== */
.nowrap {
  white-space: nowrap;
}