/* ── Reset & Base ────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #FF7E5F;
  --twilight: #6B5B95;
  --warm-white: #FFFAF0;
  --navy: #1A1A2E;
  --text-dark: #1a1a1a;
  --text-light: #f0f0f0;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--twilight);
}

/* ── Layout ──────────────────────────────────────── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--text-light);
  text-align: center;
  padding: 80px 24px 64px;
}

.hero__icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  margin: 0 auto 32px;
}

.hero__badge {
  display: inline-block;
  transition: opacity 0.2s;
}
.hero__badge:hover {
  opacity: 0.85;
}
.hero__badge img {
  height: 54px;
}

/* ── Section ──────────────────────────────────────── */
.section {
  padding: 64px 0;
}

.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--navy);
}

/* ── FAQ Accordion ────────────────────────────────── */
.faq {
  list-style: none;
}

.faq__item {
  border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

.faq__item:first-child {
  border-top: 1px solid rgba(26, 26, 46, 0.1);
}

.faq__toggle {
  display: none;
}

.faq__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  transition: color 0.2s;
  user-select: none;
}

.faq__label:hover {
  color: var(--coral);
}

.faq__label::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__toggle:checked + .faq__label::after {
  content: "−";
  transform: rotate(180deg);
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__toggle:checked ~ .faq__body {
  max-height: 800px;
  padding-bottom: 20px;
}

.faq__content {
  padding: 0 4px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__content p {
  margin-bottom: 12px;
}

.faq__content ol,
.faq__content ul {
  margin: 8px 0 12px 20px;
}

.faq__content li {
  margin-bottom: 4px;
}

.faq__content strong {
  color: var(--text-dark);
}

.faq__content a {
  word-break: break-word;
}

/* ── Features strip ──────────────────────────────── */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.features__tag {
  background: var(--navy);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.9rem;
}

.footer a {
  color: var(--coral);
}

.footer__links {
  margin-top: 12px;
}

.footer__links a {
  margin: 0 12px;
}

/* ── Privacy page ─────────────────────────────────── */
.prose {
  padding: 64px 0 80px;
}

.prose h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.prose p {
  margin-bottom: 16px;
  color: #444;
}

.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}

.prose ul,
.prose ol {
  margin: 8px 0 16px 20px;
  color: #444;
}

.prose li {
  margin-bottom: 4px;
}

.prose hr {
  border: none;
  border-top: 1px solid rgba(26, 26, 46, 0.1);
  margin: 40px 0;
}

.prose strong {
  color: var(--text-dark);
}

.prose .lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 480px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .hero__icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .faq__label {
    font-size: 1rem;
    padding: 16px 4px;
  }
}
