/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0F172A;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Container ───────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; border-radius: 10px; transition: all .2s;
  cursor: pointer; border: none; font-family: inherit; text-align: center;
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; }
.btn-primary { background: #00BFA6; color: #fff; }
.btn-primary:hover { background: #00A892; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,191,166,.3); }
.btn-outline { border: 1.5px solid #E2E8F0; color: #0F172A; background: transparent; }
.btn-outline:hover { border-color: #1E3A5F; background: #F8FAFC; }
.btn-ghost { color: #1E3A5F; background: transparent; border: 1.5px solid transparent; }
.btn-ghost:hover { background: rgba(30,58,95,.06); }
.btn-white { background: #fff; color: #1E3A5F; }
.btn-white:hover { background: #F8FAFC; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,255,255,.3); }

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.6);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.06); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: #1E3A5F; }
.nav-logo img { border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #64748B; transition: color .15s; }
.nav-links a:hover { color: #1E3A5F; }
.nav-actions { display: flex; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #1E3A5F; border-radius: 2px; transition: all .2s; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF6FF 50%, #F0FDF9 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(0,191,166,.1); color: #00897B; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { font-size: 48px; line-height: 1.12; font-weight: 900; color: #0F172A; margin-bottom: 20px; letter-spacing: -.02em; }
.hero-sub { font-size: 18px; color: #475569; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: #94A3B8; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-frame {
  width: 280px; background: #1E3A5F; border-radius: 28px; padding: 12px;
  box-shadow: 0 24px 64px rgba(30,58,95,.2), 0 0 0 1px rgba(30,58,95,.1);
}
.phone-screen { background: #0F172A; border-radius: 18px; overflow: hidden; }
.phone-header { display: flex; gap: 6px; padding: 12px 16px 8px; }
.phone-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.phone-content { padding: 16px; }
.phone-stat { text-align: center; margin-bottom: 20px; }
.phone-stat-num { display: block; font-size: 32px; font-weight: 800; color: #00BFA6; }
.phone-stat-label { font-size: 12px; color: #94A3B8; }
.phone-orders { display: flex; flex-direction: column; gap: 10px; }
.phone-order {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border-radius: 10px; padding: 10px 12px;
}
.phone-order-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.phone-order-dot.green { background: #00BFA6; }
.phone-order-dot.blue { background: #3B82F6; }
.phone-order-dot.orange { background: #F59E0B; }
.phone-order-name { font-size: 13px; color: #E2E8F0; font-weight: 500; }
.phone-order-price { font-size: 12px; color: #94A3B8; }

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar { padding: 40px 0; border-bottom: 1px solid #F1F5F9; }
.trust-text { text-align: center; font-size: 13px; color: #94A3B8; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 20px; }
.trust-logos { display: flex; justify-content: center; gap: 48px; align-items: center; opacity: .35; }
.trust-logo { height: 24px; }
.trust-logo svg { height: 24px; }

/* ── Features ────────────────────────────────────── */
.features { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { font-size: 36px; font-weight: 800; color: #0F172A; margin-bottom: 14px; letter-spacing: -.01em; }
.section-header p { font-size: 17px; color: #64748B; line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  padding: 28px; border-radius: 16px; border: 1px solid #E2E8F0;
  transition: all .2s; background: #fff;
}
.feature-card:hover { border-color: #00BFA6; box-shadow: 0 8px 32px rgba(0,191,166,.08); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,191,166,.08); color: #00BFA6;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #0F172A; }
.feature-card p { font-size: 14px; color: #64748B; line-height: 1.65; }

/* ── How It Works ────────────────────────────────── */
.how-it-works { padding: 100px 0; background: #F8FAFC; }
.steps { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid #E2E8F0;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: #1E3A5F; color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #0F172A; }
.step-content p { font-size: 15px; color: #64748B; line-height: 1.7; }

/* ── Pricing ─────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing-cards { display: flex; justify-content: center; margin-bottom: 48px; }
.pricing-card {
  max-width: 440px; width: 100%; padding: 40px; border-radius: 20px;
  border: 2px solid #E2E8F0; background: #fff; position: relative;
}
.pricing-card.featured { border-color: #00BFA6; box-shadow: 0 8px 40px rgba(0,191,166,.12); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #00BFA6; color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}
.pricing-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; text-align: center; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.pricing-currency { font-size: 24px; font-weight: 700; color: #64748B; }
.pricing-number { font-size: 64px; font-weight: 900; color: #0F172A; line-height: 1; }
.pricing-period { font-size: 16px; color: #94A3B8; font-weight: 500; }
.pricing-desc { text-align: center; font-size: 15px; color: #64748B; margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #334155; line-height: 1.5; }
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-note { text-align: center; font-size: 13px; color: #94A3B8; margin-top: 12px; }

/* Pricing example */
.pricing-example { max-width: 480px; margin: 0 auto; }
.pricing-example h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; text-align: center; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table td { padding: 10px 0; font-size: 14px; color: #475569; border-bottom: 1px solid #F1F5F9; }
.pricing-table .right { text-align: right; font-variant-numeric: tabular-nums; }
.pricing-table .total td { border-bottom: none; font-size: 16px; color: #0F172A; padding-top: 14px; }
.pricing-table-note { font-size: 13px; color: #00897B; text-align: center; margin-top: 16px; background: rgba(0,191,166,.06); padding: 10px 16px; border-radius: 8px; }

/* ── Demo ─────────────────────────────────────────── */
.demo { padding: 100px 0; background: #F8FAFC; }
.demo-frame { max-width: 900px; margin: 0 auto; }
.demo-browser { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 64px rgba(0,0,0,.1); border: 1px solid #E2E8F0; }
.demo-browser-bar {
  background: #F8FAFC; padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #E2E8F0;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot.red { background: #EF4444; }
.demo-dot.yellow { background: #F59E0B; }
.demo-dot.green { background: #22C55E; }
.demo-url {
  flex: 1; text-align: center; font-size: 13px; color: #94A3B8;
  background: #fff; padding: 6px 16px; border-radius: 6px; border: 1px solid #E2E8F0;
}
.demo-content { background: #fff; }
.demo-note { text-align: center; font-size: 14px; color: #64748B; margin-top: 16px; }

/* ── Social Proof ────────────────────────────────── */
.social-proof { padding: 80px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.proof-num { font-size: 36px; font-weight: 900; color: #1E3A5F; margin-bottom: 4px; }
.proof-label { font-size: 14px; color: #64748B; }

/* ── CTA ──────────────────────────────────────────── */
.cta {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, #1E3A5F 0%, #0F2942 100%);
  color: #fff;
}
.cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.cta p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────── */
.footer { padding: 60px 0 32px; background: #0F172A; color: #94A3B8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 12px; }
.footer-logo img { border-radius: 6px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #E2E8F0; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: #94A3B8; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: #00BFA6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; font-size: 13px; text-align: center; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: #fff; padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0; box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }
  .nav-actions.open {
    display: flex; position: absolute; top: calc(64px + var(--nav-links-h, 200px));
    left: 0; right: 0; background: #fff; padding: 0 24px 20px; gap: 10px;
  }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 34px; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 220px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
  .cta h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 28px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
}

/* ── Legal Pages ─────────────────────────────────── */
.legal { padding: 120px 0 80px; }
.legal h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { font-size: 14px; color: #94A3B8; margin-bottom: 40px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; color: #0F172A; }
.legal h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: #1E3A5F; }
.legal p, .legal li { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: #00BFA6; text-decoration: underline; }
.legal a:hover { color: #00897B; }
