*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2430;
  --muted: #5b6473;
  --sand: #f7f3ee;
  --gold: #c9a24f;
  --navy: #2f3642;
  --olive: #5f6b4a;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(31, 36, 48, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.btn-outline {
  background: transparent;
  color: var(--navy);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

header {
  background: var(--white);
  border-bottom: 1px solid #e5e0d7;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border: 1px solid #d6cfc4;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  background: var(--sand);
  padding: 56px 0 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 0 0 32px;
}

.section-alt {
  background: #faf7f2;
  padding: 48px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat span {
  font-size: 1.8rem;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.testimonial cite {
  font-style: normal;
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

.quote-panel {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e4ded4;
}

.comparison-row strong {
  color: var(--navy);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2dbd0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: var(--sand);
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--olive);
  color: var(--white);
  padding: 40px 0;
}

.cta .btn {
  background: var(--white);
  color: var(--olive);
  border-color: var(--white);
}

.footer {
  background: #141820;
  color: #d8dbe2;
  padding: 32px 0 80px;
}

.footer a {
  color: #d8dbe2;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  margin-top: 20px;
  color: #9aa0ad;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  width: min(960px, 92%);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 32, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f5f1ea;
}

.toggle-button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d2c8bb;
  background: var(--white);
  font-weight: 600;
}

.toggle-button[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .card-grid,
  .feature-row,
  .stats,
  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial {
    flex: 1;
    min-width: 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
