:root {
  --ink: #1c1f1b;
  --muted: #5b635b;
  --accent: #2d6a4f;
  --accent-2: #3b7d68;
  --sand: #f3f1ea;
  --mist: #e6efe9;
  --stone: #c7d3cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fafaf7;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-2);
}

header {
  padding: 28px 6vw 12px 6vw;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 20px 6vw 60px 6vw;
  position: relative;
}

.hero-text {
  flex: 1;
  padding: 22px 12px 22px 0;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-panel {
  flex: 1.1;
  background: var(--mist);
  padding: 18px;
  border-radius: 20px;
  margin-top: 20px;
}

.hero-image {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  background: #d7e1da;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice {
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #255442;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.offset-left {
  margin-left: 4vw;
  background: var(--sand);
  border-radius: 26px;
}

.section.offset-right {
  margin-right: 4vw;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(23, 32, 26, 0.08);
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  background: #dbe7df;
  border-radius: 18px;
  overflow: hidden;
  padding: 6px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(23, 32, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #dae5dd;
}

.card a.btn {
  align-self: flex-start;
}

.highlight-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--mist);
  padding: 24px;
  border-radius: 18px;
}

.strip-item {
  flex: 1;
  min-width: 200px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e2e7e1;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(23, 32, 26, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd7d1;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

footer {
  padding: 50px 6vw 70px 6vw;
  background: #1f2d26;
  color: #e9efe9;
}

footer a {
  color: #cfe7da;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1;
  min-width: 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d0dbd4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 20px 40px rgba(23, 32, 26, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #fff6e6;
  border: 1px solid #f0d9b1;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 30px 6vw 0 6vw;
  }
}