* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a5f67;
  --accent: #1f6b5f;
  --accent-soft: #e6f0ee;
  --warm: #f6f2ec;
  --cool: #eef2f8;
  --panel: #ffffff;
  --border: #e1e5ea;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fafafa;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 10px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--warm);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.split {
  display: flex;
  gap: 48px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  background: var(--panel);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(15, 20, 30, 0.08);
  border: 1px solid var(--border);
}

.media {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cool);
}

.split .media {
  flex: 1 1 320px;
  min-height: 260px;
}

.bg-1 { background: #e8ebe7; }
.bg-2 { background: #e6edf3; }
.bg-3 { background: #efece7; }
.bg-4 { background: #e9eef2; }
.bg-5 { background: #f0ece9; }
.bg-6 { background: #f2f5f6; }
.bg-7 { background: #e8e5e0; }
.bg-8 { background: #eef1f3; }
.bg-9 { background: #e9ecea; }
.bg-10 { background: #e7ebef; }
.bg-11 { background: #e5e9ee; }
.bg-12 { background: #f0eee9; }
.bg-13 { background: #e7eef1; }
.bg-14 { background: #e9ecef; }
.bg-15 { background: #f2eee9; }
.bg-16 { background: #e8ebf0; }
.bg-17 { background: #edeff3; }
.bg-18 { background: #f1ece8; }
.bg-19 { background: #e3e8ec; }
.bg-20 { background: #eef1f3; }
.bg-21 { background: #e9edf2; }

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.section h1,
.section h2 {
  margin-bottom: 16px;
}

.section p {
  margin-bottom: 14px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 0 80px;
  background: #101418;
  color: #d7dbe2;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d7dbe2;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #101418;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 20, 30, 0.16);
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.simple-hero {
  padding: 80px 0;
}

.notice {
  background: var(--cool);
  padding: 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}
