:root {
  --ink: #0f1117;
  --ink2: #3a3d4a;
  --ink3: #7a7e8e;
  --bg: #f5f4f0;
  --bg2: #eeede8;
  --white: #ffffff;
  --green: #1a6b4a;
  --green-mid: #1D9E75;
  --green-light: #d4f0e5;
  --green-pale: #edf9f4;
  --accent: #e8f050;
  --accent2: #ff6b35;
  --border: rgba(15,17,23,0.1);
  --r: 12px;
  --r-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo { font-family: 'Syne', sans-serif; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,244,240,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.logo span { color: var(--green-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink2);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--ink); }

.btn-nav {
  background: var(--ink);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px !important;
  transition: background .2s !important;
}

.btn-nav:hover { background: var(--green) !important; color: var(--white) !important; }

/* HERO */
.hero {
  padding: 100px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-mid);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-mid);
  border-radius: 2px;
  opacity: .4;
}

.hero-desc {
  font-size: 18px;
  color: var(--ink2);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}

.btn-primary:hover { background: var(--green); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--ink2); transform: translateY(-1px); }

/* HERO CARD */
.hero-visual {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,17,23,.08);
}

.card-top {
  background: var(--ink);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.d1 { background: #ff5f57; }
.d2 { background: #febc2e; }
.d3 { background: #28c840; }

.card-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-family: 'Syne', sans-serif;
  margin-left: auto;
}

.card-body { padding: 20px; }

.card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  background: var(--bg);
  animation: slideIn .5s ease forwards;
  opacity: 0;
  transform: translateY(8px);
}

.card-item:nth-child(1) { animation-delay: .2s; }
.card-item:nth-child(2) { animation-delay: .4s; }
.card-item:nth-child(3) { animation-delay: .6s; }

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

.card-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ico-green { background: var(--green-light); }
.ico-amber { background: #fef3c7; }
.ico-blue { background: #dbeafe; }

.card-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  margin-bottom: 2px;
}

.card-item-sub {
  font-size: 12px;
  color: var(--ink3);
}

.card-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-green { background: var(--green-light); color: var(--green); }
.tag-amber { background: #fef3c7; color: #92400e; }
.tag-blue { background: #dbeafe; color: #1e40af; }

/* STATS BAR */
.stats-bar {
  background: var(--ink);
  padding: 28px 5%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
/*
.stat-item {


}

*/
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.stat-txt {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* MODULES */
.section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  font-size: 17px;
  color: var(--ink2);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.module-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15,17,23,.1);
}

.module-header {
  padding: 28px 28px 0;
}

.module-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink3);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.module-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 10px;
}

.module-desc {
  font-size: 14px;
  color: var(--ink2);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
}

.module-steps {
  border-top: 1px solid var(--border);
  padding: 20px 28px 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink2);
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg2);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
}

.module-card.featured .step-n { background: var(--green-light); color: var(--green); }

.module-card.featured {
  background: var(--ink);
  border-color: transparent;
}

.module-card.featured .module-num { color: rgba(255,255,255,.4); }
.module-card.featured .module-title { color: var(--white); }
.module-card.featured .module-desc { color: rgba(255,255,255,.6); }
.module-card.featured .module-steps { border-top-color: rgba(255,255,255,.1); }
.module-card.featured .step { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.08); }

/* HOW IT WORKS */
.how-section {
  background: var(--white);
  padding: 80px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 52px;
}

.how-item {
  background: var(--white);
  padding: 32px;
}

.how-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.how-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
}

.how-desc {
  font-size: 14px;
  color: var(--ink2);
  font-weight: 300;
  line-height: 1.7;
}

/* PRICING */
.pricing-section { padding: 80px 5%; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.price-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: transform .2s;
}

.price-card:hover { transform: translateY(-2px); }

.price-card.popular {
  background: var(--ink);
  border-color: transparent;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  letter-spacing: .5px;
}

.price-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink3);
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
  margin-bottom: 8px;
}

.price-card.popular .price-type { color: rgba(255,255,255,.4); }

.price-val {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  margin-bottom: 4px;
  line-height: 1;
}

.price-card.popular .price-val { color: var(--white); }

.price-curr {
  font-size: 16px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
  letter-spacing: 0;
  color: var(--ink3);
}

.price-card.popular .price-curr { color: rgba(255,255,255,.5); }

.price-sub {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 24px;
}

.price-card.popular .price-sub { color: rgba(255,255,255,.4); }

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.price-card.popular .price-divider { background: rgba(255,255,255,.1); }

.price-features { list-style: none; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink2);
  padding: 6px 0;
  font-weight: 300;
}

.price-card.popular .price-features li { color: rgba(255,255,255,.7); }

.price-features li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FORM SECTION */
.form-section {
  background: var(--ink);
  padding: 80px 5%;
}

.form-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.form-inner .section-tag { color: var(--accent); }
.form-inner .section-title { color: var(--white); }
.form-inner .section-sub { color: rgba(255,255,255,.55); margin: 0 auto 48px; }

.form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: left;
}

.toggle-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 28px;
}

.type-btn {
  padding: 9px;
  border: none;
  background: transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.type-btn.on {
  background: var(--white);
  color: var(--ink);
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.f-field { margin-bottom: 14px; }

.f-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 7px;
  font-family: 'Syne', sans-serif;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-size: 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,.25); }

.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--green-mid);
}

.f-select { cursor: pointer; }
.f-select option { background: var(--ink); color: var(--white); }

.f-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.fchip {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
  font-family: 'DM Sans', sans-serif;
}

.fchip.on {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

.f-divider { height: 1px; background: rgba(255,255,255,.08); margin: 20px 0; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}

.btn-submit:hover { background: #17855f; transform: translateY(-1px); }
.btn-submit:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  margin-top: 12px;
  line-height: 1.6;
}

.success-wrap {
  text-align: center;
  padding: 20px;
  display: none;
}

.success-ico {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.success-wrap h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.success-wrap p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* CONTACT SECTION */
.contact-section {
  background: var(--white);
  padding: 80px 5%;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 52px;
}

.contact-item {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-item:hover {
  background: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(29,158,117,.1);
}

.contact-ico {
  font-size: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
}

.contact-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--green-mid);
  text-decoration: none;
  transition: color .2s;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--green);
  text-decoration: underline;
} 


/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo { font-size: 16px; font-weight: 800; color: var(--ink); font-family: 'Syne', sans-serif; }
.footer-logo span { color: var(--green-mid); }
.footer-txt { font-size: 13px; color: var(--ink3); }

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
  .hero-visual { display: none; }
  .modules-grid, .how-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .f-row { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}