:root {
  --bg: #f5f5f7;
  --bg-soft: #ffffff;
  --panel: rgba(255,255,255,0.82);
  --panel-solid: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --brand: #111827;
  --brand-soft: #5b6b8a;
  --accent: #dbeafe;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(219,234,254,.65), transparent 28%),
    radial-gradient(circle at top right, rgba(226,232,240,.8), transparent 30%),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  padding: 28px 0 56px;
  min-height: 100vh;
}
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 6px 0 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(18px);
}
.brand-mark img,
.logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-text { font-size: 1.04rem; }
.topbar-actions {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}
.mini-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .88fr;
  gap: 28px;
  align-items: center;
}
.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand-soft);
}
h1, h2, h3 { line-height: 1.04; margin: 0 0 16px; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 14ch; }
h3 { font-size: 1.28rem; }
.lead {
  font-size: 1.12rem;
  max-width: 720px;
  color: var(--muted);
}
.trust-note {
  max-width: 760px;
  margin-top: 12px;
  color: #667085;
  font-size: 0.96rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}
.button.secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.hero-points li::before {
  content: "•";
  color: #0f172a;
  margin-right: 10px;
}
.hero-panel { display: grid; gap: 16px; }
.glass-card, .metric-card, .card, .contact-card, .step {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.logo-card {
  padding: 26px;
  border-radius: 30px;
}
.logo-shell {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 32px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid rgba(15,23,42,.06);
}
.logo-caption {
  margin: 0;
  text-align: center;
  color: var(--muted);
}
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric-card {
  border-radius: 24px;
  padding: 22px;
}
.metric-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.metric-card span { color: var(--muted); }
.section { padding: 84px 0; }
.section-tight { padding-top: 18px; }
.section.alt { background: rgba(255,255,255,.48); }
.problem-strip,
.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.cards.two-up { grid-template-columns: repeat(2, 1fr); }
.card, .contact-card {
  border-radius: 28px;
  padding: 28px;
}
.card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(237,242,247,.9));
}
.pill {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pill-soft {
  background: #e2e8f0;
  color: #0f172a;
}
.price {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #111827;
}
.mini-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.steps {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-radius: 24px;
  padding: 22px;
}
.step span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
.benefits { margin: 10px 0 0; padding-left: 20px; }
.contact-box {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 24px;
  align-items: stretch;
}
.footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.footer p { margin: 4px 0; color: #64748b; }
.footer a { color: #0f172a; text-decoration: none; }
.footer-legal { max-width: 520px; }
.footer-links { margin-top: 10px; }
.signature { text-align: right; }
.legal-page { padding: 56px 0 72px; }
.legal-page h1 { margin-bottom: 20px; }
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin: 18px 0;
}
.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
}
.legal-page a { color: #111827; }
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid,
  .problem-strip,
  .grid.two,
  .cards.two-up,
  .contact-box,
  .footer-inner,
  .metric-row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .signature { text-align: left; }
}
@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  h2 { max-width: 100%; }
}
