* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f1;
  --bg-contrast: #ffffff;
  --text: #1f2933;
  --muted: #5c6b75;
  --brand: #d67c1c;
  --brand-dark: #8a4a12;
  --accent: #2f6d5a;
  --line: #e1dad0;
  --shadow: 0 14px 35px rgba(31, 41, 51, 0.08);
}

html {
  scroll-behavior: smooth;
}

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%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-contrast);
}

.section.tight {
  padding: 48px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

.title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 12px 0 16px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--brand-dark);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button.ghost:hover,
.button.ghost:focus {
  background: var(--bg);
}

header {
  background: var(--bg-contrast);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 10px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: 12px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

@media (min-width: 880px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--bg-contrast);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-grid .stat {
  background: var(--bg);
  padding: 16px;
  border-radius: 14px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-contrast);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.feature svg {
  width: 38px;
  height: 38px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: var(--bg-contrast);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .icon {
  width: 42px;
  height: 42px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  background: var(--bg-contrast);
  padding: 26px;
  border-radius: 16px;
  border-left: 4px solid var(--brand);
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats-row .stat {
  background: var(--bg-contrast);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  background: var(--accent);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--bg-contrast);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--bg-contrast);
  border-radius: 12px;
  border: 1px dashed var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq button {
  width: 100%;
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-contrast);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq .answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--bg-contrast);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand-dark);
}

.highlight-panel {
  background: var(--accent);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-box {
  background: var(--bg-contrast);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
}

.footer {
  background: #14191f;
  color: #f5f1ea;
  padding: 40px 0;
}

.footer a {
  color: #f5f1ea;
  opacity: 0.85;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: #c2c7cc;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-contrast);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  width: min(92vw, 520px);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--bg-contrast);
  width: min(92vw, 520px);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal .options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  margin-top: 4px;
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid,
  .card-grid,
  .stats-row,
  .testimonial-grid,
  .service-grid,
  .comparison,
  .info-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-grid .stat,
  .stats-row .stat,
  .service-card,
  .testimonial,
  .comparison-row,
  .info-box {
    flex: 1 1 240px;
  }

  .card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
