:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f2f6fb;
  --text: #142033;
  --muted: #5d6b7f;
  --line: #dbe4ef;
  --accent: #0f5bd8;
  --accent-dark: #0a46a7;
  --accent-soft: #eaf2ff;
  --success-soft: #edf8f1;
  --shadow: 0 18px 40px rgba(16, 35, 61, 0.06);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #eef5ff 0%, #f8fafc 38%, #f8fafc 100%);
  line-height: 1.6;
}
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 18px 72px;
}
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero h1,
h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
}
.hero p.lead,
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 91, 216, 0.18);
}
.button:hover { background: var(--accent-dark); color: #fff; }
.button-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}
.reassurance {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
}
.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}
.hero-panel h3,
.card h3,
.section h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}
.hero-panel ul,
.section ul {
  margin: 0;
  padding-left: 18px;
}
.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}
.section-header {
  max-width: 760px;
  margin-bottom: 10px;
}
.section h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section p,
.card p,
.small {
  color: var(--muted);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  text-align: center;
}
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.badge {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 600;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  min-height: 100%;
}
.card strong,
.step-number {
  color: var(--text);
}
.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 10px;
}
.example-box {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.example-box strong {
  display: block;
  margin-bottom: 8px;
}
.contact-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer-note {
  margin-top: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}
footer.site-footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .hero-grid,
  .contact-block,
  .grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .wrap { padding: 14px 14px 54px; }
  .hero, .section { padding: 22px; border-radius: 22px; }
  .hero h1, h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .button, .button-secondary { width: 100%; }
}
