* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #58595b;
  --brand: #2f5d62;
  --brand-2: #3a7c86;
  --accent: #d4a373;
  --line: #e5e1da;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: absolute;
  right: 4%;
  top: 64px;
  box-shadow: var(--shadow);
}

.nav__links a {
  padding: 8px 10px;
  border-radius: 10px;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  background: var(--bg);
}

.nav__links.is-open {
  display: flex;
}

.hero {
  padding: 56px 0 40px;
}

.hero__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.2;
  margin: 0;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
}

.section {
  padding: 48px 0;
}

.section--alt {
  background: var(--surface);
}

.section--tight {
  padding: 32px 0;
}

.section__title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  margin-bottom: 12px;
}

.section__lead {
  color: var(--muted);
  margin-bottom: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card--accent {
  background: #f0f5f4;
  border-color: #d9e6e4;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #edf3f2;
  border: 1px solid #dae5e3;
  font-size: 0.9rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat__bar {
  height: 8px;
  border-radius: 999px;
  background: #e9e5df;
  overflow: hidden;
}

.stat__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.stat__fill--71 {
  width: 71%;
}

.stat__fill--65 {
  width: 65%;
}

.stat__fill--90 {
  width: 90%;
}

.quote {
  background: #f3ede4;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 260px;
  border-radius: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-item .faq-panel {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 30;
}

.cookie-backdrop.is-visible {
  display: block;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  width: min(520px, 90%);
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: block;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.cookie-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf8f4;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2f1;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav__links {
    display: flex;
    position: static;
    flex-direction: row;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero__wrap {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-grid {
    flex-direction: row;
  }

  .footer__wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .stats {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison__row {
    flex: 1;
  }
}
