* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1f2a2e;
  --muted: #5f6b70;
  --brand: #2a6f77;
  --brand-dark: #1b4f55;
  --accent: #c08d3b;
  --border: #e2e1dd;
  --shadow: 0 18px 40px rgba(31, 42, 46, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

[hidden] {
    display: none !important;
}


.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.highlight {
  color: var(--brand);
  font-weight: 600;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.primary-nav {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
}

.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--brand);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-dark);
}

.mobile-nav {
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-nav .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  font-weight: 600;
}

.hero {
  background: linear-gradient(135deg, rgba(42, 111, 119, 0.08), rgba(192, 141, 59, 0.08));
  padding: 4rem 0 4.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(42, 111, 119, 0.28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--brand-dark);
  border: 1px solid var(--border);
}

.btn:hover {
  transform: translateY(-1px);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card .icon {
  width: 48px;
  height: 48px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid var(--brand);
}

.stat strong {
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.surface {
  background: var(--surface);
}

.accent-panel {
  background: var(--brand);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
}

.accent-panel p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.badge {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(42, 111, 119, 0.1);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1.1rem;
  margin: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  background: var(--surface);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 500;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal-card {
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .primary-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .card-grid,
  .stats,
  .process-steps,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .step,
  .comparison-item,
  .testimonial {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .button-row,
  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
