* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #102128;
  background: #f6f7f4;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 6vw 12px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 280px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #4b5a57;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e3ece7;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #cad9d1;
}

.ad-label {
  flex: 1 1 240px;
  font-size: 12px;
  color: #5b6b67;
  text-align: right;
}

main {
  flex: 1;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 48px 6vw;
  position: relative;
}

.section.alt {
  background: #e6efe9;
}

.section.dark {
  background: #0f1e1a;
  color: #f1f5f2;
}

.section.dark a {
  color: #f1f5f2;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 320px;
}

.section-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  align-items: center;
  padding-top: 24px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: #3b4b46;
  max-width: 520px;
}

.hero-visual {
  flex: 1 1 340px;
  min-height: 320px;
  position: relative;
  transform: translateY(16px);
}

.image-frame {
  background: #d6e1d9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-right {
  margin-left: auto;
  max-width: 480px;
}

.offset-left {
  margin-right: auto;
  max-width: 480px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #cfe3d7;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background: #1c3a2f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.btn:hover,
.btn:focus {
  background: #275543;
}

.btn.light {
  background: #f1f5f2;
  color: #102128;
}

.btn.light:hover,
.btn.light:focus {
  background: #e7efe9;
}

.text-link {
  text-decoration: underline;
  color: #255a49;
}

.text-link:hover,
.text-link:focus {
  color: #1b3f34;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #f9faf7;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 30, 26, 0.08);
}

.card-image {
  height: 150px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split .panel {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: #f4f7f3;
}

.metric strong {
  font-size: 22px;
}

.form-section {
  background: #f0f4f1;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccd7d2;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 10;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: #1b4d3d;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 30, 26, 0.2);
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #2a6a54;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #13241d;
  color: #f5f8f6;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.footer {
  padding: 32px 6vw 42px;
  background: #0f1e1a;
  color: #e8f0eb;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: #b7c6bf;
}

.legal-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.legal-hero .image-frame {
  flex: 1 1 280px;
  min-height: 220px;
}

.plain-list {
  padding-left: 18px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #d4e6dc;
  font-size: 12px;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
