*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --brand: #1f5a4a;
  --brand-dark: #153c32;
  --accent: #b07a2a;
  --border: #e2ddd2;
  --shadow: 0 12px 30px rgba(27, 27, 27, 0.08);
}

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;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 0 1.25rem 3rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--brand);
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.nav-toggle {
  border: none;
  background: none;
  padding: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--ink);
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-links.is-open {
  display: flex;
}

.nav-cta {
  margin-top: 0.5rem;
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-panel p {
  color: var(--muted);
}

.hero-highlight {
  background: linear-gradient(135deg, #f1e8d7, #ffffff);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: var(--surface);
  border-radius: 32px;
  padding: 2.5rem 1.75rem;
  margin: 0 auto 2.5rem;
  max-width: 1100px;
  box-shadow: var(--shadow);
}

.section h2 {
  margin-top: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(27, 27, 27, 0.04);
}

.card h3 {
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 90, 74, 0.12);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(176, 122, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.5rem;
  color: var(--brand);
}

.testimonial {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.75rem;
  border-left: 5px solid var(--accent);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.logo-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(31, 90, 74, 0.08);
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-item {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
}

.service-card .price {
  font-weight: 700;
  color: var(--brand);
  margin-top: 0.75rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.highlight-panel {
  background: linear-gradient(120deg, #1f5a4a, #2f7a63);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 2.5rem 1.25rem 3rem;
  background: #151515;
  color: #f7f4ef;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer a {
  color: #f7f4ef;
}

.footer small {
  color: rgba(247, 244, 239, 0.7);
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 200;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 21, 21, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 220;
  padding: 1.5rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 540px;
  width: 100%;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-option input {
  margin-top: 0.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.info-block {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.map-hint {
  background: rgba(176, 122, 42, 0.12);
  border-radius: 18px;
  padding: 1rem 1.25rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-divider svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    width: auto;
    padding: 0;
    border: none;
    background: transparent;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-cta {
    margin: 0;
  }

  main {
    padding: 0 2.5rem 4rem;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel,
  .hero-highlight {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .comparison-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonial-grid {
    display: flex;
    gap: 1.5rem;
  }

  .testimonial {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
