*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f2;
  --surface: #ffffff;
  --ink: #1d1a17;
  --muted: #5b5048;
  --accent: #e07a5f;
  --accent-2: #3d405b;
  --accent-3: #81b29a;
  --border: #e2d8cf;
  --shadow: 0 12px 32px rgba(29, 26, 23, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-2);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section.narrow {
  padding: 40px 0;
}

.section .section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.section .section-lead {
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 24px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid-3,
.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card.compact {
  padding: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(129, 178, 154, 0.18);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(224, 122, 95, 0.28);
}

.button.secondary {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--accent-2);
  border: 1px dashed var(--border);
  box-shadow: none;
}

.button:focus-visible,
.nav-toggle:focus-visible,
.faq-trigger:focus-visible,
.switch-btn:focus-visible,
.cookie-banner button:focus-visible,
.cookie-modal button:focus-visible {
  outline: 3px solid rgba(61, 64, 91, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 242, 0.96);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 4px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(224, 122, 95, 0.15);
}

body.nav-open .site-nav {
  display: flex;
}

.hero {
  padding: 64px 0 72px;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero .hero-card {
  background: linear-gradient(140deg, #fff, #fdf1ea);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 64, 91, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  background: var(--accent-2);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial .author {
  font-weight: 600;
  color: var(--accent-2);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-panel {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-panel {
  display: block;
}

.cta {
  background: linear-gradient(140deg, #fff, #f2f8f6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: #f1ece7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  width: min(920px, 92%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 300;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(29, 26, 23, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 400;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal .modal-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.switches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f9f6f3;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
}

.switch-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.switch-btn[aria-pressed="true"] {
  background: var(--accent-3);
  color: #fff;
  border-color: var(--accent-3);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight {
  background: #fdf1ea;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(224, 122, 95, 0.25);
}

@media (min-width: 720px) {
  .row {
    flex-direction: row;
  }

  .grid-2 {
    flex-direction: row;
  }

  .grid-2 > * {
    flex: 1;
  }

  .grid-3 {
    flex-direction: row;
  }

  .grid-3 > * {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .icon-row {
    flex-direction: row;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 6px;
    padding: 0;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
