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

:root {
  --navy: #12324A;
  --teal: #16A39A;
  --teal-dark: #13877f;
  --sand: #EDE4D7;

  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --radius: 12px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-brand, .footer-brand {
  font-family: 'Manrope', sans-serif;
}

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--navy); font-weight: 700; font-size: 18px; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-link { text-decoration: none; color: var(--muted); font-size: 14px; transition: color .15s; }
.nav-link:hover { color: var(--text); }
.btn-nav { background: var(--teal); color: #fff; text-decoration: none; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background .15s, transform .1s; }
.btn-nav:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* HERO */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 100px 24px 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22,163,154,.08); color: var(--teal); font-size: 13px; font-weight: 500; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; border: 1px solid rgba(22,163,154,.2); }
.hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 460px; margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.btn-hero { background: var(--teal); color: #fff; text-decoration: none; padding: 15px 30px; border-radius: 10px; font-size: 16px; font-weight: 600; transition: background .15s, transform .1s, box-shadow .15s; display: inline-block; box-shadow: 0 4px 14px rgba(22,163,154,.35); }
.btn-hero:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,154,.45); }
.btn-hero-ghost { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .15s; }
.btn-hero-ghost:hover { color: var(--teal); }
.hero-trust { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }

/* MOCKUP */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.mockup-container { position: relative; }
.mockup-float-badge { position: absolute; top: -14px; right: -14px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: #16a34a; box-shadow: 0 4px 12px rgba(0,0,0,.08); z-index: 2; }
.mockup { background: #fff; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 24px 64px -12px rgba(22,163,154,.2); border: 1px solid var(--border); width: 360px; overflow: hidden; }
.mockup-bar { background: #f1f5f9; padding: 10px 14px; display: flex; gap: 6px; }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:first-child { background: #fca5a5; }
.mockup-bar span:nth-child(2) { background: #fcd34d; }
.mockup-bar span:nth-child(3) { background: #86efac; }
.mockup-body { padding: 24px; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.mockup-row--header { padding-bottom: 14px; }
.mockup-label { font-size: 13px; font-weight: 700; color: var(--text); }
.mockup-badge { background: #dcfce7; color: #16a34a; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.mockup-badge-outline { background: #f0fdf4; color: #16a34a; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; border: 1px solid #bbf7d0; }
.mockup-divider { height: 1px; background: var(--border); margin: 6px 0; }
.mockup-key { font-size: 12px; color: var(--muted); }
.mockup-val { font-size: 13px; font-weight: 500; }
.mockup-val--strong { font-size: 16px; font-weight: 800; color: var(--teal); }

/* SECTIONS */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; margin-bottom: 56px; }

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.step { text-align: center; padding: 32px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.step-num { width: 48px; height: 48px; background: var(--teal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 20px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials { padding: 100px 0; }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.test-card { background: var(--bg); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.test-stars { font-size: 16px; margin-bottom: 16px; }
.test-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.test-user { display: flex; flex-direction: column; gap: 2px; }
.test-user strong { font-size: 14px; font-weight: 700; }
.test-user span { font-size: 13px; color: var(--muted); }

/* FEATURES */
.features { padding: 100px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; background: rgba(22,163,154,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }
.pricing-card { border-radius: 16px; padding: 36px; border: 1px solid var(--border); position: relative; }
.pricing-card--featured { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 8px 32px rgba(18,50,74,.35); }
.pricing-card--featured .pricing-desc,
.pricing-card--featured .pricing-period { color: rgba(255,255,255,.7); }
.pricing-card--featured .pricing-list li { color: rgba(255,255,255,.9); }
.pricing-pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.pricing-name { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.pricing-card--featured .pricing-name { color: rgba(255,255,255,.7); }
.pricing-price { font-size: 44px; font-weight: 800; letter-spacing: -2px; margin-bottom: 8px; }
.pricing-period { font-size: 18px; font-weight: 400; letter-spacing: 0; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-list li { font-size: 14px; color: var(--text); }
.pricing-card--featured .pricing-list li { color: rgba(255,255,255,.9); }
.btn-pricing-outline { display: block; text-align: center; padding: 13px; border-radius: 10px; border: 1.5px solid var(--border); text-decoration: none; color: var(--text); font-weight: 600; font-size: 15px; transition: border-color .15s, color .15s; }
.btn-pricing-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-pricing { display: block; text-align: center; padding: 13px; border-radius: 10px; background: #fff; text-decoration: none; color: var(--navy); font-weight: 700; font-size: 15px; transition: opacity .15s; }
.btn-pricing:hover { opacity: .9; }

/* CTA */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.cta-inner { text-align: center; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; color: #fff; }
.cta p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; }
.cta .btn-hero { background: #fff; color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.cta .btn-hero:hover { background: var(--sand); }
.cta-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.6); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--navy); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}