* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #5a6b73;
  --accent: #1a73e8;
  --accent-soft: #e6f0ff;
  --surface: #f7f5f1;
  --surface-alt: #eef1f3;
  --line: #d8dee3;
  --warm: #f2e9e1;
}

body {
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 28px 6vw 18px;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

nav a {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface);
}

main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw;
  align-items: center;
}

.section-calm {
  background-color: #f7f5f1;
}

.section-soft {
  background-color: #eef1f3;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1 1 320px;
  min-height: 280px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-visual img {
  width: 100%;
  height: 100%;
}

.kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.headline {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.panel {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  background: var(--warm);
  min-height: 140px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-note {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  width: 100%;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 15px;
}

.inline-links a {
  text-decoration: underline;
}

.legal {
  padding: 30px 6vw 60px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer {
  padding: 24px 6vw 40px;
  background: var(--surface-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 6vw;
  background: #ffffff;
  border-top: 1px solid var(--line);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent);
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
}

.highlight {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 14px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 260px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip .split-visual {
  flex: 1 1 240px;
  min-height: 180px;
}

.bg-slate {
  background-color: #e7ecef;
}

.bg-warm {
  background-color: #f1efe9;
}

.bg-calm {
  background-color: #f7f5f1;
}

.bg-soft {
  background-color: #eef1f3;
}

.bg-wood {
  background-color: #efe3d6;
}

.bg-fog {
  background-color: #e5edf1;
}

.bg-lilac {
  background-color: #ece7f2;
}

.bg-sand {
  background-color: #f3ede6;
}

.bg-cream {
  background-color: #ede7e0;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
