@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f6f1;
  --bg-alt: #eef5f3;
  --ink: #113134;
  --muted: #4c6467;
  --accent: #0f3d3e;
  --accent-soft: #7dcfb6;
  --highlight: #f2b880;
  --card: #ffffff;
  --border: #d7e1de;
  --shadow: 0 12px 30px rgba(15, 61, 62, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", 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;
}

.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: none;
  gap: 20px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 80%);
  height: 100%;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 18px;
  z-index: 20;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 600;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 61, 62, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.highlight {
  border-color: var(--accent-soft);
  background: #f4fbf9;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--card);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat span {
  font-weight: 600;
}

.pill {
  background: var(--highlight);
  color: #40210f;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial span {
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  color: inherit;
}

.faq-answer {
  display: none;
  padding-top: 12px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.badge {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  display: inline-flex;
  width: fit-content;
}

.contact-block {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block strong {
  color: var(--accent);
}

.footer {
  background: #0c2b2c;
  color: #e6f4f1;
  padding: 40px 0 24px;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: inherit;
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 43, 44, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  background: #f0f4f3;
  font-weight: 600;
  cursor: pointer;
}

.toggle.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item {
    flex: 1 1 240px;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 260px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.4rem;
  }
}
