* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --text: #1b1b1b;
  --muted: #5e5a52;
  --primary: #c73a2b;
  --primary-dark: #9f2b20;
  --accent: #0d5c63;
  --line: #e1dbd1;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 12px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  position: absolute;
  right: 4%;
  top: 64px;
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-links.open {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 0 56px;
}

.section {
  padding: 36px 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-accent {
  background: #f1ece5;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 28px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.button:hover,
.button:focus {
  background: var(--primary-dark);
  color: #fff;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card svg {
  width: 36px;
  height: 36px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat span {
  color: var(--muted);
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 18px;
  background: #fff;
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid var(--line);
  padding-left: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial strong {
  color: var(--primary);
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.toggle-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.toggle-btn[aria-checked="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 720px) {
  .nav-links {
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    display: flex;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-media {
    flex: 1;
  }

  .grid,
  .card-grid,
  .split,
  .compare {
    flex-direction: row;
  }

  .card-grid .card,
  .grid > div,
  .split > div,
  .compare-row {
    flex: 1;
  }

  .stat-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1;
  }
}
