/* ============================================================
   LOGIN — Monochrome Premium
   Xadrez Studio Criativo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --white: #ffffff;
  --white-soft: #f5f5f5;

  --gray-1: #e8e8e8;
  --gray-2: #b0b0b0;
  --gray-3: #707070;
  --gray-4: #3a3a3a;
  --gray-5: #252525;

  --border: rgba(255, 255, 255, 0.08);
  --border-md: rgba(255, 255, 255, 0.13);

  --danger: #ff5757;
  --success: #4ade80;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ─────────────────────────────────────────────────── */
.lg-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

/* ══════════════════════════════════════════════════════════════
   LEFT — Branding
   ══════════════════════════════════════════════════════════════ */
.lg-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 56px;
  background: var(--black-2);
  overflow: hidden;
  border-right: 1px solid var(--border);
}

/* Large circle outline */
.lg-brand::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -280px;
  pointer-events: none;
}

/* Small bottom circle */
.lg-brand::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  bottom: -100px;
  left: -120px;
  pointer-events: none;
}

/* Fine grid pattern */
.lg-brand-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 65% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

/* Diagonal accent line */
.lg-brand-line {
  position: absolute;
  width: 1px;
  height: 320px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.10), transparent);
  top: 50%;
  right: 22%;
  transform: translateY(-50%) rotate(15deg);
  pointer-events: none;
}

/* Brand top */
.lg-brand-top {
  position: relative;
  z-index: 2;
}

.lg-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Brand center */
.lg-brand-center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
}

.lg-brand-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--border-md);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 28px;
  width: fit-content;
}

.lg-brand-label-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lg-brand-label-dot svg {
  color: var(--black);
}

.lg-brand-title {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.lg-brand-title span {
  display: block;
  color: var(--gray-3);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.lg-brand-desc {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--gray-3);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 40px;
}

/* Feature list */
.lg-brand-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lg-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
  animation: featureSlide 0.5s var(--ease-out) both;
}

.lg-feature:nth-child(1) {
  animation-delay: 0.08s;
}

.lg-feature:nth-child(2) {
  animation-delay: 0.16s;
}

.lg-feature:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes featureSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lg-feature:hover {
  border-color: var(--border-md);
  background: rgba(255, 255, 255, 0.04);
}

.lg-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gray-5);
  border: 1px solid var(--gray-4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-1);
}

/* Alias para manter compatibilidade */
.lg-fi-roxo,
.lg-fi-azul,
.lg-fi-verde {}

.lg-feature span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-2);
  letter-spacing: -0.005em;
}

/* Brand bottom stats */
.lg-brand-bottom {
  position: relative;
  z-index: 2;
}

.lg-brand-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lg-stat-num {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.lg-stat-label {
  font-size: 0.67rem;
  font-weight: 400;
  color: var(--gray-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   RIGHT — Form
   ══════════════════════════════════════════════════════════════ */
.lg-form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: var(--black);
  padding: 52px 56px;
  overflow: hidden;
}

/* Radial glow behind form */
.lg-form-panel::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lg-form-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  animation: formIn 0.6s var(--ease-out) both;
  animation-delay: 0.1s;
}

@keyframes formIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile logo */
.lg-mobile-logo {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}

.lg-mobile-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.lg-mobile-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* Form header */
.lg-form-header {
  margin-bottom: 40px;
}

.lg-form-step {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lg-form-step::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gray-4);
}

.lg-form-title {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.lg-form-sub {
  font-size: 0.82rem;
  color: var(--gray-3);
  line-height: 1.65;
}

/* Error */
.lg-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255, 87, 87, 0.07);
  border: 1px solid rgba(255, 87, 87, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  animation: shake 0.4s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(2px);
  }
}

.lg-error-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 87, 87, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--danger);
}

.lg-error-msg {
  font-size: 0.8rem;
  color: #ff9898;
  font-weight: 500;
}

/* Fields */
.lg-field {
  margin-bottom: 18px;
}

