*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e1f1c;
  background: #f8f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

ul,
ol {
  padding-left: 1.2rem;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: #1e1f1c;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e6e1d7;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: #1e1f1c;
}

.nav-toggle {
  background: transparent;
  border: 1px solid #1e1f1c;
  border-radius: 999px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: #1e1f1c;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e6e1d7;
  padding: 1rem;
  border-radius: 1rem;
  position: absolute;
  right: 5%;
  top: 70px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  background: #f1ede5;
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e6e1d7;
}

.hero-list {
  margin: 1rem 0 0;
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2rem;
}

.neutral {
  background: #fff;
}

.muted {
  background: #f5f1ea;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-panel {
  background: #1e1f1c;
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list,
.benefits,
.case-grid,
.services-grid,
.values,
.team-list,
.insights,
.stats,
.comparison,
.company-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card,
.benefit,
.case-card,
.service-card,
.value-card,
.team-card,
.comparison-column {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid #e6e1d7;
}

.price {
  font-weight: 700;
  margin-top: 0.75rem;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-steps li {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid #e6e1d7;
}

.stats {
  text-align: center;
}

.stat {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid #e6e1d7;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.quote {
  background: #1e1f1c;
  color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  margin: 0;
}

.quote-author {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.8;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e6e1d7;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  padding: 0 1.25rem 1rem;
}

.callout {
  background: #1e1f1c;
  color: #fff;
}

.callout-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.page-hero {
  padding: 3rem 0 2rem;
  background: #f1ede5;
}

.milestones ul,
.company-info ul {
  margin: 0.75rem 0 0;
}

.company-info ul {
  list-style: disc;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #1e1f1c;
  color: #fff;
  font-weight: 600;
  border: 1px solid #1e1f1c;
  cursor: pointer;
}

.button-ghost {
  background: #fff;
  color: #1e1f1c;
}

.button-light {
  background: #fff;
  color: #1e1f1c;
  border-color: #fff;
}

.button-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.info-block {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e6e1d7;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: #1e1f1c;
  color: #fff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal-content {
  background: #fff;
  color: #1e1f1c;
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e6e1d7;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-meta {
  font-size: 0.95rem;
  color: #55534f;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 1.5rem;
  }

  .hero-inner,
  .split,
  .callout-inner,
  .company-info {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-card,
  .split > div,
  .company-info > div {
    flex: 1;
  }

  .feature-list,
  .benefits,
  .case-grid,
  .services-grid,
  .values,
  .team-list,
  .insights,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card,
  .benefit,
  .case-card,
  .service-card,
  .value-card,
  .team-card,
  .stat,
  .comparison-column {
    flex: 1 1 250px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
