* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1b1f24;
  --muted: #5f6b7a;
  --accent: #1f6b5b;
  --accent-2: #d98f3c;
  --bg: #f7f6f2;
  --panel: #ffffff;
  --panel-2: #eef3f2;
  --panel-3: #f1e9df;
  --shadow: 0 12px 28px rgba(15, 20, 26, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #d7dedb;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel-2);
}

.section.dark {
  background: #1c2a27;
  color: #f5f5f5;
}

.section.dark .muted {
  color: #ccd5d3;
}

.hero {
  padding: 40px 0 60px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(31, 107, 91, 0.2);
}

.btn.alt {
  background: var(--accent-2);
  color: #2b1b05;
  box-shadow: 0 8px 18px rgba(217, 143, 60, 0.2);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #c8d4d1;
  color: var(--text);
  box-shadow: none;
}

.image-frame {
  background-color: #dde6e4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  min-width: 160px;
}

.form-panel {
  background: var(--panel-3);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5d1;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #101514;
  color: #f3f4f5;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f2a25;
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 16px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 14px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e5efed;
  color: #1f3c35;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