.lg-field-label {
  display: block;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.lg-field:focus-within .lg-field-label {
  color: var(--gray-1);
}

.lg-field-wrap {
  position: relative;
}

.lg-field-input {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 13px 46px 13px 46px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.lg-field-input::placeholder {
  color: var(--gray-4);
}

.lg-field-input:hover:not(:focus) {
  border-color: var(--gray-3);
}

.lg-field-input:focus {
  border-color: var(--white);
  background: var(--black-4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.lg-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-4);
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.lg-field:focus-within .lg-field-icon {
  color: var(--gray-2);
}

.lg-toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-4);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.lg-toggle-pw:hover {
  color: var(--gray-2);
  background: rgba(255, 255, 255, 0.06);
}

/* Options row */
.lg-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 28px;
}

.lg-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  color: var(--gray-3);
  cursor: pointer;
  user-select: none;
}

.lg-remember input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--white);
  cursor: pointer;
}

.lg-forgot {
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--gray-2);
  text-decoration: none;
  transition: color 0.2s;
}

.lg-forgot:hover {
  color: var(--white);
}

/* Submit button */
.lg-submit {
  position: relative;
  width: 100%;
  padding: 14px 24px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lg-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s;
}

.lg-submit:hover::after {
  background: rgba(0, 0, 0, 0.07);
}

.lg-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.14);
}

.lg-submit:active {
  transform: translateY(0);
}

.lg-submit-text {
  position: relative;
  z-index: 1;
}

.lg-submit-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform 0.2s var(--ease-spring);
}

.lg-submit:hover .lg-submit-arrow {
  transform: translateX(3px);
}

.lg-submit-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lg-submit.loading .lg-submit-text,
.lg-submit.loading .lg-submit-arrow {
  opacity: 0;
}

.lg-submit.loading .lg-submit-spinner {
  display: block;
}

.lg-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

/* Footer */
.lg-footer {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-4);
  letter-spacing: 0.02em;
}

/* Toast */
.lg-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black-3);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 13px 18px;
  min-width: 230px;
  max-width: 300px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  animation: toastIn 0.4s var(--ease-spring);
  overflow: hidden;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.lg-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
}

.lg-toast-msg {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.lg-toast-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--success);
  transform-origin: left;
  animation: toastBar 2.5s linear forwards;
  opacity: 0.6;
}

@keyframes toastBar {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   LICENSE BLOCK PAGE
   ══════════════════════════════════════════════════════════════ */
.license-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background: var(--black);
}

.block-card {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  animation: cardIn 0.5s var(--ease-out);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.block-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.9rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}

.status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.block-card h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.block-msg {
  color: var(--gray-3);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.87rem;
  font-weight: 700;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.38);
}

.btn-whatsapp svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .lg-split {
    grid-template-columns: 1fr;
  }

  .lg-brand {
    display: none;
  }

  .lg-form-panel {
    padding: 48px 32px;
  }

  .lg-mobile-logo {
    display: flex;
  }
}

@media (max-width: 480px) {
  .lg-form-panel {
    padding: 40px 24px;
  }

  .lg-form-title {
    font-size: 1.3rem;
  }

  .lg-toast {
    left: 16px;
    right: 16px;
    bottom: 18px;
    min-width: unset;
  }
}

.lg-license-alert {
  margin-top: 18px;
}

.lg-license-alert__badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 2px dashed #f59e0b;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 158, 11, .10) 0%, rgba(251, 191, 36, .08) 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, .12);
  transition: all .25s ease;
}

.lg-license-alert__badge:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  transform: translateY(-1px);
}

.lg-license-alert__badge:hover .lg-license-alert__pill,
.lg-license-alert__badge:hover .lg-license-alert__text strong,
.lg-license-alert__badge:hover .lg-license-alert__text span {
  color: #fff;
}

.lg-license-alert__badge:hover .lg-license-alert__pill {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .24);
}

.lg-license-alert__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.lg-license-alert__top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lg-license-alert__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid rgba(245, 158, 11, .28);
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: all .25s ease;
}

.lg-license-alert__pill i {
  font-size: 12px;
}

.lg-license-alert__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lg-license-alert__text strong {
  font-size: 14px;
  font-weight: 800;
  color: #9a3412;
  transition: color .25s ease;
}

.lg-license-alert__text span {
  font-size: 12px;
  font-weight: 600;
  color: #c2410c;
  transition: color .25s ease;
}

.lg-license-alert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: #fff;
  color: #c2410c;
  border: 1px solid rgba(245, 158, 11, .30);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
  transition: all .25s ease;
}

