*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3f0;
  --surface: #ffffff;
  --accent: #2c1f1a;
  --muted: #6c5e55;
  --highlight: #caa57b;
  --soft: #efe7df;
  --deep: #1c1511;
  --success: #2d5c4a;
  --shadow: 0 18px 40px rgba(28, 21, 17, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 220ms ease;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--accent);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.btn--text {
  background: transparent;
  color: var(--accent);
  text-decoration: underline;
  box-shadow: none;
}

.section {
  padding: 64px 0;
}

.section--soft {
  background: var(--soft);
}

.section--deep {
  background: var(--deep);
  color: #fff;
}

.section--deep .pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card--outline {
  background: transparent;
  border: 1px solid rgba(44, 31, 26, 0.2);
  box-shadow: none;
}

.card__icon {
  width: 44px;
  height: 44px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 21, 17, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-list {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
}

.nav-link {
  padding: 6px 2px;
  color: var(--accent);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(44, 31, 26, 0.2);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
}

body.nav-open .nav-list {
  display: flex;
}

.hero {
  padding-top: 80px;
}

.hero__title {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin: 16px 0;
}

.hero__panel {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card h3 {
  margin: 0;
}

.service-price {
  font-weight: 600;
  color: var(--success);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-tier {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.comparison-tier ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(44, 31, 26, 0.12);
  overflow: hidden;
  background: var(--surface);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.faq-panel {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-panel {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer {
  padding: 48px 0;
  background: var(--deep);
  color: #fff;
}

.footer .row {
  gap: 32px;
}

.footer a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 220;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 17, 0.6);
}

.cookie-modal__dialog {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 92%);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: var(--soft);
  padding: 14px;
  border-radius: var(--radius-sm);
}

.toggle {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(44, 31, 26, 0.3);
  background: #fff;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 720px) {
  .row {
    flex-direction: row;
    align-items: flex-start;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }

  .nav-toggle {
    display: none;
  }

  .hero__panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero__panel > div {
    flex: 1;
  }

  .services-grid,
  .testimonials,
  .stats,
  .feature-list,
  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid .card,
  .testimonials .card,
  .stats .stat,
  .feature-list .feature,
  .steps .step {
    flex: 1 1 calc(50% - 18px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-tier {
    flex: 1;
  }

  .cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .services-grid .card,
  .testimonials .card,
  .feature-list .feature,
  .steps .step {
    flex: 1 1 calc(33.333% - 18px);
  }

  .stats .stat {
    flex: 1 1 calc(25% - 16px);
  }
}
