* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fff6f1;
  --bg-soft: #fffaf7;
  --ink: #2c2a28;
  --muted: #6c6762;
  --accent: #e86a8d;
  --accent-dark: #c94d70;
  --highlight: #ffe0e9;
  --card: #ffffff;
  --border: #eaded6;
  --success: #4a8f6b;
  --shadow: 0 10px 30px rgba(44, 42, 40, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.highlight {
  background: var(--highlight);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn:focus-visible,
.icon-btn:focus-visible,
.faq-question:focus-visible,
.cookie-action:focus-visible,
.toggle-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 246, 241, 0.96);
  backdrop-filter: blur(10px);
  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;
  color: var(--ink);
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.nav-open .mobile-nav {
  display: flex;
}

.nav-overlay {
  display: none;
}

.nav-open .nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 40, 0.3);
  z-index: 10;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 24px;
}

.hero-visual svg {
  width: 160px;
  height: 160px;
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  color: var(--ink);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card {
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  background: #fff;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}

.footer-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: min(960px, 92vw);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(44, 42, 40, 0.4);
  z-index: 40;
  padding: 16px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: min(720px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-chip {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.toggle-chip[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--highlight);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.callout {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }

  .nav-links.desktop {
    display: flex;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .flex-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .nav-links.desktop {
    display: none;
  }
}
