* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #6a3df0;
  --accent-dark: #4f2cc1;
  --bg: #f6f4f2;
  --paper: #ffffff;
  --sand: #efe9e4;
  --line: #e1d9d3;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.headline {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  margin: 12px 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--sand);
  font-size: 13px;
}

.section-bg {
  background: var(--paper);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: var(--paper);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.footer {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(79, 44, 193, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 25;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 auto;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--sand);
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
