/* Global footer conversion CTA */
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 54px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 70% 90% at 10% 0%, rgba(123, 107, 255, 0.18), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(174, 180, 224, 0.16);
  box-shadow: 0 24px 70px -44px rgba(91, 103, 255, 0.7);
}

.footer-cta__copy {
  max-width: 680px;
}

.footer-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.footer-cta__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-cta__text {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-cta__btn:hover {
  transform: translateY(-1px);
}

.footer-cta__btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.footer-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(174, 180, 224, 0.22);
  color: #dfe2ff;
}

.footer-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(174, 180, 224, 0.34);
}

@media (max-width: 780px) {
  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta__copy,
  .footer-cta__title {
    margin-inline: auto;
  }

  .footer-cta__actions {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .footer-cta__actions {
    flex-direction: column;
  }
}

/* Cookie bar visibility polish */
.cookie-bar {
  background:
    linear-gradient(180deg, rgba(13, 18, 52, 0.98), rgba(6, 9, 29, 0.98)) !important;
  border-top: 1px solid rgba(123, 107, 255, 0.55) !important;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.34) !important;
}

.cookie-bar__inner {
  max-width: 1180px !important;
  padding: 16px 24px !important;
}

.cookie-bar__simple {
  gap: 22px !important;
}

.cookie-bar__text .fi {
  color: #9fe8ff !important;
}

.cookie-bar__text p {
  color: #f7f8ff !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.cookie-bar__text a {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-decoration-color: rgba(159, 232, 255, 0.75) !important;
  text-decoration-thickness: 1.5px !important;
}

.cookie-bar__btn {
  min-height: 42px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
}

.cookie-bar__btn--accept,
.cookie-bar__btn--save {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #12182a !important;
  box-shadow: 0 12px 28px -18px rgba(255, 255, 255, 0.75) !important;
}

.cookie-bar__btn--accept:hover,
.cookie-bar__btn--save:hover {
  background: #dff7ff !important;
  border-color: #dff7ff !important;
  color: #12182a !important;
}

.cookie-bar__btn--reject,
.cookie-bar__btn--settings {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #f7f8ff !important;
}

.cookie-bar__btn--reject:hover,
.cookie-bar__btn--settings:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.44) !important;
}

.cookie-bar__detailed-header h2,
.cookie-category__title strong {
  color: #ffffff !important;
}

.cookie-bar__detailed-header p,
.cookie-category__info p {
  color: #dfe2ff !important;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.065) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

@media (max-width: 768px) {
  .cookie-bar__actions {
    width: 100% !important;
  }
}
