/* VerificaIMEI.ro - Stylesheet Optimizat v3.0 */
:root {
  --navy: #0a0e1a;
  --navy-2: #111827;
  --navy-3: #1a2235;
  --navy-4: #1f2d45;
  --teal: #00d4aa;
  --teal-dim: #00b89033;
  --teal-glow: rgba(0,212,170,0.15);
  --amber: #f59e0b;
  --red: #ef4444;
  --green: #10b981;
  --slate: #94a3b8;
  --slate-2: #64748b;
  --white: #f8fafc;
  --white-dim: rgba(248,250,252,0.07);
  --border: rgba(148,163,184,0.12);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier New', monospace;
  --radius: 14px;
  --radius-lg: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  margin-top: 14px;
  font-weight: 300;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.95);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s infinite;
}

.nav-cta {
  background: var(--teal);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,212,170,0.3); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.nav-link:hover { color: var(--white); background: var(--white-dim); }

.dropdown { position: relative; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.dropdown-arrow { transition: transform 0.2s; font-size: 0.7rem; }
.dropdown.active .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 101;
}
.nav-lang-btn-v2 {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,212,170,0.08);
    border: 1px solid rgba(0,212,170,0.2);
    border-radius: 10px;
    padding: 8px 14px;
    color: var(--slate);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.nav-lang-btn-v2 .lang-current {
    color: var(--teal);
    font-weight: 700;
}
.nav-lang-btn-v2 .lang-separator {
    color: var(--slate-2);
    opacity: 0.5;
}
.nav-lang-btn-v2 .lang-other {
    color: var(--slate);
}
.nav-lang-btn-v2:hover {
    background: rgba(0,212,170,0.15);
    border-color: rgba(0,212,170,0.35);
    transform: translateY(-1px);
}
.nav-lang-btn-v2:hover .lang-other {
    color: var(--teal);
}
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.15s;
}

.dropdown-item:hover { background: var(--navy-4); color: var(--white); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.mobile-menu-btn:hover { background: var(--white-dim); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 98;
}

.nav-overlay.active { opacity: 1; visibility: visible; }

.hero {
  position: relative;
  padding: 80px 24px 90px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,14,26,0.95);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-title .accent { color: var(--teal); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--slate);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 42px;
}

.imei-form-wrap {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 620px;
  margin: 0 auto 28px;
  box-shadow: 0 0 60px rgba(0,212,170,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
}

.imei-form-label {
  font-size: 0.82rem;
  color: var(--slate-2);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: left;
}

.imei-input-row { display: flex; gap: 10px; }

.imei-input {
  flex: 1;
  background: var(--navy-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.imei-input::placeholder { color: var(--slate-2); }
.imei-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.btn-check {
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-check:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,212,170,0.35);
}

.imei-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--slate-2);
  margin-top: 12px;
  transition: color 0.2s;
}

.imei-hint svg { flex-shrink: 0; opacity: 0.6; }

.hero-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--slate-2);
}

.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item .icon { color: var(--green); }

.stats-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat-label { font-size: 0.8rem; color: var(--slate-2); margin-top: 4px; }

.google-reviews-badge {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.google-reviews-badge:hover { transform: translateY(-2px); }

.google-reviews-badge::after {
  content: 'Vezi recenziile →';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--teal);
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.google-reviews-badge:hover::after {
  opacity: 1;
  bottom: -24px;
}

.problem-section {
  padding: 90px 24px;
  background: var(--navy-2);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 50px;
}

.prob-col, .sol-col { padding: 40px; }

.prob-col {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.sol-col {
  background: rgba(0,212,170,0.05);
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.col-header.danger { color: var(--red); }
.col-header.safe { color: var(--teal); }

.scenario-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}

.scenario-item:last-child { border-bottom: none; }
.scenario-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.how-section { padding: 90px 24px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(33.33% - 20px);
  width: calc(33.33% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(0,212,170,0.2));
  pointer-events: none;
}

.step-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  margin-right: 10px;
  transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,170,0.3);
}

.step-num {
  width: 48px; height: 48px;
  background: var(--teal-dim);
  border: 1.5px solid rgba(0,212,170,0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 22px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--teal);
  background: var(--teal-dim);
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 14px;
}

.report-section {
  padding: 90px 24px;
  background: var(--navy-2);
}

.report-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.report-mockup {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
}

