* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f7f3;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 12px;
  border-bottom: 1px solid #d7ded8;
  background-color: #f6f7f3;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background-color: #1f2a2e;
  color: #f6f7f3;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 56px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: #4d5f54;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  line-height: 1.6;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background-color: #1f2a2e;
  color: #f6f7f3;
}

.secondary-btn {
  background-color: transparent;
  color: #1f2a2e;
  border-color: #1f2a2e;
}

.hero-image,
.media-block {
  border-radius: 16px;
  overflow: hidden;
  background-color: #c8d0c7;
}

.hero-image img,
.media-block img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background-color: #e8ede6;
  border-radius: 12px;
}

.stat-card {
  flex: 1;
  min-width: 160px;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section.dark {
  background-color: #1f2a2e;
  color: #f6f7f3;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.08);
}

.card.dark {
  background-color: #2d3a3f;
  color: #f6f7f3;
  box-shadow: none;
}

.image-frame {
  background-color: #c8d0c7;
  border-radius: 10px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1c5d45;
}

.price.dark {
  color: #a8e0c7;
}

.inline-link {
  text-decoration: underline;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid #1f2a2e;
  background-color: #f1f3f0;
}

.form-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 28px rgba(31, 42, 46, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cdd6ce;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 0;
  background-color: #e8ede6;
  font-size: 0.9rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1c5d45;
  color: #f6f7f3;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border: 1px solid #cdd6ce;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  background-color: #f1f3f0;
  border-radius: 999px;
  font-size: 0.85rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background-color: #ffffff;
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.two-col {
  display: flex;
  gap: 24px;
  align-items: center;
}

.two-col .media-block {
  flex: 1;
}

.two-col .content-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 860px) {
  .split,
  .two-col {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
[hidden] {
  display: none !important;
}