/* Base */
* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --text: #1d1b1a;
  --muted: #5d5853;
  --primary: #2f5d62;
  --accent: #b36b4d;
  --light: #ffffff;
  --panel: #efe8df;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel);
}

.section.light {
  background: var(--light);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

/* Header */
header {
  background: var(--light);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.menu-toggle {
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--light);
  border-top: 1px solid #e6e0d8;
}

.mobile-menu.active {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.hero-card {
  background: var(--light);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Feature blocks */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Services */
.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 20px;
  background: var(--light);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--light);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: var(--light);
  padding: 22px;
  border-radius: 18px;
  font-style: italic;
  box-shadow: var(--shadow);
}

/* Process */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.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;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: #161514;
  color: #e9e4dc;
  padding: 36px 0;
}

footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b1a19;
  color: #f7f2ea;
  padding: 18px;
  display: none;
  z-index: 50;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: var(--light);
  padding: 24px;
  border-radius: 20px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Comparison table */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--light);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Utilities */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--light);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary);
}

/* Media queries */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-grid {
    flex: 1;
  }

  .feature-list,
  .cards,
  .stats,
  .testimonials {
    flex-direction: row;
  }

  .feature-item,
  .card,
  .stat,
  .quote {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner .actions {
    flex-direction: row;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
