* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1b1a;
  --muted: #6b5f5b;
  --cream: #f7f1ec;
  --sand: #efe4db;
  --rose: #f2d8d8;
  --clay: #d6b7a6;
  --accent: #30424e;
  --accent-soft: #4d6473;
  --border: #e2d4cc;
  --fallback: #e9ddd4;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6%;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 16px;
}

.nav-links a:hover {
  background: var(--sand);
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  background: var(--rose);
  border: 1px solid var(--border);
}

main {
  padding-bottom: 60px;
}

.section {
  padding: 70px 6%;
}

.section.split {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  background: var(--fallback);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 12px 0;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  gap: 8px;
}

.btn:hover {
  background: var(--accent-soft);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--sand);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  width: 100%;
  height: 160px;
  background: var(--fallback);
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.highlight {
  background: var(--sand);
  border-radius: 26px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.inline-cta:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.business-model {
  background: var(--rose);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 40px 6%;
  font-size: 13px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  color: var(--muted);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.section-contrast {
  background: #fff;
}

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #f6ede7 100%);
}

.notice {
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
  font-size: 14px;
  color: var(--muted);
}
