:root {
  --color-ink: #1f2326;
  --color-muted: #5a646b;
  --color-accent: #b56a4a;
  --color-accent-dark: #8f4f35;
  --color-surface: #f5f1ee;
  --color-white: #ffffff;
  --color-border: #e2d9d3;
  --shadow-soft: 0 14px 30px rgba(31, 35, 38, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 600;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--color-surface);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.9rem;
}

.nav-toggle-bars {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: none;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.site-nav a {
  font-weight: 500;
}

body.nav-open .site-nav {
  display: flex;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius);
  width: 100%;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.7rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-panel {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--color-border);
}

.feature-cards,
.card-grid,
.values-list,
.insight-list,
.trust-badges,
.process-steps,
.stats-grid,
.comparison,
.directions-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card,
.feature-card,
.value-item,
.insight,
.badge,
.process-step,
.stat,
.comparison-column,
.direction-step {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--color-border);
}

.feature-card h3,
.card h3,
.value-item h3 {
  margin-top: 0;
}

.checklist,
.info-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li,
.info-list li {
  position: relative;
  padding-left: 22px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.trust-section .trust-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-badges .badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.badge img {
  width: 36px;
  height: 36px;
}

.process-step {
  position: relative;
}

.step-number {
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: inline-block;
}

.stats-section {
  background: var(--color-ink);
  color: var(--color-white);
}

.stats-section .stat {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.stats-section h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.quote-section {
  background: var(--color-accent);
  color: var(--color-white);
}

.quote-section blockquote {
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.quote-name {
  font-weight: 500;
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--color-accent-dark);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid var(--color-border);
}

.btn-tertiary {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-border);
}

.service-card .price {
  font-weight: 600;
  margin-top: 16px;
}

.comparison .comparison-column.highlighted {
  border: 1px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.cta-section .cta-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-white);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.accordion-panel {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-panel {
  padding-bottom: 16px;
  max-height: 240px;
}

.legal-content h2 {
  margin-top: 28px;
}

.muted {
  color: var(--color-muted);
}

.site-footer {
  background: var(--color-ink);
  color: var(--color-white);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-meta .btn-tertiary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: none;
  gap: 16px;
  z-index: 100;
  flex-direction: column;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 35, 38, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 110;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 20px;
  width: min(520px, 100%);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.icon-button {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .site-nav ul {
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-cards,
  .card-grid,
  .values-list,
  .insight-list,
  .trust-badges,
  .process-steps,
  .stats-grid,
  .comparison,
  .directions-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card,
  .card,
  .value-item,
  .insight,
  .badge,
  .process-step,
  .stat,
  .comparison-column,
  .direction-step {
    flex: 1 1 240px;
  }

  .cta-section .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-modal-footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}
