:root {
  --bg: #f7f5f2;
  --ink: #1f2328;
  --muted: #5a6772;
  --accent: #1f5f5b;
  --accent-soft: #e1efec;
  --card: #ffffff;
  --line: #d6d9de;
}

* {
  box-sizing: border-box;
}

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

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

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #0b4a40;
  outline-offset: 2px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fafafa;
}

main {
  padding-bottom: 120px;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 50%;
}

.split .media {
  flex: 1 1 50%;
  padding: 16px;
  border-radius: 18px;
}

.bg-one {
  background: #d9e3e2;
}

.bg-two {
  background: #dde5ea;
}

.bg-three {
  background: #e6e1dd;
}

.bg-four {
  background: #dbe0e6;
}

.bg-five {
  background: #e4e8e6;
}

.bg-six {
  background: #e7e0ea;
}

.bg-seven {
  background: #e6ece8;
}

.bg-eight {
  background: #e3e7ef;
}

.bg-nine {
  background: #e8e4df;
}

.bg-ten {
  background: #e5e2ea;
}

.bg-eleven {
  background: #dfe7e1;
}

.bg-twelve {
  background: #e8e1e5;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

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

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 140px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  background: #e0e6ea;
}

.card h3 {
  margin: 0 0 6px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  background: #101315;
  color: #e6e9ec;
  padding: 32px 6vw 70px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #e6e9ec;
}

.disclaimer {
  color: #b9c0c7;
  font-size: 0.95rem;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

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

.notice {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-top: 14px;
}

.list-clean {
  padding-left: 18px;
  margin: 12px 0;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
