*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #5b6672;
  --soft: #eef2f5;
  --accent: #1f6b7a;
  --accent-dark: #14505a;
  --warm: #f7f1ea;
  --stone: #e7ecef;
  --shadow: 0 20px 50px rgba(10, 22, 34, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfd;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.94rem;
}

.ad-note {
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid #ccd6de;
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 0;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  font-weight: 600;
}

.img-frame {
  background: var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  align-items: center;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 0.86rem;
  border: 1px solid #d8e0e6;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-card {
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dee4;
  font-size: 1rem;
  font-family: inherit;
}

.bg-split {
  background-image: url("https://images.unsplash.com/photo-1759434768863-85483a898cd9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 20px;
  padding: 36px;
}

.bg-split p {
  color: #f1f3f5;
}

footer {
  padding: 36px 0 48px;
  background: #0f1720;
  color: #f3f6f9;
}

footer p,
footer a {
  color: #cdd6df;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-box {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.two-col {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 260px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
