:root {
  --ink: #121826;
  --muted: #5f6b7a;
  --line: #dbe3ee;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --soft-blue: #eaf4ff;
  --blue: #256fdb;
  --blue-dark: #164c9a;
  --green: #2ac083;
  --navy: #172033;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.14);
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap {
  width: calc(100% - 40px);
  max-width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #314054;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 111, 219, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-simple {
  padding: 76px 0 64px;
  background:
    radial-gradient(circle at 18% 15%, rgba(42, 192, 131, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 86%);
}

.hero-simple .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-simple h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
}

.hero-simple p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

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

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
}

.card h3,
.price-card h3,
.legal-card h2,
.legal-card h3 {
  margin-bottom: 10px;
  line-height: 1.25;
}

.card p,
.price-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 10px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 800;
}

.price-card.highlight {
  border-color: rgba(37, 111, 219, 0.32);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0;
  font-size: 36px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-card {
  max-width: 840px;
}

.legal-card section {
  padding: 8px 0 20px;
  border-bottom: 1px solid var(--line);
}

.legal-card section:last-child {
  border-bottom: 0;
}

.cta-band {
  padding: 66px 0;
  background: var(--navy);
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.cta-inner p {
  margin-bottom: 0;
  color: #c6d0de;
}

.footer {
  padding: 42px 0;
  background: #0f1624;
  color: #d9e2ee;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #aeb9c8;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .hero-simple .wrap,
  .grid-2,
  .grid-3,
  .legal-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 780px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: auto;
    padding: 16px 0;
  }

  .nav-links {
    display: none;
  }

  .site-header .button {
    display: none;
  }

  .hero-simple,
  .section {
    padding: 56px 0;
  }

  .hero-simple p {
    font-size: 16px;
  }

  .cta-inner .button {
    width: 100%;
  }
}
