*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f7f4;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: #f2f1ee;
  padding: 18px 5vw 24px;
}

.header-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ad-label {
  font-size: 0.9rem;
  color: #4b5a60;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e3ece9;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  background: #d4e3dd;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 5vw 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #47616a;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}

.hero-image {
  background: #cad4d1;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  display: block;
}

.hero-actions {
  background: #cad4d1;
  border-radius: 18px;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2a2e;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-button {
  background: #1f2a2e;
  color: #f7f7f4;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  background: transparent;
  color: #1f2a2e;
}

.section {
  padding: 60px 5vw;
}

.section.alt {
  background: #edf1ee;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
  background: #d7ddd9;
  border-radius: 16px;
  overflow: hidden;
}

.pill-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #1f2a2e;
  border-bottom: 1px solid #1f2a2e;
  padding-bottom: 2px;
  transition: transform 0.2s ease;
}

.pill-link:hover {
  transform: translateY(-2px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card-media {
  background: #dde5e1;
  border-radius: 12px;
  overflow: hidden;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b4d4a;
}

.quote {
  background: #ffffff;
  border-left: 4px solid #1b4d4a;
  padding: 18px;
  border-radius: 8px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8d0cc;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  min-height: 24px;
  color: #1b4d4a;
  font-weight: 600;
}

.footer {
  background: #1f2a2e;
  color: #f7f7f4;
  padding: 40px 5vw 90px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 24px;
}

.footer a {
  color: #f7f7f4;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c7d0cc;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b4d4a;
  color: #f7f7f4;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  background: #16605a;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #1f2a2e;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-button {
  border: 1px solid #1f2a2e;
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-button.primary {
  background: #1f2a2e;
  color: #ffffff;
}

.cookie-button:hover {
  transform: translateY(-2px);
}

.note {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #e3ece9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
