@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --text: #1f2937;
  --muted: #5b6676;
  --primary: #1754f0;
  --primary-dark: #123fba;
  --accent: #f59e0b;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  --radius: 18px;
}

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

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text);
}

.logo span {
  color: var(--primary);
}

.logo--light {
  color: #fff;
}

.logo--light span {
  color: #c7d2fe;
}

.header__nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.header__nav a {
  position: relative;
  padding-bottom: 4px;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(23, 84, 240, 0.28);
}

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

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.btn--ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn--light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--light:hover {
  background: #f1f5f9;
}

.btn--full {
  width: 100%;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(23, 84, 240, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.hero {
  padding: 80px 0 50px;
}

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

.hero__aside {
  display: grid;
  gap: 20px;
}

.hero__visual {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__content h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 18px 0;
}

.hero__lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

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

.hero__stats div {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}

.hero__stats strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero__stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero__card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero__card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.hero__card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero__card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.hero__card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.hero__card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: #fff;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 24px;
  margin-bottom: 40px;
}

.section__tag {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.section__head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

.section__lead {
  color: var(--muted);
  font-size: 17px;
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.benefit {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f8fafc;
}

.benefit h3 {
  margin-bottom: 8px;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(23, 84, 240, 0.1);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta {
  padding: 60px 0;
  background: linear-gradient(120deg, #1e3a8a, #2563eb);
  color: #fff;
}

.cta__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.footer {
  background: #0f172a;
  color: #dbe3f1;
  padding: 50px 0 0;
}

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

.footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer a {
  color: #dbe3f1;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer__bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 16px 0;
  color: rgba(226, 232, 240, 0.7);
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section__head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 60px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}
