*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d2b2a;
  background-color: #f7f8f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e7e6;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  color: #1f3c3a;
}

.menu-toggle {
  background: none;
  border: 1px solid #d4dddb;
  border-radius: 999px;
  padding: 0.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  background: #1f3c3a;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e2e7e6;
  padding: 1rem 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

main section {
  padding: 3.5rem 0;
}

.hero {
  background: #eef6f3;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-graphic {
  align-self: center;
  width: min(260px, 70%);
}

.page-hero {
  background: #f0f5f4;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(14, 46, 45, 0.06);
}

.feature-item h3 {
  margin: 0 0 0.4rem;
}

.stats {
  background: #ffffff;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: #f2f7f6;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-card span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f7a75;
}

.highlight-panel {
  background: #1f3c3a;
  color: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.panel-details {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e3e8e7;
}

.step span {
  font-weight: 700;
  color: #1f7a75;
}

.insight-cards,
.value-cards,
.team-grid,
.testimonial-grid,
.service-cards,
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.card,
.service-card,
.comparison-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(30, 63, 61, 0.08);
}

.service-card .price {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: #1f7a75;
}

.featured-card {
  border: 2px solid #1f7a75;
}

.testimonial {
  background: #f3f6f5;
  border-radius: 18px;
  padding: 1.5rem;
  margin: 0;
}

.testimonial blockquote {
  margin: 0 0 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e7e6;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: #f2f7f6;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta.slim {
  background: #e9f2f1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: #1f7a75;
  color: #ffffff;
}

.button.ghost {
  background: transparent;
  border-color: #1f7a75;
  color: #1f7a75;
}

.site-footer {
  background: #112221;
  color: #e8efee;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 40px rgba(16, 35, 34, 0.2);
  max-width: 520px;
  width: calc(100% - 2rem);
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 34, 33, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: #f2f7f6;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.preference-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.preference-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f8f6;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.toggle {
  border: 1px solid #1f7a75;
  background: transparent;
  color: #1f7a75;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.toggle[aria-pressed="true"] {
  background: #1f7a75;
  color: #ffffff;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-grid,
.milestones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.milestone {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #e2e7e6;
}

.info-block {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: #f2f7f6;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner,
  .split,
  .cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-graphic,
  .split > div,
  .cta-inner > div {
    flex: 1;
  }

  .stats-grid,
  .process-steps,
  .insight-cards,
  .value-cards,
  .team-grid,
  .testimonial-grid,
  .service-cards,
  .comparison-grid,
  .legal-grid,
  .milestones,
  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card,
  .step,
  .card,
  .service-card,
  .comparison-card,
  .feature-item,
  .milestone,
  .testimonial {
    flex: 1 1 calc(50% - 1rem);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .stat-card,
  .step,
  .card,
  .service-card,
  .comparison-card,
  .feature-item,
  .milestone,
  .testimonial {
    flex: 1 1 calc(33.333% - 1rem);
  }
}
