* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1c1f;
  --muted: #5b6168;
  --accent: #2b6cb0;
  --accent-dark: #1f4f86;
  --soft: #f3f5f7;
  --warm: #f8f2ea;
  --leaf: #e6f1ea;
  --stone: #eef0f3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

header {
  padding: 28px 6vw 16px;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  padding: 10px 6vw 80px;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 24px 24px 0;
}

.hero-visual {
  flex: 1 1 320px;
  background: var(--leaf);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid #d6dbe1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.leaf {
  background: var(--leaf);
}

.section.bg-forest {
  background-color: #2b3a2f;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-forest .muted,
.section.bg-forest a {
  color: #f5f6f8;
}

.section.bg-forest .btn.secondary {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split .panel {
  flex: 1 1 280px;
}

.offset-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(19, 30, 45, 0.08);
  margin-top: -40px;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.card .card-image {
  background: var(--stone);
  min-height: 160px;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 32px rgba(19, 30, 45, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0d5dd;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}

.sticky-cta a {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta a:hover,
.sticky-cta a:focus {
  background: var(--accent-dark);
}

.footer {
  padding: 50px 6vw 70px;
  background: #111418;
  color: #d8dde3;
}

.footer a {
  color: #d8dde3;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b3bac3;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  max-width: 520px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 32px rgba(19, 30, 45, 0.18);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-column .column {
  flex: 1 1 320px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  background: var(--stone);
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .offset-card {
    margin-top: 0;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
