* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f1;
  --ink: #1f2a2e;
  --muted: #5b6b73;
  --brand: #0f6b7a;
  --brand-dark: #0b4b55;
  --accent: #c97a2b;
  --card: #ffffff;
  --line: #d9d4cb;
  --success: #2f7a4f;
}

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,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand-dark);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, border 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 20px;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.menu-open .nav-links {
  display: flex;
}

main {
  padding-bottom: 40px;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;
}

.section p {
  color: var(--muted);
}

.hero {
  padding: 70px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(201, 122, 43, 0.08);
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 122, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-panel {
  padding: 24px;
  border-radius: 22px;
  background: var(--brand-dark);
  color: #fff;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  padding: 24px;
  border-radius: 20px;
  background: rgba(15, 107, 122, 0.1);
  font-style: italic;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial .author {
  font-weight: 600;
}

.industry-list,
.values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.85rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.faq-item.is-open .faq-panel {
  padding: 0 16px 14px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 70;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cookie-toggle button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 2;
  }

  .trust-strip {
    flex: 1;
  }

  .card-grid,
  .process-steps,
  .stats,
  .testimonial-grid,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .step,
  .stat,
  .testimonial,
  .comparison-row {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .highlight-panel {
    flex: 1;
  }

  .contact-grid {
    display: flex;
    gap: 18px;
  }

  .contact-card {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
