:root {
  color-scheme: light;
  --bg: #f7f7f8;
  --white: #ffffff;
  --primary: #1f4bd8;
  --primary-dark: #183bb0;
  --text: #1b1b1f;
  --muted: #5f6368;
  --accent: #13b38a;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 1.5rem;
}

.hero {
  background: radial-gradient(circle at top left, #2c5ceb, #0e1435);
  color: var(--white);
  padding: 3.5rem 0 4.5rem;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary,
.secondary {
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(19, 179, 138, 0.35);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(19, 179, 138, 0.45);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
}

section {
  padding: 4.5rem 0;
}

section h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 2.5rem;
  text-align: center;
}

.benefits .grid,
.testimonials .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefits article {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 75, 216, 0.08);
  padding: 2rem;
}

.benefits h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

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

.process {
  background: var(--white);
}

.steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  align-items: center;
  background: var(--bg);
  border-radius: 16px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr;
  padding: 1.5rem 2rem;
}

.steps span {
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  font-weight: 600;
  height: 3rem;
  place-items: center;
  width: 3rem;
}

.steps h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

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

.testimonials figure {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(27, 27, 31, 0.08);
  padding: 2rem;
}

.testimonials blockquote {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.cta {
  background: #10163a;
  color: var(--white);
  text-align: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 2.5rem;
  max-width: 620px;
}

.lead-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  text-align: left;
}

.field {
  display: grid;
  gap: 0.6rem;
}

.field label {
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  border: none;
  border-radius: 12px;
  font: inherit;
  padding: 0.85rem 1rem;
}

.field textarea {
  resize: vertical;
}

.lead-form button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.lead-form button.primary {
  justify-self: start;
}

.footer {
  background: #070918;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
}

.footer strong {
  color: var(--white);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.footer-heading {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 3.5rem;
  }

  .nav {
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .steps span {
    justify-self: start;
  }

  .lead-form {
    padding: 1.5rem;
  }

  .lead-form button.primary {
    width: 100%;
    justify-content: center;
  }
}
