/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.65;
}
.wrap { width: min(1100px, 92vw); margin: 0 auto; padding: 24px 0; }

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; color: #0f172a; }
.nav a { text-decoration: none; color: #0f172a; margin-left: 16px; opacity: .9; }
.nav a:hover { opacity: 1; }
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 14px; background: #0f172a;
  color: #fff; text-decoration: none; font-weight: 700; border: 1px solid #0f172a;
}
.btn.small { padding: 8px 12px; font-size: 14px; }

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 70% -10%, #e0f2fe, transparent),
              linear-gradient(180deg, #f8fafc, #ffffff);
  border-bottom: 1px solid #eef2f7;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(30px, 4.5vw + 8px, 56px); line-height: 1.1; margin: 0 0 8px; }
.lead { font-size: 18px; opacity: .95; }
.lead-form { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.lead-form input {
  padding: 12px 14px; border: 1px solid #e2e8f0; border-radius: 12px; min-width: min(360px, 76vw);
}
.form-msg { margin-top: 8px; min-height: 22px; font-weight: 600; }
.hero-art img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 10px 30px rgba(2,6,23,.15); }
.gradient { background: linear-gradient(90deg, #6366f1, #06b6d4); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Steps */
.how h2, .benefits h2, .samples h2, .proof h2, .pricing h2, .faq h2 { font-size: 28px; margin-bottom: 8px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; background: #fff; box-shadow: 0 1px 0 rgba(15,23,42,.04); }

/* Benefits */
.benefits .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; }
.benefits li { border: 1px dashed #e2e8f0; border-radius: 14px; padding: 12px 14px; background: #fcfdff; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { border: 1px solid #e2e8f0; border-radius: 16px; padding: 12px; background: #fff; }
.gallery img { width: 100%; height: auto; border-radius: 10px; }
.gallery figcaption { font-size: 14px; opacity: .8; margin-top: 8px; }

/* Proof */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-grid article { border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; background: #fff; }
.logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pill { padding: 8px 12px; border-radius: 999px; background: #eef2ff; border: 1px solid #c7d2fe; font-weight: 600; font-size: 12px; }
.quotes { margin-top: 14px; display: grid; gap: 10px; }

/* Pricing */
.pricing { padding-bottom: 8px; }
.price-card { position: relative; border: 1px solid #e2e8f0; border-radius: 18px; padding: 18px; background: #ffffff;
  box-shadow: 0 8px 30px rgba(15,23,42,.06);
  max-width: 640px;
}
.price-card .badge { position: absolute; top: -10px; right: 12px; background: #6366f1; color: #fff; padding: 4px 8px; border-radius: 999px; font-size: 12px; }
.price { font-size: 42px; font-weight: 800; margin: 0; }
.price span { font-size: 16px; font-weight: 600; opacity: .7; }
.muted { opacity: .8; margin: 4px 0 10px; }
.features { list-style: none; padding: 0; margin: 10px 0; display: grid; gap: 8px; }
.small-form input { min-width: min(280px, 70vw); }
.tiny { font-size: 12px; opacity: .7; }

/* FAQ */
.faq details { border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 14px; background: #fff; margin-bottom: 10px; }
.faq summary { font-weight: 700; cursor: pointer; }

/* Footer */
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid #eef2f7; margin-top: 20px; padding-top: 14px; }
.copy { opacity: .8; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .steps, .benefits .grid, .gallery, .proof-grid { grid-template-columns: 1fr; }
}
