* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --ink: #1d1c1a;
  --muted: #5c5a55;
  --brand: #d78b32;
  --brand-dark: #b66d1e;
  --accent: #2f6b5d;
  --line: #e6e1d8;
  --shadow: 0 10px 30px rgba(25, 18, 5, 0.08);
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: #f0ede7;
}

.section-contrast {
  background: #1f2a26;
  color: #f7f5f2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: var(--line);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: right 0.2s ease;
  z-index: 80;
}

.menu-panel.open {
  right: 0;
}

.menu-panel a {
  font-weight: 600;
  color: var(--ink);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 70;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.highlight-row svg {
  flex: 0 0 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-muted {
  background: #f7f2ea;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.4rem;
  color: var(--accent);
}

.quote {
  background: #fdf8f1;
  border-left: 4px solid var(--brand);
  padding: 20px;
  border-radius: 10px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.process-step span {
  font-weight: 700;
  color: var(--brand-dark);
}

.testimonial {
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.testimonial p {
  color: var(--ink);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.comparison-row strong {
  color: var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--brand);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel p {
  color: #fff;
}

footer {
  background: #141311;
  color: #f7f5f2;
  padding: 32px 0;
}

footer a {
  color: #f7f5f2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96%, 960px);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 12, 8, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.cookie-modal.show {
  display: flex;
}

.cookie-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(96%, 640px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.toggle-btn {
  border: 1px solid var(--line);
  background: #f4efe6;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.icon-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-row svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

@media (min-width: 820px) {
  h1 {
    font-size: 2.8rem;
  }

  .nav-links,
  .nav-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-highlights {
    flex: 0.9;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }

  .stat-bar {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonial-list {
    display: flex;
    gap: 16px;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
