:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-2: #edf7f3;
  --ink: #102033;
  --muted: rgba(16, 32, 51, 0.70);
  --soft: rgba(16, 32, 51, 0.10);
  --blue: #2563eb;
  --green: #0e9f6e;
  --lime: #d8f3dc;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 32, 51, 0.08);
  --max: 1120px;
  --pad: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.08), rgba(14, 159, 110, 0.08) 42%, transparent 72%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

.site-header { padding: 14px 0 28px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}
.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 159, 110, 0.16));
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-size: 24px;
  line-height: 1;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 8px;
  background: rgba(16, 32, 51, 0.03);
}
.nav__link {
  padding: 9px 11px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav__link:hover { background: rgba(37, 99, 235, 0.08); color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(16, 32, 51, 0.12); }
.btn:active { transform: translateY(0); }
.btn--primary {
  border-color: rgba(37, 99, 235, 0.32);
  background: linear-gradient(180deg, #2f6df2, #1f58d4);
  color: #fff;
}
.btn--ghost { background: rgba(255, 255, 255, 0.70); }
.btn--inverted { background: #fff; color: var(--blue); border-color: rgba(255, 255, 255, 0.52); }
.btn--line { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); box-shadow: none; }
.btn--lg { min-height: 48px; padding: 12px 16px; }

.hero {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 46px 0 18px;
}
.kicker,
.eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(14, 159, 110, 0.10);
  border: 1px solid rgba(14, 159, 110, 0.18);
  color: rgba(16, 32, 51, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero__title {
  margin: 0;
  max-width: 780px;
  font-size: 42px;
  line-height: 1.04;
}
.hero__subtitle,
.section__text,
.cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.hero__subtitle { max-width: 66ch; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.trust li {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 51, 0.08);
  color: rgba(16, 32, 51, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #dfeaf5;
  border: 1px solid rgba(16, 32, 51, 0.10);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}
.hero-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}
.hero-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 22, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.hero-panel span { color: rgba(255, 255, 255, 0.72); font-size: 12px; }
.hero-panel strong { font-size: 18px; }

.section { padding: 66px 0; }
.section--soft { background: rgba(255, 255, 255, 0.46); border-block: 1px solid rgba(16, 32, 51, 0.06); }
.section--proof { background: linear-gradient(180deg, rgba(237, 247, 243, 0.7), rgba(255, 255, 255, 0)); }
.section__head { max-width: 760px; margin-bottom: 24px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.14;
}

.grid { display: grid; gap: 18px; }
.cards {
  display: grid;
  gap: 14px;
}
.card,
.step {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 32, 51, 0.09);
  box-shadow: var(--shadow-soft);
}
.card__icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.14);
  font-size: 13px;
  font-weight: 950;
}
.card h3,
.step h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}
.card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof {
  display: grid;
  gap: 22px;
  align-items: center;
}
.proof__media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 32, 51, 0.08);
  aspect-ratio: 16 / 10;
}
.proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}
.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 0;
}
.metrics div {
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(16, 32, 51, 0.08);
}
.metrics dt { color: var(--muted); font-size: 13px; font-weight: 800; }
.metrics dd { margin: 4px 0 0; color: var(--green); font-size: 20px; font-weight: 950; }

.steps {
  display: grid;
  gap: 14px;
}
.step { position: relative; padding-top: 48px; }
.step__n {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(14, 159, 110, 0.11);
  color: var(--green);
  font-weight: 950;
}

.section--contact { padding-bottom: 92px; }
.cta {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #1f58d4, #0e9f6e);
  box-shadow: var(--shadow);
}
.cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}
.cta p { color: rgba(255, 255, 255, 0.84); }
.cta__actions {
  display: grid;
  gap: 10px;
  align-content: center;
}
.contact-line {
  margin: 4px 0 0;
  font-size: 13px;
}

.footer {
  padding: 20px 0 86px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  color: var(--muted);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.footer p { margin: 0; font-size: 13px; }
.footer__brand { color: var(--ink); font-weight: 950; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 250, 252, 0.90);
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(12px);
}
.sticky-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 720px) {
  :root { --pad: 24px; }
  .hero { grid-template-columns: 1.05fr 0.95fr; padding-top: 58px; }
  .hero__title { font-size: 58px; }
  .grid--intro { grid-template-columns: 0.95fr 1.05fr; align-items: end; }
  .cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .proof { grid-template-columns: 0.95fr 1.05fr; }
  .metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cta { grid-template-columns: 1fr auto; align-items: center; padding: 30px; }
  .cta__actions { min-width: 250px; }
}

@media (min-width: 900px) {
  .nav__links { display: inline-flex; }
}

@media (max-width: 560px) {
  .site-header { padding-top: 10px; }
  .nav { gap: 10px; }
  .brand__name { font-size: 14px; }
  .nav > .btn { padding-inline: 10px; font-size: 13px; }
  .hero { padding-top: 32px; }
  .hero__title { font-size: 38px; }
  .section { padding: 54px 0; }
  .section__title,
  .cta h2 { font-size: 26px; }
  .hero__actions .btn { width: 100%; }
  .hero-panel strong { font-size: 16px; }
  .sticky-cta p { max-width: 170px; }
  .sticky-cta .btn { min-height: 38px; padding: 8px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .js .reveal { transition: none; }
  .btn:hover { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
