* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f24;
  --muted: #5a6372;
  --accent: #d97a3a;
  --accent-dark: #b25c27;
  --sand: #f5efe7;
  --sky: #e7f0f7;
  --leaf: #2e6f5c;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(29, 31, 36, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e2e6eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid #d2d7df;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e2e6eb;
  padding: 16px;
  gap: 12px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 0 80px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: var(--sky);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  gap: 20px;
}

.hero p {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(29, 31, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card p {
  color: var(--muted);
}

.icon-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-card img {
  width: 52px;
  height: 52px;
}

.highlight-panel {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(29, 31, 36, 0.06);
}

.stat-item span {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(29, 31, 36, 0.08);
}

.testimonial p {
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--sky);
}

.comparison-row strong {
  color: var(--leaf);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid #d7dde6;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  border: none;
  background: var(--white);
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-band {
  background: var(--leaf);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-band .btn {
  background: var(--white);
  color: var(--leaf);
  border-color: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.info-block {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer {
  background: #101418;
  color: #e6e8ec;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 16px;
  color: #b4bcc8;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 24, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--sand);
}

.cookie-option input {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .section-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section-grid .card,
  .section-grid .testimonial,
  .section-grid .icon-card {
    flex: 1 1 calc(50% - 20px);
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > div {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .section-grid .card,
  .section-grid .testimonial,
  .section-grid .icon-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}
