* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  color: #1f2a25;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1f2a25;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f3ef;
  border-bottom: 1px solid #d9d2c9;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a5a5a;
  border: 1px solid #c9c1b7;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav a {
  font-size: 0.95rem;
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  padding: 64px 6vw;
  gap: 48px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-wrap {
  background: #d6d0c7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(23, 33, 28, 0.12);
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #657066;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: #1f2a25;
  color: #f6f3ef;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #efe7dc;
  color: #1f2a25;
  border: 1px solid #bfb4a6;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #1f2a25;
  color: #1f2a25;
}

.btn:hover,
.nav a:hover {
  opacity: 0.85;
}

.inline-link {
  text-decoration: underline;
  font-weight: 500;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #efe7dc;
  font-size: 0.9rem;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(23, 33, 28, 0.08);
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
}

.price-tag {
  font-weight: 600;
  color: #0b6b4f;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #f0ebe4;
  padding: 16px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(23, 33, 28, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b7;
  font-family: inherit;
  font-size: 0.95rem;
}

.footer {
  background: #1f2a25;
  color: #f6f3ef;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d1c7bb;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(246, 243, 239, 0.95);
  border-top: 1px solid #d9d2c9;
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(23, 33, 28, 0.2);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.hidden {
  display: none;
}

.legal-hero {
  font-size: 1.6rem;
  margin: 0;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
