*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --bg-alt: #ffffff;
  --text: #1d1d1f;
  --muted: #5b5f66;
  --brand: #1e6b5a;
  --brand-dark: #15463b;
  --accent: #c8963b;
  --border: #e2ddd6;
  --shadow: 0 16px 30px rgba(20, 30, 35, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-alt);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
}

.nav-links.active {
  display: flex;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
}

.hero {
  padding: 64px 0 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.2;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid-3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 860px) {
  .grid-2 {
    flex-direction: row;
  }

  .grid-2 > * {
    flex: 1;
  }

  .grid-3 {
    flex-direction: row;
  }

  .grid-3 > * {
    flex: 1;
  }
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.highlight {
  background: linear-gradient(135deg, rgba(30, 107, 90, 0.1), rgba(200, 150, 59, 0.12));
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.stat span {
  font-weight: 700;
  font-size: 1.4rem;
}

.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial strong {
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 107, 90, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.service-card .price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.comparison-row span {
  font-weight: 600;
  color: var(--brand-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 20px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  margin-top: auto;
  background: #0f1f1b;
  color: #f4f4f4;
  padding: 32px 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 860px) {
  .footer-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 27, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 18px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(30, 107, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 150, 59, 0.18);
  font-weight: 600;
  font-size: 0.85rem;
  color: #5c4210;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.contact-block {
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-list strong {
  font-weight: 600;
}
