* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --accent: #2a7a4b;
  --accent-dark: #1f5b37;
  --sand: #f3efe7;
  --mist: #f7f7f5;
  --leaf: #e4f1e7;
  --sun: #fce9c5;
  --line: #d8d4cd;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 12px 6vw 56px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--leaf);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: flex-start;
  max-width: 520px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-image {
  align-self: flex-end;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  margin-top: -40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.sun {
  background: var(--sun);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}

.offset-image {
  align-self: flex-end;
  max-width: 520px;
  margin-top: -32px;
  border-radius: 16px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.1rem;
}

.stat strong {
  font-size: 1.8rem;
  color: var(--accent-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-end;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  max-width: 280px;
}

.footer {
  background: #141414;
  color: #f5f5f5;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.page-header {
  padding: 32px 6vw 24px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content {
  padding: 32px 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.content p {
  max-width: 780px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(92vw, 520px);
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-inner {
    flex: 1;
  }

  .hero-image {
    margin-top: 40px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .cards,
  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .pricing-grid .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .timeline {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .form-wrap {
    max-width: 560px;
  }
}
