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

:root {
  --green:       #4ADE80;
  --green-light: #86EFAC;
  --green-dark:  #16A34A;
  --bg-dark:     #030E08;
  --bg-mid:      #0B3D2E;
  --bg-card:     #0D1F16;
  --bg-card2:    #111F18;
  --text-white:  #F0FDF4;
  --text-muted:  #A7B8AF;
  --border:      rgba(74, 222, 128, 0.15);
  --border-hover:rgba(74, 222, 128, 0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}
.wa-float:hover {
  background: #1ebd58;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.wa-float svg { flex-shrink: 0; }

/* ─── TOPBAR ─── */
.topbar {
  background: #020A05;
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  color: var(--text-muted);
}
.topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-right { color: var(--green); }

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(3, 14, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text-white);
  letter-spacing: -0.3px;
}
.brand-text span { color: var(--green); }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #1ebd58; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 22px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-svg { width: 100%; height: 100%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-check { color: var(--green); font-weight: 700; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #1ebd58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--border-hover);
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--border-hover);
  transition: all 0.25s;
}
.btn-outline-dark:hover { background: var(--border); }

/* ─── EYEBROW & SECTION HEAD ─── */
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 0;
  background: var(--bg-mid);
  background: linear-gradient(180deg, #030E08 0%, #0B3D2E22 50%, #030E08 100%);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  transition: all 0.25s;
}
.how-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74, 222, 128, 0.08);
}
.how-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 18px;
  opacity: 0.7;
}
.how-icon { margin-bottom: 18px; }
.how-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 10px;
}
.how-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── PRODUCTS ─── */
.products-section {
  padding: 100px 0;
  background: var(--bg-dark);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74, 222, 128, 0.08);
}
.featured-product {
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(145deg, #0D2518, #0B1F14);
}
.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #030E08;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-badge-blue {
  background: #60A5FA;
  color: #030E08;
}
.product-icon { margin-bottom: 20px; }
.product-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 4px;
}
.product-type {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0.8;
}
.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.product-benefits {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.product-benefits li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-benefits li::before {
  content: '→';
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: auto;
}
.product-cta:hover { background: #1ebd58; transform: translateY(-1px); }
.product-cta-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--border-hover);
}
.product-cta-outline:hover { background: var(--border); transform: translateY(-1px); }

.products-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.products-note a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.products-note a:hover { text-decoration: underline; }

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 22px;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 48px;
  flex: 1;
  min-width: 180px;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
.about-section {
  padding: 100px 0;
  background: var(--bg-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.about-visual svg { display: block; }

.about-text .eyebrow { display: block; margin-bottom: 10px; }
.about-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.about-lead {
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features { margin-top: 24px; }
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.feat-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #030E08 0%, #0B3D2E1A 100%);
}
.contact-grid-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.cc-icon { font-size: 36px; margin-bottom: 14px; }
.contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-url {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--green);
  margin-top: 18px;
  display: block;
}

/* ─── DISCLAIMER ─── */
.disclaimer {
  background: #020A05;
  border-top: 1px solid var(--border);
  padding: 20px 22px;
}
.disclaimer p {
  font-size: 11px;
  color: #4a6650;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}
.disclaimer strong { color: #6a8a70; }

/* ─── FOOTER ─── */
.footer {
  background: #020A05;
  border-top: 1px solid var(--border);
  padding: 52px 22px 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #2a4030;
  font-family: 'Space Mono', monospace;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat-item { min-width: 140px; padding: 16px 24px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 80px 18px 60px; }
  .hero-h1 { font-size: 40px; }
  .wa-float span { display: none; }
  .wa-float { padding: 12px 14px; }
  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
}
