* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f1e;
  --muted: #5a615e;
  --accent: #1f6f5c;
  --accent-dark: #13453a;
  --sand: #f3efe9;
  --mist: #e6efe9;
  --sun: #f5c65a;
  --line: #d5dbd7;
  font-size: 16px;
}

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;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 1.5rem 1.25rem 1rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 2.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(31, 111, 92, 0.08), rgba(245, 198, 90, 0.12));
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(18, 34, 28, 0.1);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  background: transparent;
  font-weight: 600;
}

.section {
  padding: 2.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: var(--accent-dark);
  color: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mist);
  color: var(--accent-dark);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.story-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-step {
  padding: 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric {
  padding: 1rem;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  border-radius: 16px;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  padding: 1.25rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  border-radius: 14px;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(16, 32, 28, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--sun);
  color: #1b1b1b;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.footer {
  padding: 2.5rem 1.25rem;
  background: #121916;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
}

.page-hero {
  padding: 2rem 1.25rem 2.5rem;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-hero h1 {
  font-size: 2rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  header {
    padding: 2rem 4rem 1.5rem;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    padding: 4rem 4rem 5rem;
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-card {
    max-width: 360px;
  }

  .section {
    padding: 4rem 4rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .price-grid,
  .metrics,
  .testimonials {
    flex-direction: row;
  }

  .card,
  .price-item,
  .metric,
  .testimonial {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .cookie-banner {
    max-width: 520px;
    left: auto;
    right: 2rem;
  }
}
