:root {
  color-scheme: light;
  --bg: #f7f9fb;
  --text: #1a2a33;
  --muted: #4d5b63;
  --primary: #0f2d3f;
  --accent: #35c1a6;
  --accent-dark: #24907c;
  --warm: #f4b63f;
  --border: #d7e1e8;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  position: absolute;
  top: 64px;
  right: 20px;
  min-width: 200px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 45, 63, 0.12);
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

body.nav-open .nav-links {
  display: flex;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.section {
  margin: 32px 0;
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.section-alt {
  background: #eef5f5;
}

.section-tight {
  padding: 24px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.hero {
  background: linear-gradient(135deg, rgba(53, 193, 166, 0.15), rgba(15, 45, 63, 0.08));
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-list,
.feature-list,
.stats,
.testimonial-list,
.faq-list,
.comparison,
.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card,
.feature,
.stat,
.testimonial,
.faq-item,
.comparison-item,
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.card h3,
.feature h3,
.comparison-item h3 {
  margin-top: 0;
}

.icon-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-block svg {
  width: 40px;
  height: 40px;
}

.stat {
  text-align: left;
}

.stat strong {
  font-size: 1.8rem;
  display: block;
}

.testimonial {
  font-style: italic;
}

.testimonial span {
  display: block;
  font-style: normal;
  margin-top: 8px;
  font-weight: 600;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.faq-content {
  margin-top: 10px;
  display: none;
}

.faq-item.is-open .faq-content {
  display: block;
}

.comparison-item {
  background: #fdf6e9;
}

.highlight-panel {
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
}

.highlight-panel .button.secondary {
  color: #fff;
  border-color: #fff;
}

.footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 20px 48px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(15, 45, 63, 0.2);
  display: none;
  z-index: 200;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 45, 63, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cookie-option button {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.cookie-option button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.section-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background: #fff3d9;
  color: #6b4a00;
  padding: 6px 10px;
  border-radius: 999px;
}

.service-price {
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 20px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-list,
  .feature-list,
  .stats,
  .testimonial-list,
  .faq-list,
  .comparison,
  .process-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature,
  .stat,
  .testimonial,
  .faq-item,
  .comparison-item,
  .process-step {
    flex: 1 1 260px;
  }

  .section-columns {
    flex-direction: row;
    align-items: flex-start;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
