* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1e1b;
  --muted: #5b645c;
  --accent: #1d6b4b;
  --accent-soft: #e7f1ea;
  --sand: #f6f2e9;
  --sun: #f3c76f;
  --fog: #f1f3f2;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 40px 0 96px;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 0;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-visual {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600&auto=format&fit=crop") center/cover;
  min-height: 320px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(29, 107, 75, 0.55), rgba(0, 0, 0, 0.1));
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-card p {
  color: var(--muted);
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(29, 107, 75, 0.3);
}

.btn-light {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--fog);
  padding: 26px;
  border-radius: 18px;
}

.story-card h3 {
  font-size: 1.35rem;
}

.story-card p {
  color: var(--muted);
}

.story-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--sand);
  border-radius: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote span {
  opacity: 0.8;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-left: 3px solid var(--sun);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.step-index {
  font-weight: 700;
  color: var(--accent);
}

.trust-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #0f3022;
  color: #fff;
  padding: 32px;
  border-radius: 22px;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.reveal {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e0e4e1;
}

.price-card span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d8d5;
  font: inherit;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 0 60px;
  border-top: 1px solid #e3e6e3;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #d8dcd9;
  padding: 16px;
  display: none;
  z-index: 30;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.08);
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 90px;
}

.info-card {
  background: var(--fog);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-row img {
  border-radius: 18px;
}

.note {
  background: #fff7e0;
  padding: 18px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    gap: 36px;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 2;
  }

  .story-aside {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .image-row {
    flex-direction: row;
  }

  .image-row img {
    flex: 1;
  }
}
