*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f3;
  --bg-alt: #ffffff;
  --ink: #1b1a17;
  --muted: #5b5b57;
  --brand: #f2b01e;
  --brand-dark: #c18500;
  --accent: #2d6a4f;
  --line: #e5e1d8;
  --shadow: 0 12px 30px rgba(27, 26, 23, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.highlight {
  background: #fff7e6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px 0;
}

h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px 0;
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 243, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  text-transform: lowercase;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  padding: 8px 4px;
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: var(--ink);
}

.button.secondary {
  background: transparent;
  border-color: var(--ink);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff1cc;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-grid,
.card-grid,
.stat-grid,
.testimonials,
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card,
.feature,
.stat,
.testimonial,
.service-card,
.panel {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--line);
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature img {
  width: 42px;
  height: 42px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  background: #f4faf7;
}

.stat strong {
  font-size: 1.8rem;
}

.quote {
  font-size: 1.1rem;
  color: var(--ink);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison .card {
  border-left: 4px solid var(--brand);
}

.highlight-bar {
  background: #1b1a17;
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-bar p {
  color: #f1f1ef;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-tags span {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item .answer {
  display: none;
  padding: 0 18px 16px 18px;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 26, 23, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.switch-row button {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

.badge {
  background: #f4faf7;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: #fff7e6;
  border-radius: var(--radius-sm);
  padding: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.section-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .feature-grid,
  .card-grid,
  .stat-grid,
  .testimonials,
  .service-grid,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .card,
  .stat,
  .testimonial,
  .service-card,
  .comparison .card {
    flex: 1 1 calc(50% - 18px);
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 14px);
  }

  .footer-grid,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-grid > div,
  .contact-grid > div {
    flex: 1 1 calc(50% - 20px);
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .feature,
  .card,
  .stat,
  .testimonial,
  .service-card,
  .comparison .card {
    flex: 1 1 calc(33% - 18px);
  }

  .step {
    flex: 1 1 calc(33% - 14px);
  }

  .footer-grid > div,
  .contact-grid > div {
    flex: 1 1 calc(33% - 20px);
  }
}
