@charset "UTF-8";

:root {
  --brand: #00ff88;
  --brand-d: #007a4a;
  --ink: #0b1a14;
  --line: #d7efe5;
  --bg: #f9fafb;
  --card: #ffffffcc;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg)
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px
}

.hdr {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.hdr-in {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo img {
  height: 40px;
  width: auto;
  display: block
}

.logo .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center
}

.logo .mark b {
  color: #001a12;
  font-weight: 800;
  font-size: 20px
}

.logo .word {
  font-weight: 800
}

.hero {
  background: linear-gradient(140deg, #fff 0%, #f5fffb 45%, #e6fff5 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.hero-in {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 72px 0 96px
}

@media(min-width:1000px) {
  .hero-in {
    grid-template-columns: minmax(0, 1fr) 420px
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #00aa66;
  opacity: .8
}

.title {
  font-weight: 700;
  line-height: 1.12;
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 60px);
  max-width: 680px
}

.grad {
  background: linear-gradient(90deg, #001a12 0, #007a4a 50%, #001a12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block
}

.sub {
  display: block;
  color: #007a4a;
  opacity: .9;
  font-size: clamp(18px, 2.5vw, 28px);
  margin-top: 10px
}

.features {
  display: grid;
  gap: 12px;
  margin-top: 28px
}

@media(min-width:720px) {
  .features {
    grid-template-columns: repeat(3, 1fr)
  }
}

.feature {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 18px rgba(0, 255, 136, .08)
}

.f-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 255, 136, .12);
  display: grid;
  place-items: center;
  margin-bottom: 6px
}

.feature h3 {
  margin: 6px 0 4px 0;
  font-size: 15px
}

.feature p {
  margin: 0;
  color: #2c4d41;
  font-size: 13px
}

.stats {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  text-align: center
}

@media(min-width:720px) {
  .stats {
    grid-template-columns: repeat(3, 1fr)
  }
}

.stat {
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px
}

.stat .val {
  font-weight: 800;
  color: var(--brand-d);
  font-size: 22px
}

.stat .lbl {
  color: #325448;
  font-size: 13px;
  margin-top: 4px
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.card h3 {
  margin: 2px 0 10px 0
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.input,
.textarea {
  width: 100%;
  border: 1px solid #cfe8dd;
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  background: #f3fef9;
  outline: none
}

.input:focus,
.textarea:focus {
  border-color: #00aa66;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, .2)
}

.textarea {
  min-height: 110px;
  resize: vertical
}

.grid-2 {
  display: grid;
  gap: 10px
}

@media(min-width:620px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  background: var(--brand);
  color: #001a12;
  font-weight: 700;
  cursor: pointer
}

.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid currentColor;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
  transition: .2s
}

.chip:hover {
  background-color: #000;
  color: #fff
}

.tg {
  color: #0088cc
}

.wa {
  color: #128C7E
}

.ms {
  color: #464EB8
}

footer {
  background: #111;
  color: #9aa3a8;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 12px;
  padding: 26px 0
}

.thankyou-card {
  padding: 28px;
  text-align: center;
  font-size: 16px
}

.fade-in {
  animation: fadein .5s ease-out both
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(4px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* === CSS-ONLY ANIMATIONS (no JS) === */
@keyframes revealLine {
  from {
    clip-path: inset(0 100% 0 0)
  }

  to {
    clip-path: inset(0 0 0 0)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pop {
  0% {
    transform: scale(.98);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(0, 255, 136, 0)
  }

  100% {
    box-shadow: 0 6px 24px rgba(0, 255, 136, .18)
  }
}

.title .grad {
  animation: revealLine 900ms ease-out both
}

.feature {
  animation: fadeUp .6s ease-out both
}

.feature:nth-child(2) {
  animation-delay: .08s
}

.feature:nth-child(3) {
  animation-delay: .16s
}

.stat {
  animation: pop .5s ease-out both
}

.stat:nth-child(2) {
  animation-delay: .08s
}

.stat:nth-child(3) {
  animation-delay: .16s
}

.btn {
  animation: glow .9s ease-out both
}

/* === CSS-ONLY ANIMATIONS (no JS) === */
@keyframes revealLine {
  from {
    clip-path: inset(0 100% 0 0)
  }

  to {
    clip-path: inset(0 0 0 0)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pop {
  0% {
    transform: scale(.98);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(0, 255, 136, 0)
  }

  100% {
    box-shadow: 0 6px 24px rgba(0, 255, 136, .18)
  }
}

.title .grad {
  animation: revealLine 900ms ease-out both
}

.feature {
  animation: fadeUp .6s ease-out both
}

.feature:nth-child(2) {
  animation-delay: .08s
}

.feature:nth-child(3) {
  animation-delay: .16s
}

.stat {
  animation: pop .5s ease-out both
}

.stat:nth-child(2) {
  animation-delay: .08s
}

.stat:nth-child(3) {
  animation-delay: .16s
}

.btn {
  animation: glow .9s ease-out both
}

/* Odometer-style number reveal (pure CSS) */
.odometer {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
  font-weight: 800
}

.odometer i {
  font-style: normal;
  font-weight: inherit;
  font-family: inherit
}

.odometer .d {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  width: .66em;
  line-height: 1
}

.odometer .strip {
  display: grid;
  grid-auto-rows: 1em;
  transform: translateY(0);
  animation: roll 1400ms ease-out forwards
}

.odometer .sym,
.odometer .sep,
.odometer .plus {
  padding: 0 1px
}

.odometer .d {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  width: .66em
}

.odometer .strip {
  display: grid;
  grid-auto-rows: 1em;
  transform: translateY(0);
  animation: roll 1400ms ease-out forwards
}

@keyframes roll {
  to {
    transform: translateY(calc(var(--n)*-1em))
  }
}