/* Base */
:root {
  --bg: #f7f5f2;
  --text: #1e1f23;
  --muted: #5a5f6a;
  --brand: #1f6f6d;
  --brand-dark: #165150;
  --accent: #d8b07e;
  --panel: #ffffff;
  --line: #e2e1dd;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel);
}

.section.soft {
  background: #f0ede7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 600;
}

.title {
  font-size: 2rem;
  margin: 8px 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--brand);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.btn.secondary:hover {
  background: rgba(31, 111, 109, 0.08);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 64px;
  right: 20px;
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 200px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.nav-open .nav-links {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Layout utilities */
.flex {
  display: flex;
  gap: 24px;
}

.wrap {
  flex-wrap: wrap;
}

.col {
  flex: 1 1 260px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-top: 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  background: rgba(31, 111, 109, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Hero */
.hero {
  padding: 72px 0 40px;
}

.hero .flex {
  align-items: center;
}

.hero-art {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Feature blocks */
.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Stats */
.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand);
}

/* Testimonials */
.quote {
  font-style: italic;
  color: var(--muted);
}

/* Services */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: #fff;
}

.comparison-row span {
  font-weight: 600;
  color: var(--brand);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Cookie banner + modal */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 40;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 18, 20, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: var(--panel);
  padding: 22px;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--line);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.toggle-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.cookie-panel .btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Footer */
footer {
  background: #1c1c20;
  color: #f6f6f6;
  padding: 40px 0;
}

footer a {
  color: #f6f6f6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Responsive */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    gap: 20px;
  }

  .nav-open .nav-links {
    opacity: 1;
  }

  .hero .flex {
    align-items: stretch;
  }

  .hero-art {
    min-width: 320px;
  }
}
