:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --muted: #4a4a4a;
  --brand: #0f5b65;
  --brand-dark: #0a3f45;
  --accent: #f2b24c;
  --line: #e5e0d6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 20, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.no-scroll {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px;
}

section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-muted {
  background: #f1ebe1;
}

.section-accent {
  background: var(--brand);
  color: #fef9f2;
}

.section-accent a {
  color: #fef9f2;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-color: var(--brand);
  box-shadow: 0 8px 18px rgba(15, 91, 101, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 91, 101, 0.1);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  padding: 16px;
  background: #f7f9f7;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand);
}

.quote {
  font-size: 1.1rem;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 10px;
  border-radius: 10px;
  background: #ece5db;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(15, 91, 101, 0.08);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.3px;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--brand);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu.active {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fef9f2, #eaf3f4);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 2rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.icon-card {
  flex: 1 1 200px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  background: #f9f7f1;
  border: 1px solid var(--line);
}

.icon-card svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.timeline-step span {
  background: var(--brand);
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 auto;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  background: #f7f7f7;
  border-radius: 12px;
}

.comparison-row strong {
  color: var(--brand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  padding: 14px 16px;
  width: 100%;
  border: 0;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--line);
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.footer {
  background: #0b2b2f;
  color: #f7f4ef;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-content h3 {
  margin: 0;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cookie-option input {
  margin-top: 4px;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.address {
  font-style: normal;
  color: var(--muted);
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  main {
    padding: 32px 60px 60px;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .two-col > * {
    flex: 1 1 0;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .section-split {
    flex-direction: row;
  }

  .section-split > * {
    flex: 1 1 0;
  }
}
