*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #1e7f6d;
  --accent: #f2a045;
  --dark: #1f2a2e;
  --light: #f5f6f4;
  --muted: #66707a;
  --border: #dfe5e8;
  --shadow: 0 12px 30px rgba(31, 42, 46, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--accent);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 999;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.1rem;
  text-transform: lowercase;
}

.menu-toggle {
  background: var(--dark);
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  position: absolute;
  right: 0;
  top: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 16px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--dark);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 0 64px;
}

section {
  padding: 32px 0;
}

.section-muted {
  background: var(--light);
}

.section-accent {
  background: #fdf1e4;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--primary);
  color: #ffffff;
}

.btn.outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #e8f4f1;
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f4f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat strong {
  font-size: 1.4rem;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.95rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: #ffffff;
  border: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 14px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #e8f4f1;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 16px;
}

.cookie-modal.is-visible {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.toggle-btn {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.notice {
  background: #f9fafb;
  border-left: 3px solid var(--primary);
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 18px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item {
    flex: 1 1 240px;
  }

  .stat-list {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .table-like {
    flex-direction: row;
  }

  .table-row {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
