* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1c1c1c;
  --muted: #5e5e5e;
  --brand: #1b7c6a;
  --brand-dark: #0f5145;
  --accent: #f4b942;
  --line: #e1e0dc;
  --shadow: 0 14px 30px rgba(17, 17, 17, 0.12);
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

nav {
  position: relative;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 0;
  top: 2.8rem;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand);
}

.nav-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  background: var(--brand);
  border: none;
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

main section {
  padding: 3.5rem 0;
}

.hero {
  background: linear-gradient(135deg, #f4f1e8 0%, #e7f2ef 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.7rem 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(27, 124, 106, 0.08);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.card.alt {
  background: #f1f6f5;
  border-color: #d3e7e3;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.feature svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  padding: 1.2rem 1.6rem;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
}

.quote p {
  font-size: 1.1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-alt {
  background: var(--surface);
}

.list-columns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.list-columns ul li {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  background: #f5f1e6;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step span {
  background: var(--accent);
  color: #222;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.35rem 0.7rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: #0f5145;
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-panel a {
  color: #fff;
}

footer {
  background: #111;
  color: #f5f5f5;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #f1f1f1;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 1.2rem;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  width: min(520px, 92vw);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #f4f3f0;
}

.toggle {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.toggle[aria-checked="false"] {
  background: #a3a3a3;
}

.info-block {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

@media (min-width: 800px) {
  .nav-links {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    flex-direction: row;
    background: transparent;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .split,
  .card-grid,
  .list-columns,
  .footer-grid,
  .stats,
  .comparison,
  .steps {
    flex-direction: row;
  }

  .hero-grid > *,
  .split > *,
  .card-grid > *,
  .list-columns > *,
  .stats > *,
  .comparison > *,
  .steps > * {
    flex: 1;
  }

  .footer-grid {
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    max-width: 420px;
  }
}
