* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background: #f7f6f1;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f2a1f;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 6%;
  background: #efece2;
  border-bottom: 1px solid #d7d2c3;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: #1f2a1f;
  color: #fefdf8;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6%;
  background: #e7efe4;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-visual {
  position: relative;
  flex: 1;
  min-height: 300px;
  background: #c8d2bf;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 48px 6%;
}

.section.alt {
  background: #f0f2e8;
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  flex: 1;
  min-width: 260px;
  background: #d4dbc8;
  padding: 10px;
}

.split-visual img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #d6d6c8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-visual {
  background: #d1d9c2;
  padding: 8px;
}

.inline-image {
  background: #cbd6c1;
  padding: 10px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid #1f2a1f;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  padding: 12px 18px;
  border: 1px solid #1f2a1f;
  background: #1f2a1f;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta.secondary {
  background: transparent;
  color: #1f2a1f;
}

.inline-cta {
  border-bottom: 1px solid #1f2a1f;
}

.pricing-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d6d6c8;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form-panel {
  background: #ffffff;
  border: 1px solid #d6d6c8;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c9c9b8;
  font-size: 1rem;
  background: #fefdf8;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #efece2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  background: #1f2a1f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #d6d6c8;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  padding: 16px;
  background: #fef8e8;
  border-left: 4px solid #c5a96c;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }
}
