* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5a6b73;
  --accent: #1f7a6d;
  --accent-dark: #165f55;
  --paper: #f6f7f4;
  --mist: #e8efe9;
  --sand: #f2ece3;
  --shadow: 0 18px 40px rgba(20, 30, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #e4e9e5;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1780445392792-556e5609c5ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 24, 0.58);
}

.hero-content {
  position: relative;
  padding: 110px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
}

.hero-title {
  font-size: clamp(2.2rem, 2.8vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e7f0ec;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 24px;
}

.button {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  margin: 0 0 18px;
  font-size: 2rem;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-box {
  background: var(--sand);
  padding: 10px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  padding: 12px 16px;
  background: var(--mist);
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  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 #d4ddd7;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.footer {
  padding: 40px 6vw 60px;
  background: #111b1b;
  color: #e8f0ed;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer a {
  color: #b7c7c0;
}

.legal {
  font-size: 0.9rem;
  color: #b7c7c0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f1c19;
  color: #e8f0ed;
  padding: 18px 6vw;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.8rem;
}

.note {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1771178301028-49a922aefccd?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  border-radius: 26px;
  padding: 40px;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 28, 0.55);
  border-radius: 26px;
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .media-box {
  flex: 1 1 240px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.disclaimer {
  background: #182322;
  padding: 16px;
  border-radius: 14px;
  color: #cbd8d4;
}

.simple-hero {
  padding: 70px 6vw 30px;
  background: var(--paper);
}

@media (max-width: 780px) {
  .hero-content {
    padding: 90px 6vw 60px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
