* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2a24;
  background: #f6f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand img {
  width: 40px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #2a7a5f;
}

.hero {
  padding: 48px 6vw 24px;
}

.split {
  display: flex;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(22, 52, 41, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #e0f0e8;
  color: #1c4b39;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: #30433c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #2a7a5f;
  background: #2a7a5f;
  color: #fff;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #2a7a5f;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: #eaf2ec;
}

.section.deep {
  background: #12211d;
  color: #f0f5f3;
}

.section.deep .btn.secondary {
  border-color: #f0f5f3;
  color: #f0f5f3;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(22, 52, 41, 0.1);
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b5f46;
}

.inline-link {
  color: #1b5f46;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(22, 52, 41, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7d6cc;
  font-size: 1rem;
  background: #f9fbfa;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #0e1916;
  color: #dbe5df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffd36e;
  color: #1d2b24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  padding: 56px 6vw 24px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(22, 52, 41, 0.1);
}

.legal-content {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(22, 52, 41, 0.08);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
