* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f2ee;
  --text: #2b2420;
  --muted: #6c5f58;
  --accent: #c95d3a;
  --accent-dark: #9e4428;
  --light: #ffffff;
  --panel: #f0e6df;
  --shadow: 0 10px 30px rgba(43, 36, 32, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(43, 36, 32, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.nav-links.open {
  display: flex;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--muted);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 70px 0 60px;
  background: linear-gradient(130deg, #fdf9f5 0%, #f2dfd2 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--panel);
}

.section-dark {
  background: #2e2420;
  color: #fef6ef;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 720px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--light);
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.icon-badge {
  width: 42px;
  height: 42px;
  background: var(--panel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 180px;
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.stat span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--light);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--panel);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.highlight {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
}

.faq-content {
  display: none;
  padding-top: 8px;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card span {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.comparison .plan {
  background: var(--light);
  padding: 18px;
  border-radius: 12px;
  flex: 1 1 220px;
  border: 1px solid rgba(43, 36, 32, 0.08);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-block {
  background: var(--light);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  padding: 40px 0;
  background: #231b18;
  color: #f3e8df;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  width: min(480px, 90%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 19, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal .modal-content {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }
}
