:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --ink: #0f172a;
  --muted: #475569;
  --muted-light: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --green: #16a34a;
  --green-dark: #15803d;
  --max: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-dark); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--navy);
  color: #fff;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: block;
}
.nav a {
  color: #cbd5e1;
  text-decoration: none;
  margin-left: 22px;
  font-size: 15px;
}
.nav a:hover { color: #fff; }

@media (max-width: 560px) {
  .nav a { margin-left: 14px; font-size: 14px; }
  .brand span.tag { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
}
.hero p.lead {
  font-size: 19px;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero .pill {
  display: inline-block;
  background: rgba(22,163,74,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--green-dark); color: #fff; }
.btn.secondary {
  background: transparent;
  border: 1px solid #475569;
  color: #e2e8f0;
  margin-left: 10px;
}
.btn.secondary:hover { background: rgba(255,255,255,0.06); }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 {
  font-size: 28px;
  margin: 0 0 8px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 560px;
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.feature .ico {
  font-size: 24px;
  margin-bottom: 10px;
}
.feature h3 { margin: 0 0 6px; font-size: 17px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 22px 22px 22px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Pricing */
.price-card {
  max-width: 380px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.price-card .amount {
  font-size: 46px;
  font-weight: 800;
  color: var(--ink);
}
.price-card .amount span { font-size: 18px; font-weight: 500; color: var(--muted); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  text-align: left;
}
.price-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--muted);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.trial-note { color: var(--muted-light); font-size: 13px; margin-top: 14px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item h3 { margin: 0 0 6px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 40px 0;
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: #cbd5e1; text-decoration: none; margin-right: 18px; }
.site-footer a:hover { color: #fff; }
.site-footer .legal { font-size: 13px; color: #64748b; }

/* Legal / content pages */
.legal-page { padding: 56px 0 72px; }
.legal-page h1 { font-size: 32px; margin: 0 0 4px; }
.legal-page .updated { color: var(--muted-light); font-size: 14px; margin: 0 0 32px; }
.legal-page h2 { text-align: left; font-size: 20px; margin: 32px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink); }
.legal-page ul { padding-left: 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-page .back { display: inline-block; margin-bottom: 24px; font-size: 14px; }
