* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #1f2a2e;
  --muted: #5b666b;
  --accent: #cf5c3a;
  --accent-dark: #a8442a;
  --soft: #efe7dd;
  --highlight: #1f4b4f;
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e6dfd5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  position: absolute;
  top: 100%;
  right: 4%;
  width: min(320px, 90%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(31, 42, 46, 0.15);
}

.nav-links.open {
  display: flex;
}

.menu-toggle {
  background: transparent;
  border: 1px solid #d6cfc4;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 25px rgba(31, 42, 46, 0.08);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--highlight);
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat span {
  font-size: 2rem;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: var(--soft);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid #e9e1d7;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 14px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid #e8dfd4;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #141a1c;
  color: #f1eee8;
  padding: 2.5rem 0;
}

.footer a {
  color: #f1eee8;
}

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer small {
  color: #c9c0b4;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: #101416;
  color: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 22, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-panel {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee5d9;
}

.toggle {
  border: 1px solid #cbbfb0;
  background: transparent;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  cursor: pointer;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.section-highlight {
  background: #1a2b2e;
  color: #fef7ef;
}

.section-highlight p {
  color: #f7e9dd;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e9e1d7;
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    width: auto;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards,
  .stats,
  .comparison,
  .footer-cols,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-row,
  .info-block {
    flex: 1 1 250px;
  }
}
