:root {
  --navy: #0D1B3E;
  --navy-dark: #070E20;
  --navy-mid: #152850;
  --green: #1A7A4A;
  --green-bright: #22A060;
  --green-light: #E8F5EE;
  --yellow: #F5A800;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EC;
  --gray-500: #8896A5;
  --gray-700: #4A5568;
  --text: #1A2535;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-navy { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 15px; padding: 14px 28px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,122,74,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1fb759; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-sub { font-size: 17px; color: var(--gray-700); line-height: 1.7; margin-top: 16px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 8px 0;
  background: rgba(7,14,32,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy-dark);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,122,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,122,74,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,74,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.08) 0%, transparent 70%);
  bottom: 0; left: 200px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { margin-bottom: 24px; }
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-headline span { color: var(--yellow); display: block; }
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
}
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; line-height: 1.4; }

/* ── PROBLEM ── */
#problem { padding: 100px 0; background: var(--off-white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 56px; }
.problem-cards { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all 0.2s;
}
.problem-card:hover { border-color: var(--green); transform: translateX(4px); }
.problem-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.problem-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.problem-card-desc { font-size: 14px; color: var(--gray-700); margin-top: 4px; line-height: 1.5; }
.problem-statement {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
}
.problem-statement-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}
.problem-statement-quote em { color: var(--yellow); font-style: normal; }
.problem-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.problem-stat { text-align: center; }
.problem-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--green-bright); }
.problem-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; line-height: 1.4; }

/* ── SOLUTION ── */
#solution { padding: 100px 0; background: var(--white); }
.solution-header { text-align: center; max-width: 640px; margin: 0 auto; }
.solution-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.feature-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.feature-card:hover { background: var(--white); border-color: var(--green-light); box-shadow: 0 8px 32px rgba(26,122,74,0.08); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.feature-desc { font-size: 13.5px; color: var(--gray-700); margin-top: 8px; line-height: 1.6; }
.solution-moat {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex; align-items: center; gap: 40px;
}
.moat-left { flex: 1; }
.moat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); }
.moat-desc { font-size: 15px; color: rgba(255,255,255,0.65); margin-top: 10px; line-height: 1.6; }
.moat-badge {
  background: rgba(245,168,0,0.15);
  border: 1px solid rgba(245,168,0,0.3);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  flex-shrink: 0;
}
.moat-badge-label { font-size: 11px; color: var(--yellow); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.moat-badge-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); margin-top: 6px; }

/* ── INSIGHTS ── */
#insights { padding: 100px 0; background: var(--navy-dark); position: relative; overflow: hidden; }
#insights .hero-grid { opacity: 0.4; }
.insights-header { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.insights-header .section-title { color: var(--white); }
.insights-header .section-sub { color: rgba(255,255,255,0.6); }
.insights-queries { margin-top: 56px; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; max-width: 820px; margin-left: auto; margin-right: auto; }
.query-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 28px;
  transition: all 0.25s;
}
.query-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(26,122,74,0.4); }
.query-q { font-size: 15px; color: rgba(255,255,255,0.85); font-style: italic; }
.query-q::before { content: '💬  '; }
.query-a { font-size: 14px; color: var(--green-bright); margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.query-a::before { content: '→  '; font-weight: 700; }
.insights-modules { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; position: relative; z-index: 2; }
.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
.module-card:hover { background: rgba(26,122,74,0.12); border-color: rgba(26,122,74,0.3); }
.module-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--green-bright); letter-spacing: 0.08em; margin-bottom: 8px; }
.module-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; }
.insights-cta { text-align: center; margin-top: 48px; position: relative; z-index: 2; }
.insights-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ── PLANS ── */
#plans { padding: 100px 0; background: var(--off-white); }
.plans-header { text-align: center; max-width: 560px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}
.plan-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
.plan-card.featured { border-color: var(--green); background: var(--navy); }
.plan-card.board { border-color: var(--gray-200); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.plan-card.featured .plan-name { color: var(--white); }
.plan-target { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.plan-card.featured .plan-target { color: rgba(255,255,255,0.5); }
.plan-price { margin-top: 20px; padding: 20px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.plan-card.featured .plan-price { border-color: rgba(255,255,255,0.1); }
.plan-price-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--green); }
.plan-card.featured .plan-price-num { color: var(--yellow); }
.plan-price-note { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.plan-card.featured .plan-price-note { color: rgba(255,255,255,0.4); }
.plan-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); }
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.75); }
.plan-feature-icon { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.plan-card.featured .plan-feature-icon { color: var(--green-bright); }
.plan-feature-icon.no { color: var(--gray-200); }
.plan-cta { margin-top: 28px; }
.plan-cta .btn { width: 100%; justify-content: center; }
.plan-cta .btn-primary { background: var(--green); }
.plan-card.featured .plan-cta .btn { background: var(--green-bright); color: var(--white); }
.plan-card.featured .plan-cta .btn:hover { background: #28b870; }

/* ── SECURITY ── */
#security { padding: 100px 0; background: var(--white); }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.security-items { display: flex; flex-direction: column; gap: 24px; }
.security-item { display: flex; gap: 20px; }
.security-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.security-item-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); }
.security-item-desc { font-size: 14px; color: var(--gray-700); margin-top: 4px; line-height: 1.6; }
.security-disclaimer {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
}
.security-disclaimer-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.security-disclaimer-item { display: flex; gap: 10px; font-size: 13px; color: var(--gray-700); line-height: 1.6; margin-bottom: 10px; }
.security-disclaimer-item::before { content: '→'; color: var(--gray-500); flex-shrink: 0; }

/* ── HOW IT WORKS ── */
#how { padding: 100px 0; background: var(--off-white); }
.how-header { text-align: center; max-width: 560px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; position: relative; }
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--green);
}
.how-step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.how-step-desc { font-size: 13px; color: var(--gray-700); margin-top: 8px; line-height: 1.6; }
.how-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--gray-500); }
.how-note strong { color: var(--green); }

/* ── FORM ── */
#form { padding: 100px 0; background: var(--navy-dark); position: relative; overflow: hidden; }
#form .hero-grid { opacity: 0.3; }
.form-wrapper { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-left .section-title { color: var(--white); }
.form-left .section-sub { color: rgba(255,255,255,0.55); }
.form-benefits { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.form-benefit { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.form-benefit-check { color: var(--green-bright); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.form-wa-alt { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.form-wa-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.form-right {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.form-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,74,0.1); }
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238896A5' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-select:focus { border-color: var(--green); }
.form-submit { width: 100%; padding: 15px; background: var(--green); color: var(--white); border: none; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--green-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,122,74,0.35); }
.form-privacy { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--green); }
.form-success-desc { font-size: 15px; color: var(--gray-700); margin-top: 8px; line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo img { height: 150px !important; width: auto !important; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); display: justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 999;
  transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .solution-features { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .problem-grid, .security-grid, .form-wrapper { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .insights-modules { grid-template-columns: repeat(3, 1fr); }
  .solution-moat { flex-direction: column; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .solution-features, .how-steps, .insights-modules { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .form-right { padding: 28px 20px; }
}
