:root {
  --bg: #f6f3ef;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #23434b;
  --accent-2: #c98f5f;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: #efe7df;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #fff2e6;
  padding: 6px 10px;
  border-radius: 999px;
  color: #5a2f10;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split .visual {
  flex: 1;
  background: #e4ddd6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
}

.hero {
  padding: 84px 0 56px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.button.light {
  background: #fff;
  color: var(--accent);
  border: 1px solid #d4cbc2;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.layered {
  position: relative;
  background: #fdf9f4;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed #dcccbc;
  border-radius: 20px;
  pointer-events: none;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 32px 0;
}

.stat {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc5bb;
  font-size: 15px;
  background: #faf8f6;
}

footer {
  background: #efe7df;
  padding: 50px 0;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 13px;
  color: #3b3b3b;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: #1a120c;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(360px, 90%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: #e3dad1;
  color: #3b2a20;
}

.section-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.small-note {
  font-size: 14px;
  color: var(--muted);
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 42px);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}

.bg-1 { background-color: #d9d2cb; }
.bg-2 { background-color: #e6dfd7; }
.bg-3 { background-color: #ece2d9; }
.bg-4 { background-color: #e1d6cc; }
.bg-5 { background-color: #ded3c9; }
.bg-6 { background-color: #e7dbd1; }
.bg-7 { background-color: #dad0c7; }
.bg-8 { background-color: #e2d6ce; }
.bg-9 { background-color: #e8ddd3; }
.bg-10 { background-color: #f0e6dc; }
.bg-11 { background-color: #e0d5cc; }
.bg-12 { background-color: #e6dbd1; }
.bg-13 { background-color: #e0d7cf; }
.bg-14 { background-color: #eadfd5; }
.bg-15 { background-color: #e9dfd5; }
.bg-16 { background-color: #e0d6cd; }
.bg-17 { background-color: #e1d7ce; }
.bg-18 { background-color: #dfd4cb; }
.bg-19 { background-color: #e7ddd4; }
.bg-20 { background-color: #e4d9d0; }
.bg-21 { background-color: #e3d9d0; }
.bg-22 { background-color: #efe5dc; }
.bg-23 { background-color: #efe3da; }
.bg-24 { background-color: #e2d8cf; }
.bg-25 { background-color: #e4dad1; }
