/* Base */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --text: #1b1b1b;
  --muted: #5b5b5b;
  --primary: #1f5f72;
  --accent: #c78b2e;
  --dark: #103645;
  --border: #e3e0d8;
  --shadow: 0 14px 30px rgba(16, 54, 69, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 18px 72px;
}

section {
  background: var(--surface);
  padding: 28px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-muted {
  background: #eef1f0;
}

.section-dark {
  background: var(--dark);
  color: #f9f9f7;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent);
}

h1, h2, h3 {
  line-height: 1.25;
  margin: 0;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.button.light {
  background: #fff;
  color: var(--dark);
}

.nav {
  position: sticky;
  top: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  color: var(--text);
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(16, 54, 69, 0.6);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 80px 16px 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-panel {
  background: var(--surface);
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #f0f4f6;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #f7fafb;
  border: 1px solid var(--border);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border-radius: 18px;
  padding: 18px;
  background: #f8f7f3;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.highlight {
  background: #fdf6eb;
  border-color: #f1dcc0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item img {
  width: 32px;
  height: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
  background: #fff;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-answer {
  margin-top: 8px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7eff2;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer {
  background: #101c22;
  color: #c7d2d6;
  padding: 36px 18px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #c7d2d6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 54, 69, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 110;
}

.cookie-modal.open {
  display: flex;
}

.cookie-dialog {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
}

.pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 720px) {
  main {
    padding: 48px 28px 96px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-actions {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
