:root {
  --icro-night: #071626;
  --icro-ink: #122033;
  --icro-muted: #64748b;
  --icro-mist: #f3f7fb;
  --icro-accent: #1f6feb;
  --icro-accent-dark: #174ea6;
  --icro-gold: #d8b76a;
  --icro-white: #ffffff;
  --icro-risk: #f59e0b;
  --icro-shadow: 0 22px 55px rgba(7, 22, 38, 0.18);
}

.icro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.08rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.icro-btn:hover { transform: translateY(-1px); }
.icro-btn--primary { background: var(--icro-accent); color: var(--icro-white); box-shadow: 0 10px 28px rgba(31, 111, 235, .24); }
.icro-btn--primary:hover { background: var(--icro-accent-dark); color: var(--icro-white); }
.icro-btn--ghost { background: transparent; color: var(--icro-white); border-color: rgba(255,255,255,.42); }
.icro-link { color: var(--icro-accent-dark); font-weight: 800; text-decoration: none; }
.icro-link:hover { text-decoration: underline; }
.icro-close { border: 0; background: rgba(255,255,255,.12); color: inherit; border-radius: 999px; width: 32px; height: 32px; cursor: pointer; font-size: 18px; line-height: 1; }
.icro-eyebrow { margin: 0 0 .35rem; color: var(--icro-gold); font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; }
.icro-risk-note { color: var(--icro-muted); font-size: .9rem; margin: .65rem 0 0; }

.icro-sticky-cta {
  position: fixed;
  z-index: 9998;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .9rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--icro-night);
  color: var(--icro-white);
  border: 1px solid rgba(31, 111, 235, .38);
  border-radius: 1.35rem;
  padding: .85rem;
  box-shadow: var(--icro-shadow);
}
.icro-sticky-cta[hidden], .icro-exit-popup[hidden], .icro-trust-toast[hidden] { display: none !important; }
.icro-sticky-cta__text { margin: 0; font-weight: 900; }
.icro-sticky-cta__subtext { margin: .2rem 0 0; color: #cbd5e1; font-size: .86rem; }

.icro-exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 22, 38, .62);
}
.icro-exit-popup__panel {
  position: relative;
  width: min(560px, 100%);
  background: var(--icro-night);
  color: var(--icro-white);
  border-radius: 1.6rem;
  padding: 1.45rem;
  box-shadow: var(--icro-shadow);
  border: 1px solid rgba(216, 183, 106, .34);
}
.icro-exit-popup__panel .icro-close { position: absolute; top: .75rem; right: .75rem; }
.icro-exit-popup h2, .icro-offer-block h2, .icro-comparison-cta h2 { margin: 0 0 .65rem; line-height: 1.12; }
.icro-exit-popup p { color: #dbe6f4; }
.icro-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }

.icro-trust-toast {
  position: fixed;
  z-index: 9997;
  left: 1rem;
  bottom: 6.25rem;
  max-width: 340px;
  background: var(--icro-white);
  color: var(--icro-ink);
  border: 1px solid rgba(7, 22, 38, .08);
  box-shadow: var(--icro-shadow);
  border-radius: 1rem;
  padding: .9rem 1rem;
  font-size: .92rem;
  font-weight: 700;
}
.icro-trust-toast strong { color: var(--icro-night); }

.icro-offer-block,
.icro-comparison-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
  background: var(--icro-white);
  color: var(--icro-ink);
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 1.4rem;
  padding: 1.2rem;
  box-shadow: 0 18px 45px rgba(7, 22, 38, .08);
}
.icro-offer-block { border-left: 4px solid var(--icro-accent); }
.icro-comparison-cta { background: var(--icro-mist); }
.icro-comparison-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: flex-end; }

@media (max-width: 760px) {
  .icro-sticky-cta, .icro-offer-block, .icro-comparison-cta { grid-template-columns: 1fr; }
  .icro-sticky-cta { left: .65rem; right: .65rem; bottom: .65rem; }
  .icro-trust-toast { left: .65rem; right: .65rem; bottom: 8.5rem; max-width: none; }
  .icro-comparison-cta__actions { justify-content: flex-start; }
}
