/* FlashCar24 v72 - Popup Diventa Operatore */
.fc24-op-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 32, .58);
  backdrop-filter: blur(6px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.fc24-op-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.fc24-op-popup {
  width: min(720px, 100%);
  background: #ffffff;
  color: #0b2a4a;
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(6, 18, 32, .35);
  overflow: hidden;
  position: relative;
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
  border: 1px solid rgba(11,42,74,.08);
}
.fc24-op-overlay.is-visible .fc24-op-popup {
  transform: translateY(0) scale(1);
}
.fc24-op-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0b2a4a;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.15);
  z-index: 3;
}
.fc24-op-head {
  background: linear-gradient(135deg, #0b2a4a 0%, #0e6ea8 55%, #11a86b 100%);
  color: #ffffff;
  padding: 34px 34px 28px;
  position: relative;
  overflow: hidden;
}
.fc24-op-head::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  right: -75px;
  top: -80px;
}
.fc24-op-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 15px;
}
.fc24-op-head h2 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 12px;
  max-width: 560px;
}
.fc24-op-head p {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 590px;
}
.fc24-op-body {
  padding: 28px 34px 34px;
}
.fc24-op-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.fc24-op-point {
  background: #f4f8fb;
  border: 1px solid rgba(11,42,74,.08);
  border-radius: 18px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
  color: #153b5f;
}
.fc24-op-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.fc24-op-primary,
.fc24-op-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.fc24-op-primary {
  background: #11a86b;
  color: #ffffff !important;
  box-shadow: 0 12px 25px rgba(17,168,107,.28);
}
.fc24-op-secondary {
  background: #eef5fb;
  color: #0b2a4a !important;
}
.fc24-op-primary:hover,
.fc24-op-secondary:hover {
  transform: translateY(-2px);
}
.fc24-op-note {
  margin-top: 16px;
  color: #657487;
  font-size: 13px;
  line-height: 1.55;
}
.fc24-op-mini-banner {
  margin: 30px auto;
  max-width: 1160px;
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b2a4a, #0e6ea8);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 45px rgba(11,42,74,.20);
}
.fc24-op-mini-banner strong { font-size: 20px; display: block; margin-bottom: 4px; }
.fc24-op-mini-banner span { color: rgba(255,255,255,.9); }
.fc24-op-mini-banner a {
  white-space: nowrap;
  background: #11a86b;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}
@media (max-width: 680px) {
  .fc24-op-head { padding: 30px 24px 24px; }
  .fc24-op-body { padding: 24px; }
  .fc24-op-points { grid-template-columns: 1fr; }
  .fc24-op-actions a { width: 100%; }
  .fc24-op-mini-banner { flex-direction: column; align-items: flex-start; }
  .fc24-op-mini-banner a { width: 100%; text-align: center; }
}