.report-topbar {
  background: var(--navy-4);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot-r { width: 10px; height: 10px; border-radius: 50%; }
.dot-r.red { background: #ef4444; }
.dot-r.yel { background: #f59e0b; }
.dot-r.grn { background: #10b981; }

.report-title-bar {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-2);
  margin-left: 10px;
}

.report-body { padding: 24px; }

.report-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.report-score-label { font-size: 0.8rem; color: var(--slate-2); font-family: var(--font-mono); }

.score-badge {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.score-sub { font-size: 0.75rem; color: var(--green); opacity: 0.7; }

.report-checks { display: flex; flex-direction: column; gap: 10px; }

.check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--navy-2);
  border-radius: 10px;
  font-size: 0.84rem;
}

.check-name { color: var(--slate); }

.check-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 99px;
  font-weight: 500;
}

.status-ok { background: rgba(16,185,129,0.15); color: var(--green); }
.status-warn { background: rgba(245,158,11,0.15); color: var(--amber); }
.status-err { background: rgba(239,68,68,0.15); color: var(--red); }

.report-cta-col .section-title { margin-bottom: 16px; }

.report-points { list-style: none; margin: 24px 0 32px; }

.report-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--slate);
}

.report-points li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.demo-section {
  padding: 90px 24px;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.demo-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,170,0.25);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.demo-preview {
  position: relative;
  background: linear-gradient(135deg, var(--navy-4) 0%, var(--navy-3) 100%);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.demo-device-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.demo-device-badge.iphone {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.demo-device-badge.samsung {
  background: rgba(0,212,170,0.15);
  border: 1px solid rgba(0,212,170,0.3);
  color: var(--teal);
}

.demo-thumbnail { width: 100%; max-width: 280px; }

.demo-page-mockup {
  background: var(--navy-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.demo-page-header {
  background: var(--navy-4);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #ef4444; }
.demo-dots span:nth-child(2) { background: #f59e0b; }
.demo-dots span:nth-child(3) { background: #10b981; }

.demo-filename {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--slate-2);
  margin-left: auto;
}

.demo-page-content { padding: 24px; }

.demo-score-demo {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(16,185,129,0.08);
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.2);
}

.demo-score-demo.samsung-score {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.2);
}

.demo-score-demo.samsung-score .demo-score-num { color: var(--amber); }

.demo-score-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.demo-score-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--slate-2);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.demo-checks-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--slate);
}

.demo-check-item.ok span { color: var(--green); font-weight: 700; }
.demo-check-item.warn span { color: var(--amber); font-weight: 700; }

.demo-info { padding: 28px; }

.demo-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.demo-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.demo-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-demo-primary {
  background: var(--teal);
  color: var(--navy);
  flex: 1;
  justify-content: center;
}

.btn-demo-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,212,170,0.3);
}

.btn-demo-secondary {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border);
}

.btn-demo-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,212,170,0.05);
}

.demo-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85rem;
  color: var(--slate);
}

.demo-note svg { color: var(--teal); flex-shrink: 0; }

.risk-section { padding: 90px 24px; }

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.risk-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s;
}

.risk-card:hover { transform: translateY(-5px); }

.risk-ok  { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.risk-low { background: rgba(132,204,22,0.08); border-color: rgba(132,204,22,0.2); }
.risk-med { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }
.risk-hi  { background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.2);  }

