*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1f2428;
  --muted: #5b636a;
  --accent: #346f6b;
  --accent-dark: #254b48;
  --warm: #d6b07c;
  --highlight: #eef3f2;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(31, 36, 40, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--surface);
}

.section-contrast {
  background: var(--highlight);
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(31, 36, 40, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  position: absolute;
  right: 4vw;
  top: 72px;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
}

.nav-open .nav-menu {
  display: flex;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 36, 40, 0.35);
  z-index: 10;
}

.nav-open + .nav-backdrop {
  display: block;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(31, 36, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .icon {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--warm);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  font-size: 1.1rem;
  color: var(--ink);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-question {
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.faq-answer {
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(31, 36, 40, 0.1);
}

.price {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--highlight);
  padding: 18px;
  border-radius: 14px;
}

.site-footer {
  background: var(--surface);
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(31, 36, 40, 0.45);
  z-index: 45;
  padding: 16px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--highlight);
  border-radius: 12px;
}

.toggle-button {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.toggle-button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.highlight-panel {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-panel p {
  color: #f4f4f4;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  padding-left: 20px;
}

.contact-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .nav-menu a {
    color: var(--muted);
  }

  .nav-backdrop {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .card,
  .service-card {
    flex: 1 1 calc(33.333% - 18px);
  }
}
