* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --bg-alt: #ffffff;
  --ink: #1f1b16;
  --muted: #615a52;
  --accent: #1b5f9a;
  --accent-soft: #e3edf8;
  --line: #ded4cc;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-link {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 70px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 50px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
}

.hero-media {
  flex: 1;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #d7d0c8;
}

.hero-media-bg {
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.split-media {
  flex: 1;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #c8d2da;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.section-title {
  font-size: 1.65rem;
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--bg-alt);
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 220px;
  min-width: 220px;
  border: 1px solid var(--line);
}

.card-media {
  height: 180px;
  background: #cfd8df;
}

.card-body {
  padding: 18px 18px 22px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  margin: 30px 0;
  border: 1px solid var(--line);
}

.form-wrap {
  background: var(--bg-alt);
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.95rem;
  color: var(--accent);
}

.split-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.split-item {
  flex: 1 1 180px;
  background: #f0ece8;
  border-radius: 18px;
  padding: 14px 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.sticky-cta-inner {
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.simple-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px 70px;
}

.simple-page h1 {
  margin-top: 0;
}

.legal-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  margin: 18px 0;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    position: static;
    margin: 20px;
  }
}
