.root {
  --bg: #f7f5f2;
  --ink: #1f1c18;
  --muted: #6c6258;
  --accent: #b54f2c;
  --accent-soft: #f2d9cf;
  --panel: #ffffff;
  --shadow: rgba(17, 14, 10, 0.08);
  --line: #e2dbd2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

header {
  padding: 24px 32px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 0;
}

.panel {
  background: var(--panel);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px var(--shadow);
}

.media-frame {
  border-radius: 28px;
  overflow: hidden;
  background: #d9cfc6;
  min-height: 320px;
}

.micro-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.micro-card-row {
  display: flex;
  gap: 18px;
}

.micro-card-row .micro-card {
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.highlight {
  background: var(--accent-soft);
  padding: 18px 24px;
  border-radius: 20px;
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #fef8f4;
}

.kpi strong {
  font-size: 22px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: 80px;
  padding: 32px;
  background: #1f1c18;
  color: #f5efe9;
  border-radius: 28px;
}

.footer a {
  color: #f5efe9;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  color: #d1c6bc;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #1f1c18;
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 120px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f1c18;
  color: #fff;
  font-weight: 600;
  z-index: 40;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.center {
  text-align: center;
}

.no-gap {
  gap: 12px;
}

@media (max-width: 980px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  header {
    padding: 24px 16px 0;
  }

  .page {
    padding: 0 16px 120px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 100px;
  }
}
