:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --text: #1f2a24;
  --muted: #4a5a52;
  --brand: #1f6d5c;
  --brand-dark: #174e43;
  --accent: #f2b950;
  --accent-soft: #f8e5b4;
  --surface: #ffffff;
  --surface-alt: #eef2ef;
  --line: #d6ddd6;
  --shadow: 0 18px 40px rgba(17, 35, 28, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 200;
}

.skip-link:focus {
  left: 20px;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 12px 20px 20px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-weight: 500;
}

main {
  padding-bottom: 60px;
}

section {
  padding: 56px 0;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--brand);
  margin-bottom: 10px;
  font-weight: 600;
}

.hero {
  background: var(--surface);
  padding: 64px 0 48px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--brand-dark);
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-alt {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.card h3 {
  margin-top: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.quote-block {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
}

.quote-block p {
  font-size: 1.1rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-chip {
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
}

.footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 36px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 120;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 130;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 19, 0.55);
}

.cookie-modal__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  width: min(92vw, 520px);
  z-index: 1;
  box-shadow: var(--shadow);
}

.cookie-option {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin: 14px 0;
}

.cookie-toggle {
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

@media (min-width: 760px) {
  .hero-grid,
  .split,
  .card-list,
  .stats,
  .table-like {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .split > * {
    flex: 1;
  }

  .card,
  .stat,
  .table-row {
    flex: 1;
  }

  .card-list,
  .stats {
    flex-wrap: wrap;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
