* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b1f1c;
  background: #f7f8f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topline {
  background: #e7efe6;
  color: #2a3a2f;
  font-size: 14px;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topline .ad-label {
  font-weight: 600;
}

header {
  padding: 24px 24px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #2a5d3b;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-top: 0;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.hero-media .hero-image {
  border-radius: 24px;
  overflow: hidden;
  background: #ceded2;
  height: 100%;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hero-media .floating-note {
  position: absolute;
  right: -20px;
  top: 40px;
  background: #1f3a29;
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  max-width: 220px;
}

.section {
  margin-top: 80px;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section .narrow {
  max-width: 620px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 280px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #d6e3d9;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 20px;
  margin: 0 0 8px;
}

.highlight {
  background: #1f3a29;
  color: #ffffff;
  padding: 50px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.bg-river {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-wind {
  background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.highlight::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.price-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e4e9e3;
}

.price-card .price {
  font-size: 22px;
  font-weight: 700;
  color: #2a5d3b;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #2a5d3b;
  color: #ffffff;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.ghost-button {
  background: transparent;
  color: #2a5d3b;
  border: 1px solid #2a5d3b;
}

.inline-link {
  color: #2a5d3b;
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9e2da;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.footer {
  background: #0f1a12;
  color: #dbe8dc;
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer a {
  color: #dbe8dc;
}

.disclaimer {
  font-size: 14px;
  max-width: 520px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d7e1d7;
  box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.08);
  display: none;
  padding: 18px 24px;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3ee;
  color: #2a5d3b;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
