* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1a;
  --muted: #5f5a55;
  --accent: #d38b00;
  --accent-dark: #a86f00;
  --surface: #fff8ef;
  --surface-strong: #f5efe6;
  --border: #e3d8c8;
  --white: #ffffff;
  --shadow: 0 14px 30px rgba(31, 29, 26, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 64px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--surface);
}

.section.soft {
  background: var(--surface-strong);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
}

.brand svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 72px;
  right: 4%;
  width: min(260px, 92%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: 0.2s ease;
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.menu-toggle .bar + .bar {
  margin-top: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--surface);
  border: none;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  padding: 28px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
}

.quote p {
  color: rgba(255, 255, 255, 0.8);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  background: var(--white);
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question {
  color: var(--accent-dark);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  background: var(--white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 29, 26, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 24px;
}

.modal.visible {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
}

.banner {
  padding: 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 760px) {
  .nav-links {
    position: static;
    flex-direction: row;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    width: auto;
    gap: 24px;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > * {
    flex: 1;
  }

  .card-grid,
  .service-grid,
  .info-grid,
  .footer-grid,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-grid .card,
  .info-grid .card,
  .testimonial,
  .stat,
  .comparison-row {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 16px);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
