* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1d1c1a;
  --muted: #5a5a55;
  --brand: #1f6f5c;
  --accent: #f0b429;
  --bg: #f7f4ef;
  --panel: #ffffff;
  --deep: #0f2b24;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--brand);
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-weight: 600;
}

.section {
  padding: 54px 6vw;
}

.section--panel {
  background: var(--panel);
}

.section--deep {
  background: var(--deep);
  color: #f6f4ef;
}

.section--accent {
  background: linear-gradient(120deg, #fff7dd 0%, #f1efe8 55%, #e9f2ee 100%);
}

.split {
  display: flex;
  gap: 38px;
  align-items: center;
  flex-direction: column;
}

.split--reverse {
  flex-direction: column-reverse;
}

.split__content,
.split__media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.btn--light {
  background: #fff;
  color: var(--deep);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(15, 43, 36, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6f3ef;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d5ce;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--brand);
}

.quote {
  background: #f4efe7;
  padding: 18px;
  border-radius: 16px;
}

.footer {
  padding: 36px 6vw 60px;
  background: #0b1f1a;
  color: #d8d3c7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: var(--deep);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta .btn {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  color: var(--text);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.hero-image {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mini-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.mini-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 880px) {
  .split,
  .split--reverse {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 220px;
  }

  .sticky-cta {
    flex-direction: row;
    justify-content: space-between;
    max-width: 520px;
    margin-left: auto;
  }

  .sticky-cta .btn {
    width: auto;
  }

  .cookie-banner {
    max-width: 520px;
  }
}
