* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #5c6670;
  --accent: #1d6b6c;
  --accent-soft: #e5f0ee;
  --highlight: #f2e6d8;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 0 0;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background: var(--surface);
  border-radius: 22px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.ad-label {
  max-width: 240px;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

main {
  padding: 28px 0 90px;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-accent {
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 380px;
  min-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #dfe7e4;
  min-height: 320px;
}

.hero {
  padding-top: 40px;
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-card .hero-text {
  flex: 1 1 320px;
  padding: 34px;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card .hero-media {
  flex: 1 1 380px;
  margin-top: 18px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8e0e6;
  min-height: 360px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.link-inline {
  color: var(--accent);
  border-bottom: 1px solid rgba(29, 107, 108, 0.3);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  height: 180px;
  background-color: #e4e7e1;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.offset-block {
  margin-left: auto;
  width: min(680px, 100%);
  background: var(--highlight);
  padding: 28px;
  border-radius: 28px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  background: var(--surface);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0d7dd;
  font-size: 15px;
  font-family: inherit;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.cta-banner {
  background: var(--accent-soft);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

footer {
  padding: 40px 0 60px;
  background: #111618;
  color: #e6e8ea;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #e6e8ea;
}

.disclaimer {
  font-size: 13px;
  color: #c6cbd0;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--surface);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .media {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #dae2e8;
  min-height: 280px;
}

.page-hero .text {
  flex: 1 1 300px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.info-list span {
  font-weight: 600;
  color: var(--ink);
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 42px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 26, 0.55);
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
  }
}
