* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #555;
  --accent: #5a3ff4;
  --accent-soft: #edeaff;
  --sand: #f6f3ef;
  --sky: #eef6ff;
  --shadow: rgba(21, 16, 61, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  position: relative;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 20%;
  width: 240px;
  height: 240px;
  background: var(--accent-soft);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  max-width: 420px;
  box-shadow: 0 20px 40px var(--shadow);
  border-radius: 18px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section-title {
  font-size: 1.6rem;
  line-height: 1.2;
}

.asym-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-block.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 30px var(--shadow);
  align-self: flex-start;
}

.offset-card.shift-right {
  align-self: flex-end;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 14px 18px;
  background: #0f0d1c;
  color: #fff;
  border-radius: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 18px var(--shadow);
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  max-height: 140px;
  object-fit: cover;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 28px var(--shadow);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 22px 36px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 20px var(--shadow);
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f0d1c;
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f0d1c;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 28px var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 40px 6vw 20px;
}

.simple-section {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-plain {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    max-width: 52%;
  }

  .hero-visual {
    max-width: 42%;
    transform: translateY(40px);
  }

  .asym-block {
    flex-direction: row;
    align-items: center;
  }

  .asym-block.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .price-item {
    flex: 1 1 220px;
  }

  .stat-list {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 180px;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
