:root {
  --primary: #3498db;
  --primary-dark: #2e87c2;
  --text: #2c3e50;
  --text-muted: #6b7785;
  --bg: #ffffff;
  --bg-soft: #f7f9fb;
  --border: #e7ebef;
  --pro: #f39c12;
  --radius: 14px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.brand img { width: 36px; height: 36px; border-radius: 9px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.btn-primary:hover { opacity: 0.92; text-decoration: none; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, #eaf4fc 0%, #ffffff 100%);
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 800;
}

.section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eaf4fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* Showcase strip */
.showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.showcase figure { margin: 0; text-align: center; }

.showcase .thumb {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 12px;
}

.showcase img { max-height: 90px; margin: 0 auto; }

.showcase figcaption { font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step { text-align: center; }

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step h3 { font-size: 16px; margin: 0 0 6px; }
.step p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* Trust checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.check-item .mark {
  color: #2ecc71;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
}

.price-card.pro {
  border: 2px solid var(--pro);
  position: relative;
}

.price-card.pro::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pro);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-card h3 { margin: 0 0 6px; font-size: 20px; }
.price-card .price { font-size: 28px; font-weight: 800; margin: 10px 0 18px; }
.price-card .price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }

.price-card ul { list-style: none; padding: 0; margin: 0; }
.price-card li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  display: flex;
  gap: 10px;
}
.price-card li:first-child { border-top: none; }

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 { margin: 0 0 8px; font-size: 16.5px; }
.faq-item p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* CTA footer band */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 60px 0;
}

.cta-band h2 { margin: 0 0 14px; font-size: 30px; }
.cta-band p { margin: 0 0 26px; opacity: 0.92; }
.cta-band .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-band .btn-primary:hover { color: var(--primary-dark); }

/* Footer */
footer.site-footer {
  background: #17222c;
  color: #b7c2cc;
  padding: 44px 0 26px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; }
.footer-links a { color: #b7c2cc; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #263340;
  padding-top: 20px;
  font-size: 13px;
  color: #7c8896;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Legal pages */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal h1 { font-size: 34px; margin-bottom: 6px; }
.legal .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; margin-top: 38px; margin-bottom: 12px; }
.legal h3 { font-size: 17px; margin-top: 22px; margin-bottom: 8px; }
.legal p, .legal li { color: #3c4a58; font-size: 15.5px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); }
.legal th { background: var(--bg-soft); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
