* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --ink: #1c1b17;
  --muted: #5b5a54;
  --brand: #1b6b6b;
  --brand-dark: #0f4a4a;
  --accent: #e3b23c;
  --panel: #ffffff;
  --panel-alt: #f0f2ef;
  --border: #d9d7cf;
  --shadow: 0 12px 32px rgba(16, 20, 20, 0.08);
}

html {
  scroll-behavior: smooth;
}

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%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--panel);
}

.section.soft {
  background: var(--panel-alt);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header p {
  color: var(--muted);
  max-width: 720px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  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;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  display: none;
}

.mobile-toggle {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 10px;
  padding: 10px 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 24px;
}

.mobile-panel a {
  padding: 8px 0;
  font-weight: 600;
}

body.nav-open .mobile-panel {
  display: flex;
}

.hero {
  padding: 80px 0 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--panel);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
}

.stat-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.feature-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .meta {
  color: var(--muted);
  font-size: 14px;
}

.highlight {
  background: var(--brand);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight .btn {
  background: #fff;
  color: var(--brand-dark);
}

.quote {
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 12px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.comparison-row span {
  color: var(--muted);
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  color: var(--brand-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item button span {
  color: var(--muted);
}

.faq-panel {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-panel {
  display: block;
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: min(960px, 92%);
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 18, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
  width: min(640px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-btn {
  border: 1px solid var(--border);
  background: var(--panel-alt);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.notice {
  background: var(--panel-alt);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-panel {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-content > div {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stat-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison-row {
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }

  .contact-grid {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
