/* Base */
:root {
  --bg: #fff7f2;
  --bg-alt: #f2f7ff;
  --ink: #2b2b2b;
  --muted: #5b6670;
  --brand: #e66a6a;
  --brand-dark: #c85656;
  --accent: #7bb2f2;
  --card: #ffffff;
  --border: #e9e1dd;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.6);
  display: none;
  flex-direction: column;
  padding: 90px 20px 20px;
}

.nav.open {
  display: flex;
}

.nav-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.nav-panel a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-panel a:hover {
  background: var(--bg-alt);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 60px 0 30px;
}

.hero-card {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: transparent;
}

/* Sections */
.section {
  padding: 18px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.section-muted {
  color: var(--muted);
  max-width: 760px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-color: var(--accent);
  background: #f7fbff;
}

.icon-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.icon {
  width: 38px;
  height: 38px;
}

/* Alternating blocks */
.alt-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alt-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alt-block.reverse {
  background: var(--bg-alt);
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.stat strong {
  font-size: 1.4rem;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--brand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Footer */
.site-footer {
  background: #101316;
  color: #f1f1f1;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f1f1f1;
  font-weight: 600;
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 70;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  padding: 10px 12px;
  border-radius: 12px;
}

/* Utility */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}

.note {
  background: #fff6db;
  border: 1px solid #f3e0a7;
  border-radius: var(--radius);
  padding: 16px;
}

.separator {
  height: 2px;
  background: var(--border);
  border-radius: 999px;
  width: 100%;
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    position: static;
    inset: auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
  }

  .nav-panel {
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .alt-blocks {
    gap: 24px;
  }

  .alt-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .alt-block.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .comparison-row {
    flex: 1 1 260px;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
