* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #4e46d8;
  --accent-2: #d84e7a;
  --accent-3: #0e7c7b;
  --card: #ffffff;
  --soft: #efe9e3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 26px 0 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 36px 0 70px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2rem;
  color: var(--accent-3);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(78, 70, 216, 0.2);
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 0;
}

.section.tight {
  padding: 50px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: #1b1b1b;
  color: #fff;
}

.section.dark a {
  color: #fff;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  max-width: 560px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(31, 31, 31, 0.08);
}

.card img {
  border-radius: 14px;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 600;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 8px;
}

.split-highlight {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-top: 24px;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 18px 35px rgba(31, 31, 31, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d2cc;
  font-size: 0.98rem;
  font-family: inherit;
}

.footer {
  padding: 50px 0 70px;
  background: #141414;
  color: #fff;
}

.footer .nav-links {
  gap: 12px 16px;
  font-size: 0.9rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.two-col-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.two-col-list div {
  flex: 1 1 240px;
}

.note {
  background: rgba(78, 70, 216, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 780px) {
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
