:root {
  color-scheme: light;
  --bg: #fdfdfa;
  --bg-alt: #ffffff;
  --text: #111111;
  --muted: #6d6d6d;
  --accent: #ff2b2b;
  --accent-dark: #d31919;
  --border: #e5e5e5;
  font-family: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

main {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.hero {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.hero--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__right {
  display: flex;
  justify-content: center;
}

.hero__tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  background: var(--bg-alt);
}

.hero h1 {
  margin: 0;
}

.hero__headline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero__headline-part {
  font-weight: 600;
}

.hero__headline-part--red {
  color: #ff2b2b;
}

.hero__headline-part--black {
  color: #111111;
}

.hero p {
  max-width: 600px;
  color: var(--muted);
  margin: 0;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text);
}

.hero__list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  font-size: 0.95rem;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(255, 43, 43, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

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

.cta-card {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(17, 17, 17, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-card p {
  margin: 0;
}

.cta-card h2 {
  margin: 0;
  font-size: 1.8rem;
}

.cta-card__caption {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.metrics article {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.metrics span {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.metrics p {
  color: var(--muted);
  margin: 0;
}

.benefits,
.process,
.lead {
  margin-bottom: 80px;
}

.benefits h2,
.process h2,
.lead h2 {
  margin-bottom: 24px;
}

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

.benefits__grid article {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: var(--bg-alt);
}

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

.process ol {
  list-style: none;
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
}

.process li {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: var(--bg-alt);
}

.process strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.process p,
.lead p,
.lead li {
  color: var(--muted);
}

.lead {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  background: var(--bg-alt);
}

.lead ul {
  padding-left: 20px;
  margin: 16px 0 0;
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--text);
  font-size: 1rem;
}

input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  margin: 0;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 640px) {
  .hero__cta {
    flex-direction: column;
  }

  .hero__headline {
    flex-direction: column;
    gap: 0;
  }

  .lead {
    padding: 24px;
  }
}

