* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111217;
  --muted: #52555f;
  --accent: #2b4cff;
  --accent-soft: #e7ecff;
  --surface: #f7f5f2;
  --surface-strong: #efe9e1;
  --shadow: rgba(16, 20, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-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;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 7vw 10px;
  gap: 20px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 7vw 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 30px;
  width: 46%;
  height: 80%;
  background: var(--surface);
  z-index: -1;
  border-radius: 32px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  max-width: 600px;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(520px, 90%);
  border-radius: 28px;
  box-shadow: 0 22px 50px var(--shadow);
  transform: translateX(18px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: #fff;
  border-color: #ddd;
  color: var(--ink);
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.section.alt {
  background: var(--surface);
}

.section.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.asym {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asym-block {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 14px 40px var(--shadow);
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-card {
  background: var(--surface-strong);
  padding: 24px;
  border-radius: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split img {
  border-radius: 22px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px var(--shadow);
}

.price-row strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d8e0;
  font-size: 1rem;
  font-family: inherit;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(43, 76, 255, 0.35);
}

.footer {
  padding: 50px 7vw;
  background: #0f111a;
  color: #f5f5f7;
}

.footer a {
  color: #f5f5f7;
  opacity: 0.8;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #f1f1f3;
  color: var(--ink);
}

.offset-left {
  transform: translateX(-14px);
}

.offset-right {
  transform: translateX(14px);
}

.ghost-card {
  background: transparent;
  border: 1px dashed #c6c7d1;
  padding: 18px;
  border-radius: 16px;
}

.mini-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.85;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  left: 40%;
  top: -30px;
  width: 180px;
  height: 180px;
  background: #ffe4c9;
  border-radius: 50%;
  z-index: -1;
}

.dense {
  max-width: 820px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .split,
  .asym-grid {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .asym-grid > div,
  .split > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .asym {
    flex-direction: row;
  }
}
