* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d2433;
  --muted: #5a6577;
  --accent: #0b6b67;
  --accent-dark: #084c49;
  --soft: #f2f5f7;
  --card: #ffffff;
  --highlight: #e5f3f1;
  --border: #d8dee6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.section.soft {
  background: var(--soft);
}

.section.highlight {
  background: var(--highlight);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: #ffffff;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.brand svg {
  width: 34px;
  height: 34px;
}

nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  position: absolute;
  top: 68px;
  right: 20px;
  width: min(85vw, 280px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

nav a {
  font-weight: 600;
}

nav.open {
  display: flex;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--highlight);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card,
.testimonial,
.case-card,
.faq-item,
.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
}

.quote {
  font-size: 1.05rem;
  color: var(--ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  min-width: 36px;
  min-height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-item button {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item .answer {
  display: none;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.comparison-row strong {
  color: var(--accent);
}

.cta-panel {
  background: var(--accent);
  color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

footer {
  background: #111827;
  color: #ffffff;
  padding: 40px 0;
}

footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  width: min(92vw, 520px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header button {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preference {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.toggle input {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    width: auto;
    gap: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero > div {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
  }

  .feature {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid > * {
    flex: 1 1 calc(50% - 10px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
    flex-direction: column;
  }

  .cta-panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-panel .btn {
    align-self: flex-start;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
