html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.card {
  border: none;
}

/* Honeypot field - hide from humans but not from bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Pricing page */
.pricing-card {
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #0d6efd;
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #0d6efd;
  color: #fff;
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.pricing-card .display-3 {
  font-size: 3.5rem;
  line-height: 1;
}

/* Plan selection on register page */
.plan-option {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-bottom: 8px;
}

.plan-option:hover {
  border-color: #0d6efd;
  background: #f8f9ff;
}

.plan-option.selected {
  border-color: #0d6efd;
  background: #f0f7ff;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.plan-option input[type="radio"] {
  flex-shrink: 0;
}

/* ================= Footer ================= */

.site-footer {
  background: #1a1e29;
  color: #adb5bd;
}

.site-footer h5,
.site-footer h6 {
  color: #fff;
}

.footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-block;
  padding: 3px 0;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #adb5bd;
  transition: all 0.15s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-2px);
}

.site-footer .text-muted {
  color: #6c757d !important;
}

/* Help center cards */
.help-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.hp-field { position: absolute; left: -9999px; top: -9999px;
  height: 0; width: 0; opacity: 0; overflow: hidden; pointer-events: none; }

  /* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1d21;         /* matches your dark footer */
  border-top: 2px solid #0d6efd;
  z-index: 1050;               /* above most content, below modals */
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner a {
  text-decoration: underline;
}