.risk-range {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.risk-ok .risk-range  { color: var(--green); }
.risk-low .risk-range { color: #84cc16; }
.risk-med .risk-range { color: var(--amber); }
.risk-hi .risk-range  { color: var(--red); }

.risk-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.risk-desc { font-size: 0.78rem; color: var(--slate-2); line-height: 1.6; }

.trust-section {
  padding: 90px 24px;
  background: var(--navy-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.trust-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s;
}

.trust-card:hover { border-color: rgba(0,212,170,0.25); }

.trust-icon { font-size: 1.8rem; margin-bottom: 14px; }

.trust-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-text { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }

.reviews-section { padding: 90px 24px; background: var(--navy); }

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.google-review-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.google-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,170,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.google-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.google-author { font-weight: 600; color: var(--white); font-size: 0.9rem; line-height: 1.3; }

.google-meta {
  font-size: 0.75rem;
  color: var(--slate-2);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.google-stars { color: #fbbc05; letter-spacing: -1px; }

.google-logo { margin-left: auto; opacity: 0.6; transition: opacity 0.2s; }
.google-review-card:hover .google-logo { opacity: 1; }

.google-review-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
  font-style: italic;
}

.google-review-text::before {
  content: '"';
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 0;
  margin-right: 2px;
  font-family: Georgia, serif;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-google-reviews:hover {
  background: var(--navy-2);
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.pricing-section { padding: 90px 24px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.price-box {
  background: var(--navy-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.price-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.iphone-box {
  border-color: rgba(255,255,255,0.15);
  background: linear-gradient(180deg, var(--navy-3) 0%, rgba(255,255,255,0.02) 100%);
}

.iphone-box:hover { border-color: rgba(255,255,255,0.3); box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.03); }

.samsung-box {
  border-color: rgba(0,212,170,0.2);
  background: linear-gradient(180deg, var(--navy-3) 0%, rgba(0,212,170,0.03) 100%);
}

.samsung-box:hover { border-color: rgba(0,212,170,0.4); box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,170,0.08); }

.price-device-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 0;
}

.device-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-icon { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.samsung-icon { background: rgba(0,212,170,0.12); color: var(--teal); border: 1px solid rgba(0,212,170,0.25); }

.price-device-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.price-device-sub { font-size: 0.8rem; color: var(--slate-2); margin-top: 2px; }

.price-header {
  background: linear-gradient(135deg, rgba(0,212,170,0.08), rgba(0,212,170,0.02));
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.iphone-box .price-header { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); }

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-top: 8px;
}

.price-currency { font-size: 1.4rem; color: var(--teal); font-weight: 600; vertical-align: super; }
.price-period { font-size: 0.85rem; color: var(--slate-2); margin-top: 6px; }

.price-body { padding: 28px; }

.price-features { list-style: none; margin-bottom: 28px; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--slate);
  border-bottom: 1px solid rgba(148,163,184,0.08);
  line-height: 1.5;
}

.price-features li:last-child { border-bottom: none; }
.price-features li strong { color: var(--white); font-weight: 600; }
.price-features .chk { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-iphone { background: var(--white); color: var(--navy); }
.btn-iphone:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,255,255,0.25); }

.btn-samsung { background: var(--teal); color: var(--navy); }
.btn-samsung:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,212,170,0.35); }

.btn-buy svg { transition: transform 0.2s; }
.btn-buy:hover svg { transform: translateX(3px); }

.pricing-common {
  margin-top: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.common-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.common-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.common-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate);
}

.common-features svg { color: var(--teal); }

.pricing-urgent-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(245,158,11,0.08));
  border: 1.5px solid rgba(239,68,68,0.35);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.pricing-urgent-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.urgent-icon { font-size: 2rem; flex-shrink: 0; animation: bounce 1s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.urgent-content { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.urgent-content strong { color: #fca5a5; font-size: 1.05rem; font-weight: 700; }
.urgent-content span { color: var(--slate); font-size: 0.85rem; }

.urgent-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 80px;
}

.count-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fca5a5;
  line-height: 1;
}

.count-label {
  font-size: 0.7rem;
  color: var(--slate-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.faq-section {
  padding: 90px 24px;
  background: var(--navy-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--white-dim); }

.faq-q .arrow {
  color: var(--teal);
  font-size: 1rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}

details[open] .faq-q .arrow { transform: rotate(45deg); }

.faq-a {
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.cta-section {
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section .section-title { margin-bottom: 12px; }
.cta-section .section-sub { margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,212,170,0.4);
}

.cta-note { font-size: 0.8rem; color: var(--slate-2); }

footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  background: var(--navy);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy { font-size: 0.8rem; color: var(--slate-2); }

.footer-links { display: flex; gap: 20px; }

.footer-links a { font-size: 0.8rem; color: var(--slate-2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

.anpc-badges {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.anpc-badges img { height: 40px; width: auto; opacity: 0.9; transition: 0.2s ease; }
.anpc-badges img:hover { opacity: 1; transform: scale(1.05); }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,14,26,0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeOverlay 0.25s ease;
}

.modal-overlay.open { display: flex; }

@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--navy-3);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 0 1px rgba(0,212,170,0.06), 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: slideUp 0.3s cubic-bezier(0.22,1,0.36,1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(0,212,170,0.03));
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-left { display: flex; align-items: center; gap: 10px; }

.modal-header-icon {
  width: 38px; height: 38px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.modal-header-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.modal-header-sub { font-size: 0.75rem; color: var(--slate-2); font-family: var(--font-mono); }

.modal-close {
  width: 32px; height: 32px;
  background: var(--white-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-size: 1rem;
  transition: all 0.2s;
}

.modal-close:hover { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.3); color: var(--red); }

.modal-body { padding: 24px; }

.modal-imei-preview {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-imei-label { font-size: 0.72rem; color: var(--slate-2); font-family: var(--font-mono); }
.modal-imei-val { font-family: var(--font-mono); font-size: 0.9rem; color: var(--teal); letter-spacing: 0.05em; }

.modal-imei-badge {
  font-size: 0.7rem;
  background: rgba(16,185,129,0.12);
  color: var(--green);
  border-radius: 99px;
  padding: 3px 9px;
  font-family: var(--font-mono);
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.modal-price-label { font-size: 0.88rem; color: var(--slate); }

.modal-price-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.modal-price-amount span { color: var(--teal); font-size: 0.85rem; }

.modal-field-label {
  font-size: 0.75rem;
  color: var(--slate-2);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.modal-email-input {
  width: 100%;
  background: var(--navy-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.modal-email-input::placeholder { color: var(--slate-2); }

.modal-email-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

#stripe-card-element {
  background: var(--navy-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#stripe-card-element.StripeElement--focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

#stripe-card-element.StripeElement--invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

#card-error {
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 8px;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 15px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-pay:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,212,170,0.38);
}

.btn-pay:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-pay .spinner {
  width: 16px; height: 16px;
  border: 2.5px solid rgba(10,14,26,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn-pay.loading .spinner { display: block; }
.btn-pay.loading .btn-pay-text { opacity: 0.7; }

.modal-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--slate-2);
  margin-top: 14px;
}

.modal-secure-note svg { opacity: 0.5; }

.modal-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.modal-success.show { display: block; }

.modal-success-icon {
  width: 64px; height: 64px;
  background: rgba(16,185,129,0.12);
  border: 2px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  animation: popIn 0.4s cubic-bezier(0.22,1,0.36,1);
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-success-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.modal-success-sub { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }

.modal-success-imei {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--teal);
  background: var(--teal-dim);
  padding: 6px 14px;
  border-radius: 99px;
  display: inline-block;
  margin: 14px 0;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s;
}

.btn-download:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,212,170,0.35); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes warningPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,.25); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
  .price-amount { font-size: 3rem; }
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
  .prob-col { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .sol-col { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .report-layout { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .imei-input-row { flex-direction: column; }
  .stats-inner { gap: 30px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-preview { min-height: 240px; padding: 24px; }
  .demo-actions { flex-direction: column; }
  .btn-demo { width: 100%; justify-content: center; }
  .google-reviews-badge::after { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 20px;
    gap: 4px;
    transition: right 0.3s ease;
    z-index: 99;
  }
  .nav-links.active { right: 0; }
  .mobile-menu-btn { display: block; z-index: 100; }
  .nav-link { padding: 14px 16px; font-size: 1rem; border-radius: 10px; }
  .dropdown { position: static; }
  .dropdown-toggle { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--navy-3);
    margin-top: 4px;
    min-width: auto;
  }
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown-item { padding: 14px 16px 14px 32px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 70px; }
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo span { display: none; }
  .pricing-section, .demo-section, .reviews-section { padding: 60px 20px; }
  .price-device-header { padding: 20px 20px 0; }
  .device-icon { width: 48px; height: 48px; }
  .price-device-name { font-size: 1.2rem; }
  .price-header { padding: 20px; }
  .price-body { padding: 20px; }
  .price-features li { font-size: 0.82rem; }
  .common-features { flex-direction: column; gap: 12px; }
  .demo-score-num { font-size: 2.5rem; }
}
.modal-device-card {
    background: rgba(0,212,170,.06);
    border: 1px solid rgba(0,212,170,.22);
    border-radius: 14px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}
.modal-device-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,212,170,0), rgba(0,212,170,.7), rgba(0,212,170,0));
}
.mdc-icon-wrap {
    width: 46px; height: 46px;
    background: rgba(0,212,170,.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .3s;
}
.mdc-info { flex: 1; min-width: 0; }
.mdc-brand {
    font-size: .85rem; font-weight: 700;
    color: #00d4aa; margin-bottom: 2px;
}
.mdc-imei {
    font-family: var(--font-mono, 'Courier New', monospace);
    font-size: .75rem; color: var(--slate, #94a3b8);
}
.mdc-valid-badge {
    background: rgba(0,212,170,.15);
    border: 1px solid rgba(0,212,170,.3);
    color: #00d4aa;
    font-size: .7rem; font-weight: 700;
    padding: 3px 9px; border-radius: 6px;
    flex-shrink: 0;
}
.modal-checks-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}
.mcm-item {
    background: rgba(148,163,184,.05);
    border: 1px solid rgba(148,163,184,.1);
    border-radius: 8px;
    padding: 7px 10px;
    display: flex; align-items: center; gap: 7px;
    font-size: .75rem; color: var(--slate, #94a3b8);
}
.mcm-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #00d4aa;
    flex-shrink: 0;
}