:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #0c1b33;
  --muted: #4a5568;
  --accent: #2bb3b1;
  --accent-strong: #1f8c8a;
  --outline: #d6deea;
  --radius: 12px;
  --shadow: 0 10px 50px rgba(12, 27, 51, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 0.6rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

main {
  padding-top: 0;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 247, 251, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--outline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.nav a {
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
}

.nav a:hover {
  background: #e6f5f5;
  color: var(--accent-strong);
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 0.45rem 0.9rem;
}

.hero {
  padding: 3rem 0 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #e6f5f5;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.95rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 0.78rem;
  margin: 0 0 0.35rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.4rem;
}

.hero-lede {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 10px 30px rgba(43, 179, 177, 0.35);
}

.button.ghost {
  background: transparent;
  border-color: var(--outline);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f1f4fa;
  font-weight: 600;
  color: var(--muted);
}

section {
  padding: 2.5rem 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 8px 30px rgba(12, 27, 51, 0.06);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.card-title h3 {
  margin: 0;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(43, 179, 177, 0.12);
  color: var(--accent-strong);
  flex: 0 0 auto;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 0.35rem;
}

.list {
  padding-left: 1rem;
  margin: 0.4rem 0;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.3rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 1rem;
}

.highlight {
  background: linear-gradient(135deg, rgba(43, 179, 177, 0.08), rgba(12, 27, 51, 0.08));
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--outline);
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.client-pill {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px dashed var(--outline);
  background: white;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.2rem 0 2rem;
  background: #0c1b33;
  color: white;
}

.site-footer .button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer .button.primary {
  box-shadow: 0 10px 30px rgba(43, 179, 177, 0.2);
}

.footer-muted {
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  align-items: center;
}

.footer-title {
  margin: 0 0 0.4rem;
}

.footer-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-meta {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-weight: 600;
}

.footer-legal {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 360px;
  background: #0c1b33;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 18px 60px rgba(12, 27, 51, 0.4);
  z-index: 50;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-title {
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.cookie-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.cookie-actions .button {
  padding: 0.6rem 1rem;
}

.cookie-banner .button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  main {
    padding-top: 0;
  }

  .header-inner {
    padding: 0.75rem 0;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