.lg-license-alert__btn:hover {
  background: #fff7ed;
  color: #9a3412;
}

.lg-license-alert__badge:hover .lg-license-alert__btn {
  background: #fff;
  color: #c2410c;
}

@media (max-width: 640px) {
  .lg-license-alert__badge {
    flex-direction: column;
    align-items: stretch;
  }

  .lg-license-alert__btn {
    width: 100%;
  }
}

.lg-lic-banner { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 14px; border-radius:10px; border:1.5px solid; font-size:.82rem; line-height:1.4; flex-wrap:wrap; margin-top:20px; }
    .lg-lic-banner--info { background:#eff6ff; border-color:#bfdbfe; color:#1e40af; }
    .lg-lic-banner--warning { background:#fffbeb; border-color:#fcd34d; color:#92400e; }
    .lg-lic-banner--danger { background:#fff7ed; border-color:#fb923c; color:#9a3412; }
    .lg-lic-banner--critical { background:#fef2f2; border-color:#fca5a5; color:#991b1b; animation: lg-pulse-border 2s ease-in-out infinite; }
    @keyframes lg-pulse-border { 0%,100% { border-color:#fca5a5; box-shadow:0 0 0 0 rgba(239,68,68,0); } 50% { border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,.12); } }
    .lg-lic-banner__icon { width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
    .lg-lic-banner--info .lg-lic-banner__icon { background:#dbeafe; color:#1d4ed8; }
    .lg-lic-banner--warning .lg-lic-banner__icon { background:#fef3c7; color:#b45309; }
    .lg-lic-banner--danger .lg-lic-banner__icon { background:#ffedd5; color:#c2410c; }
    .lg-lic-banner--critical .lg-lic-banner__icon { background:#fee2e2; color:#dc2626; }
    .lg-lic-banner__body { flex:1; min-width:160px; }
    .lg-lic-banner__title { font-weight:700; display:block; margin-bottom:1px; }
    .lg-lic-banner__sub { opacity:.8; }
    .lg-lic-banner__btn { display:inline-flex; align-items:center; gap:5px; padding:6px 12px; border-radius:7px; font-size:.78rem; font-weight:700; text-decoration:none; white-space:nowrap; transition:opacity .15s; flex-shrink:0; }
    .lg-lic-banner__btn:hover { opacity:.85; }
    .lg-lic-banner--info .lg-lic-banner__btn { background:#1d4ed8; color:#fff; }
    .lg-lic-banner--warning .lg-lic-banner__btn { background:#b45309; color:#fff; }
    .lg-lic-banner--danger .lg-lic-banner__btn { background:#c2410c; color:#fff; }
    .lg-lic-banner--critical .lg-lic-banner__btn { background:#dc2626; color:#fff; }
    .lg-lic-banner__days { display:inline-flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:800; padding:2px 7px; border-radius:100px; margin-right:6px; }
    .lg-lic-banner--info .lg-lic-banner__days { background:#bfdbfe; color:#1e3a8a; }
    .lg-lic-banner--warning .lg-lic-banner__days { background:#fde68a; color:#78350f; }
    .lg-lic-banner--danger .lg-lic-banner__days { background:#fed7aa; color:#7c2d12; }
    .lg-lic-banner--critical .lg-lic-banner__days { background:#fecaca; color:#7f1d1d; }

    .lg-attempts { display:flex; align-items:center; gap:10px; margin-top:14px; padding:10px 14px; border-radius:8px; font-size:.78rem; line-height:1.4; }
    .lg-attempts--warn { background:#fffbeb; border:1px solid #fcd34d; color:#92400e; }
    .lg-attempts--block { background:#fef2f2; border:1px solid #fca5a5; color:#991b1b; animation: lg-pulse-border 2s ease-in-out infinite; }
    .lg-attempts__icon { font-size:16px; flex-shrink:0; }
    .lg-attempts__text strong { font-weight:700; }
    .lg-attempts__dots { display:flex; gap:4px; margin-left:auto; flex-shrink:0; }
    .lg-attempts__dot { width:8px; height:8px; border-radius:50%; background:#fcd34d; }
    .lg-attempts__dot.used { background:#ef4444; }
    .lg-attempts__dot.empty { background:#d1d5db; }