:root {
  --bg: #f9fbff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --grad: linear-gradient(95deg, #ef4444 0%, #f97316 24%, #facc15 46%, #14b8a6 69%, #06b6d4 100%);
  --shadow: 0 14px 38px rgba(2, 8, 23, 0.11);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body {
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 251, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.brand-text {
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 96px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 15%, rgba(250, 204, 21, 0.2), transparent 38%),
    radial-gradient(circle at 84% 20%, rgba(6, 182, 212, 0.2), transparent 34%),
    radial-gradient(circle at 68% 78%, rgba(249, 115, 22, 0.12), transparent 42%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: min(620px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.25), rgba(6, 182, 212, 0.25));
  transform-origin: left;
}

.hero-bg::before {
  top: 24%;
  left: 5%;
  transform: rotate(-14deg);
}

.hero-bg::after {
  top: 68%;
  right: -15%;
  transform: rotate(9deg);
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #0f766e;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 20px 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 16ch;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
input:focus-visible {
  outline: 2px solid #0284c7;
  outline-offset: 2px;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid #e2e8f0;
  color: #0f172a;
  background: #fff;
}

.btn-text {
  color: #0f172a;
  background: transparent;
  border: 1px solid #dbeafe;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0 0 26px;
}

.grid-4,
.grid-3,
.proof-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.step,
.metric,
.review,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(2, 8, 23, 0.05);
}

.card,
.step,
.metric,
.review {
  padding: 22px;
}

.lead {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 1) 100%);
}

.lead-wrap {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 1fr;
}

.lead-copy p {
  color: var(--muted);
}

.lead-form {
  padding: 20px;
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  padding: 10px 12px;
  font: inherit;
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0;
}

.form-check input {
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin-top: 10px;
  font-weight: 600;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 16px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.metric span {
  color: var(--muted);
}

.reviews {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 16px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span {
  border: 1px solid #bae6fd;
  color: #0c4a6e;
  background: #f0f9ff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0;
  background: #0f172a;
  color: #e2e8f0;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer a {
  color: #bae6fd;
  text-decoration: none;
  display: block;
  margin: 6px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .lead-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 78px 0 52px;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
