:root {
  --bg: #f6f3ef;
  --bg-alt: #eef1ea;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --accent: #3f6b4f;
  --accent-dark: #2f4f3a;
  --card: #ffffff;
  --line: #d9d2c8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a.inline-cta {
  border-bottom: 1px solid var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.section {
  padding: 64px 24px;
}

.section.alt {
  background: var(--bg-alt);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg .panel {
  background: rgba(255, 255, 255, 0.92);
}

.section .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  background: #dfe6db;
  border-radius: 12px;
  overflow: hidden;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-media {
  border-radius: 8px;
  overflow: hidden;
  background: #dbe3d5;
}

.pricing {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
}

label {
  font-weight: 600;
}

footer {
  background: #1d241f;
  color: #f5f2ed;
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d6d1c7;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(29, 36, 31, 0.95);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #303a32;
}

.sticky-cta .btn {
  background: #f0c06a;
  color: #1d241f;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #fff5e6;
  border-left: 4px solid #f0c06a;
  padding: 16px;
}

@media (max-width: 900px) {
  .hero-content,
  .split {
    flex-direction: column;
  }
  .split.reverse {
    flex-direction: column;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    justify-content: flex-start;
  }
}
