/* Site shell: layout, typography base, card container, brand, header */
body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  /* background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); */
  display: flex;
  flex-direction: column;
  background: #f6f8fb;
  color: #212529;
}

/* Site header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.site-brand-icon {
  font-size: 1.5rem;
  color: #0d6efd;
}

.site-brand-name {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1a1a2e;
}

.site-brand-name strong {
  font-weight: 800;
  color: #0d6efd;
}

.site-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #133d15;
  font-size: 1rem;
  font-weight: 500;
}

.site-secure i {
  font-size: 1.7rem;
  color: #46bc85;
}

/* Main stage */
.site-main {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem 3rem;
  width: 100%;
}

.funnel-card {
  max-width: 800px;
  width: 100%;
  /* background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 52, 96, 0.08); */
  padding: 2.5rem;
}

/* Site footer — modern, sharp, authority look */
.site-footer {
  background: #0b1b3b;
  color: #c7cfdd;
  border-top: 3px solid #0d6efd;
  padding: 3rem 1.25rem 2rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: opacity 0.15s ease;
}

.site-footer-brand:hover {
  color: #fff;
  opacity: 0.85;
}

.site-footer-brand i {
  color: #46bc85;
  font-size: 1.25rem;
}

.site-footer-brand strong {
  font-weight: 800;
  color: #ffffff;
}

.site-footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9fb0cf;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.site-footer-trust i {
  color: #46bc85;
  font-size: 0.9rem;
}

.footer-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a97b3;
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.65;
  color: #98a3bf;
  margin: 0 0 1.5rem;
  max-width: 1100px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1rem 0 1.25rem;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  color: #8a97b3;
  font-size: 0.8125rem;
}

.footer-copy {
  letter-spacing: 0.01em;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.footer-links a {
  color: #dfe6f3;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  outline: none;
}

.footer-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: inline-block;
}

@media (max-width: 575.98px) {
  h1.funnel-headline {
    font-size: 2.5rem !important;
  }
  .site-header-inner {
    padding: 10px 14px;
  }

  .site-brand-name {
    font-size: 1rem;
  }

  .site-secure span {
    font-size: 1.0rem !important;
  }

  .site-secure i {
    font-size: 1.3rem;
  }

  .site-main {
    padding: 0;
    align-items: stretch;
  }

  .funnel-card {
    max-width: none;
    min-height: calc(100vh - 56px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1.25rem 1rem 2rem;
  }

  .site-footer {
    padding: 2rem 1rem 1.5rem;
  }

  .site-footer-top {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

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