/* ═══════════════════════════════════════════════════════
   DigitalCheck.ro — Global Stylesheet
   Temă: Modern Light Tech — v2
═══════════════════════════════════════════════════════ */

/* Google Fonts loaded via <link> in HTML for better performance */

/* ── Variables ───────────────────────────────────────── */
:root {
  /* Brand palette */
  --blue:        #2563EB;
  --blue-light:  #3B82F6;
  --blue-dark:   #1D4ED8;
  --green:       #059669;
  --green-light: #10B981;
  --red:         #DC2626;
  --red-light:   #EF4444;
  --yellow:      #D97706;
  --purple:      #7C3AED;

  /* Backgrounds */
  --bg:          #F8FAFC;
  --bg2:         #FFFFFF;
  --bg3:         #F1F5F9;
  --bg4:         #E2E8F0;

  /* Text */
  --text:        #0F172A;
  --text-dim:    #475569;
  --text-light:  #64748B;

  /* Borders */
  --border:      #E2E8F0;
  --border-mid:  #CBD5E1;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:   0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg:   0 10px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-blue: 0 4px 20px rgba(37,99,235,0.18);
  --shadow-green:0 4px 20px rgba(5,150,105,0.18);

  /* Terminal (stays dark) */
  --term-bg:     #0D1117;
  --term-bg2:    #161B22;
  --term-border: rgba(48,54,61,1);
  --term-green:  #3FB950;
  --term-blue:   #58A6FF;
  --term-red:    #F85149;
  --term-yellow: #D29922;
  --term-dim:    #6E7681;

  /* Legacy neon aliases — for any references in PHP templates */
  --neon-blue:   #2563EB;
  --neon-green:  #059669;
  --neon-red:    #DC2626;
  --neon-yellow: #D97706;
  --neon-purple: #7C3AED;

  /* Fonts */
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;
  --font-title:  'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius:      10px;
  --radius-lg:   14px;
  --transition:  0.18s ease;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }

/* ── Subtle dot grid background ─────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* ── Container ───────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.container--narrow { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* ── Sticky header + Live bar ────────────────────────── */
.sticky-header {
  position: sticky; top: 0; z-index: 200;
}
.sticky-header .navbar { position: static; }

.live-bar {
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-dim);
}
.live-bar__item { display: flex; align-items: center; gap: 7px; }
.live-bar__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
  50%      { opacity: 0.8; box-shadow: 0 0 0 4px rgba(5,150,105,0); }
}
.live-bar__num {
  font-weight: 700; color: var(--text);
  font-family: var(--font-mono); font-size: 0.82rem;
}

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}
.navbar__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.navbar__logo {
  font-family: var(--font-title);
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
  display: flex; align-items: center; gap: 9px;
}
.navbar__logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-title);
  box-shadow: var(--shadow-blue);
}
.navbar__nav { display: flex; gap: 28px; list-style: none; }
.navbar__nav a {
  font-size: 0.84rem; letter-spacing: 0; font-weight: 500;
  color: var(--text-dim);
  font-family: var(--font-body);
  transition: color var(--transition);
}
.navbar__nav a:hover { color: var(--blue); }
.navbar__cta {
  background: var(--blue) !important;
  border: none !important;
  color: #fff !important;
  padding: 7px 18px; border-radius: 7px;
  font-weight: 600 !important; font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  position: relative; overflow: hidden;
  letter-spacing: 0;
  box-shadow: var(--shadow-blue);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-flex; align-items: center;
}
.navbar__cta::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: navbar-cta-scan 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes navbar-cta-pulse {
  0%,100% { box-shadow: var(--shadow-blue); }
  50%      { box-shadow: 0 4px 28px rgba(37,99,235,0.35); }
}
@keyframes navbar-cta-scan {
  0%   { left: -120%; }
  100% { left: 180%; }
}
.navbar__cta:hover {
  background: var(--blue-dark) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(37,99,235,0.3) !important;
  transform: translateY(-1px);
}

/* ── Hero Section ────────────────────────────────────── */
.hero {
  min-height: 92vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px 60px;
  position: relative;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 3px; color: var(--blue);
  margin-bottom: 18px; text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 600px; margin: 0 auto 36px;
  font-weight: 400; line-height: 1.7;
}
.hero__stats {
  display: flex; gap: 36px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 44px;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: var(--font-mono); font-size: 1.6rem;
  color: var(--red); font-weight: 700;
}
.hero__stat-label {
  font-size: 0.72rem; color: var(--text-dim);
  letter-spacing: 0.5px; margin-top: 2px;
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0;
  border: none; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 28px rgba(37,99,235,0.3);
  transform: translateY(-1px); color: #fff;
}
.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--green:hover {
  background: #047857;
  box-shadow: 0 6px 28px rgba(5,150,105,0.3);
  transform: translateY(-1px); color: #fff;
}
.btn--outline {
  background: var(--bg2);
  border: 1px solid var(--border-mid) !important;
  color: var(--text-dim);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
  border-color: var(--blue) !important;
  color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── Service Cards ───────────────────────────────────── */
.services { padding: 80px 0; }
.services__title {
  text-align: center; font-family: var(--font-title);
  font-size: 1.8rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.services__sub {
  text-align: center; color: var(--text-dim);
  font-size: 0.9rem; margin-bottom: 44px;
}
.services__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px; cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--blue));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px); color: inherit;
}
.service-card.service-card--green { --card-accent: var(--green); }
.service-card.service-card--green:hover { border-color: rgba(5,150,105,0.3); box-shadow: var(--shadow-green); }
.service-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card__title { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card__desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.service-card__price {
  margin-top: 18px;
  font-family: var(--font-mono); font-size: 1.2rem;
  color: var(--green); font-weight: 700;
}
.service-card__arrow {
  position: absolute; right: 20px; bottom: 20px;
  color: var(--text-light); font-size: 1.2rem;
  transition: transform var(--transition), color var(--transition);
}
.service-card:hover .service-card__arrow {
  transform: translateX(4px); color: var(--blue);
}

/* ── Platform Grid ───────────────────────────────────── */
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 20px 0;
}
@media (max-width: 480px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
.platform-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 18px 12px;
  text-align: center; cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body); font-size: 0.82rem;
  color: var(--text-dim); font-weight: 500;
}
.platform-btn__icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.platform-btn:hover, .platform-btn.active {
  border-color: var(--blue);
  background: rgba(37,99,235,0.05);
  color: var(--text); box-shadow: var(--shadow-blue);
}
.platform-btn.active {
  border-color: var(--green);
  background: rgba(5,150,105,0.06);
  box-shadow: var(--shadow-green);
}

/* ── Form ────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 1px;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.form-input {
  width: 100%; background: var(--bg2);
  border: 1px solid var(--border-mid); border-radius: 8px;
  padding: 12px 16px; color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: all var(--transition); outline: none;
  box-shadow: var(--shadow-sm);
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-input::placeholder { color: var(--text-light); }
.form-input.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.form-error { font-size: 0.75rem; color: var(--red); margin-top: 5px; font-family: var(--font-mono); }
.form-hint { font-size: 0.75rem; color: var(--text-dim); margin-top: 5px; }

/* GDPR Checkbox */
.gdpr-check { display: flex; align-items: flex-start; gap: 12px; margin: 20px 0; }
.gdpr-check input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--blue); cursor: pointer;
}
.gdpr-check label { font-size: 0.78rem; color: var(--text-dim); cursor: pointer; line-height: 1.5; }
.gdpr-check label a { color: var(--blue); }

/* ── Card / Panel ────────────────────────────────────── */
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card--accent::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.card__title {
  font-family: var(--font-title); font-size: 1.2rem;
  font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.card__sub { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 24px; }

/* ── Terminal — stays dark, GitHub style ─────────────── */
.terminal {
  background: var(--term-bg); border: 1px solid var(--term-border);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.terminal__bar {
  background: var(--term-bg2); padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--term-border);
}
.terminal__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.terminal__dot--r { background: #ff5f57; }
.terminal__dot--y { background: #febc2e; }
.terminal__dot--g { background: #28c840; }
.terminal__bar-title {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--term-dim); margin-left: 6px;
  letter-spacing: 1px;
}
.terminal__body {
  padding: 18px 20px; min-height: 280px;
  font-family: var(--font-mono); font-size: 0.8rem;
  line-height: 1.8; overflow-y: auto; max-height: 420px;
  color: #CDD9E5;
}
.terminal__line { display: block; }
.t-green  { color: var(--term-green); }
.t-blue   { color: var(--term-blue); }
.t-red    { color: var(--term-red); }
.t-yellow { color: var(--term-yellow); }
.t-dim    { color: var(--term-dim); }
.t-white  { color: #CDD9E5; }
.t-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--term-green); vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Progress bar ────────────────────────────────────── */
.progress-wrap {
  background: rgba(37,99,235,0.1); border-radius: 3px;
  height: 4px; overflow: hidden; margin: 6px 0;
  display: inline-block; width: 140px; vertical-align: middle;
}
.progress-fill {
  height: 100%; background: var(--green);
  transition: width 0.3s; width: 0%;
  box-shadow: none;
}

/* ── Paywall Overlay ─────────────────────────────────── */
.paywall {
  background: var(--bg2); border: 1px solid rgba(220,38,38,0.25);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
  margin-top: 24px; box-shadow: var(--shadow-md);
}
.paywall__icon { font-size: 3rem; margin-bottom: 16px; }
.paywall__title {
  font-family: var(--font-title); font-size: 1.3rem;
  color: var(--text); margin-bottom: 10px; font-weight: 700;
}
.paywall__sub { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 24px; line-height: 1.6; }
.paywall__price {
  font-family: var(--font-mono); font-size: 2.4rem;
  color: var(--green); font-weight: 700;
  margin-bottom: 8px;
}
.paywall__price-sub { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 24px; }
.paywall__benefits { list-style: none; margin: 0 0 24px; text-align: left; }
.paywall__benefits li {
  font-size: 0.85rem; padding: 8px 0 8px 24px;
  position: relative; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.paywall__benefits li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}
.paywall__trust {
  font-size: 0.72rem; color: var(--text-light);
  font-family: var(--font-mono); margin-top: 14px;
}

/* ── Results / Score ─────────────────────────────────── */
.score-display {
  text-align: center; padding: 30px 0;
}
.score-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--score-color, var(--green));
  box-shadow: 0 0 0 6px rgba(5,150,105,0.08);
  flex-direction: column;
  background: var(--bg2);
}
.score-num {
  font-family: var(--font-mono); font-size: 2.4rem;
  color: var(--score-color, var(--green)); font-weight: 700;
  line-height: 1;
}
.score-label { font-size: 0.7rem; color: var(--text-dim); font-family: var(--font-mono); margin-top: 4px; }

/* ── Checklist ───────────────────────────────────────── */
.checklist { list-style: none; margin: 0; }
.checklist__item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 18px; margin-bottom: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.checklist__item:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); }
.checklist__priority {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.5px; padding: 2px 8px;
  border-radius: 20px; margin-bottom: 8px;
  border: 1px solid; font-weight: 500;
}
.priority--CRITIC { color: var(--red); border-color: rgba(220,38,38,0.35); background: rgba(220,38,38,0.07); }
.priority--ÎNALT  { color: var(--yellow); border-color: rgba(217,119,6,0.35); background: rgba(217,119,6,0.07); }
.priority--MEDIU  { color: var(--blue); border-color: rgba(37,99,235,0.35); background: rgba(37,99,235,0.07); }
.priority--SCĂZUT { color: var(--green); border-color: rgba(5,150,105,0.35); background: rgba(5,150,105,0.07); }
.checklist__title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.checklist__desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

/* ── Breach Badge ────────────────────────────────────── */
.breach-alert {
  background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px; padding: 14px 18px; margin: 16px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.breach-alert__icon { font-size: 1.3rem; flex-shrink: 0; }
.breach-alert__text strong { color: var(--red); display: block; margin-bottom: 4px; }
.breach-alert__text span { font-size: 0.82rem; color: var(--text-dim); }

.safe-alert {
  background: rgba(5,150,105,0.05); border: 1px solid rgba(5,150,105,0.25);
  border-radius: 8px; padding: 14px 18px; margin: 16px 0;
  display: flex; gap: 12px; align-items: center;
}
.safe-alert__text strong { color: var(--green); }

/* ── How it Works ────────────────────────────────────── */
.how-section { padding: 80px 0; border-top: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.step {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  color: var(--blue); opacity: 0.2; margin-bottom: 10px;
}
.step__icon { font-size: 1.8rem; margin-bottom: 12px; }
.step__title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step__desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

/* ── Trust Section ───────────────────────────────────── */
.trust-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 20px;
}
.trust-badge {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-dim); padding: 6px 14px;
  border: 1px solid var(--border); border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
  background: var(--bg2); box-shadow: var(--shadow-sm);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); padding: 36px 20px;
  text-align: center; position: relative; z-index: 1;
  background: var(--bg2);
}
.footer__logo {
  font-family: var(--font-title); font-size: 0.9rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.footer__text { font-size: 0.78rem; color: var(--text-dim); line-height: 1.8; }
.footer__text a { color: var(--blue); }

/* ── Utility ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-mono { font-family: var(--font-mono); }
.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }
.text-red   { color: var(--red); }
.text-dim   { color: var(--text-dim); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-8  { margin-bottom: 8px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.dim { color: var(--text-dim); }

/* ── Spinner ─────────────────────────────────────────── */
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(37,99,235,0.15);
  border-top-color: var(--blue);
  border-radius: 50%; animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Alert ───────────────────────────────────────────── */
.alert {
  padding: 12px 16px; border-radius: 8px;
  font-size: 0.83rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.alert--error {
  background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.25);
  color: #B91C1C;
}
.alert--success {
  background: rgba(5,150,105,0.06); border: 1px solid rgba(5,150,105,0.25);
  color: #065F46;
}

/* ══════════════════════════════════════════════════════
   HOMEPAGE — Extra sections
════════════════════════════════════════════════════════ */

/* ── Section helpers ─────────────────────────────────── */
.section-title {
  font-family: var(--font-title); font-size: clamp(1.6rem,3.5vw,2.4rem);
  font-weight: 700; color: var(--text); margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 1rem; color: var(--text-dim); margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ── Hero Split ──────────────────────────────────────── */
.hero--split {
  min-height: 92vh !important;
  padding: 0 !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  text-align: left !important;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero--split .container {
  display: grid !important;
  grid-template-columns: 55% 43%;
  gap: 40px;
  align-items: center;
  padding: 80px 20px 60px;
  width: 100%;
  max-width: 1100px;
  min-height: 92vh;
}
.hero__content { text-align: left; }
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2px;
  color: var(--blue); margin-bottom: 16px; text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-title); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--text);
  margin-bottom: 18px; letter-spacing: -0.4px;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: inline;
}
.hero__subtitle {
  font-size: 0.97rem; color: var(--text-dim);
  margin-bottom: 28px; font-weight: 400; line-height: 1.75;
}
.hero__ctas {
  display: flex; gap: 10px; flex-wrap: nowrap;
  margin-bottom: 22px; justify-content: flex-start; align-items: center;
}
.hero__ctas .btn {
  padding: 12px 20px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.hero__badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-start; }

/* ── Hero Terminal — dark island ─────────────────────── */
.hero__visual { position: relative; }
.hero-terminal {
  background: var(--term-bg); border: 1px solid var(--term-border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-terminal__bar {
  background: var(--term-bg2); padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--term-border);
}
.hero-terminal__title {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--term-dim); margin-left: 6px; letter-spacing: 1px;
}
.hero-terminal__body {
  padding: 18px 20px; font-family: var(--font-mono);
  font-size: 0.78rem; line-height: 2; color: #CDD9E5;
}

/* ── Stats Banner ────────────────────────────────────── */
.stats-banner {
  padding: 32px 0; background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.stats-banner__grid {
  display: flex; gap: 0; justify-content: space-around;
  align-items: center; flex-wrap: wrap;
}
.stats-banner__item { text-align: center; padding: 12px 20px; }
.stats-banner__num {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  color: var(--red); line-height: 1;
}
.stats-banner__label { font-size: 0.72rem; color: var(--text-dim); margin-top: 4px; letter-spacing: 0.5px; }
.stats-banner__divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── Features Section ────────────────────────────────── */
.features-section { padding: 90px 0; position: relative; z-index: 1; }
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.25s ease; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(37,99,235,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.feature-card--accent {
  border-color: rgba(37,99,235,0.25);
  background: linear-gradient(135deg, var(--bg2), rgba(37,99,235,0.03));
}
.feature-card--accent::before { opacity: 1; background: linear-gradient(90deg, var(--blue), var(--green)); }
.feature-card__num {
  font-family: var(--font-title); font-size: 3rem; font-weight: 700;
  color: var(--blue); opacity: 0.07; position: absolute; top: 16px; right: 20px;
}
.feature-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card__title {
  font-family: var(--font-title); font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.feature-card__desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.feature-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.3px;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(37,99,235,0.07); border: 1px solid rgba(37,99,235,0.18);
  color: var(--blue);
}

/* ── Platforms Section ───────────────────────────────── */
.platforms-section {
  padding: 60px 0; border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.platforms-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-top: 40px;
}
.platform-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  text-decoration: none; color: var(--text-dim);
  transition: all 0.2s; font-size: 0.88rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.platform-pill:hover {
  border-color: rgba(37,99,235,0.35); color: var(--text);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.platform-pill--breach { border-color: rgba(220,38,38,0.2); }
.platform-pill--breach:hover { border-color: rgba(220,38,38,0.4); color: var(--text); }

.platform-pill__badge {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.62rem; font-weight: 900;
  color: #fff; letter-spacing: 0.5px; text-decoration: none;
}
.platform-pill__badge svg { display: block; flex-shrink: 0; }
.platform-pill__badge--ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-pill__badge--tt { background: #010101; border: 1px solid rgba(254,44,85,0.5); color: #fe2c55; }
.platform-pill__badge--fb { background: #1877F2; }
.platform-pill__badge--tw { background: #000; border: 1px solid rgba(255,255,255,0.15); }
.platform-pill__badge--li { background: #0A66C2; font-style: italic; }
.platform-pill__badge--yt { background: #FF0000; }
.platform-pill__badge--breach {
  background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3);
  color: var(--red);
}

.platform-pill__name { flex: 1; font-size: 0.85rem; font-weight: 500; }
.platform-pill__arrow { color: var(--text-light); font-size: 0.85rem; opacity: 0.6; }

/* ── How Section Modern ──────────────────────────────── */
.how-section { padding: 90px 0; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.steps-modern {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 48px; position: relative;
}
.steps-modern::before {
  content: ''; position: absolute; top: 32px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.2;
}
.step-modern { padding: 0 16px; text-align: center; position: relative; }
.step-modern__connector { display: none; }
.step-modern__num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2px;
  color: var(--blue); opacity: 0.7; margin-bottom: 12px;
  background: var(--bg); display: inline-block; padding: 0 8px;
  position: relative; z-index: 1;
}
.step-modern__content {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.step-modern:hover .step-modern__content {
  border-color: rgba(37,99,235,0.25);
  box-shadow: var(--shadow-md);
}
.step-modern__icon { font-size: 2rem; margin-bottom: 12px; }
.step-modern__title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step-modern__desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

/* ── Report Preview ──────────────────────────────────── */
.report-preview-section {
  padding: 90px 0; border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(37,99,235,0.02), transparent);
  position: relative; z-index: 1;
}
.report-preview__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.report-features {
  list-style: none; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.report-features li {
  font-size: 0.88rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 10px;
}
.report-mock-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.report-mock-card__header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg3);
}
.report-mock-score {
  padding: 24px 20px; display: flex; gap: 20px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.mock-score-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(220,38,38,0.08); flex-shrink: 0;
  background: var(--bg2);
}
.mock-score-num { font-family: var(--font-mono); font-size: 1.6rem; color: var(--red); line-height: 1; font-weight: 700; }
.mock-score-denom { font-size: 0.65rem; color: var(--text-dim); font-family: var(--font-mono); }
.report-mock-items { padding: 12px 20px; display: flex; flex-direction: column; gap: 8px; }
.report-mock-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px; border-radius: 8px; font-size: 0.8rem;
}
.report-mock-item--red { background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.14); }
.report-mock-item--yellow { background: rgba(217,119,6,0.05); border: 1px solid rgba(217,119,6,0.14); }
.report-mock-item strong { display: block; color: var(--text); font-size: 0.82rem; margin-bottom: 2px; }
.report-mock-item p { color: var(--text-dim); font-size: 0.75rem; margin: 0; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { padding: 90px 0; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text); text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow { color: var(--blue); font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s;
  font-size: 0.88rem; color: var(--text-dim); line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(5,150,105,0.03));
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.cta-section__inner { max-width: 640px; margin: 0 auto; }
.cta-section__label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 3px;
  color: var(--blue); margin-bottom: 20px;
  text-transform: uppercase;
}
.cta-section__title {
  font-family: var(--font-title); font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 700; color: var(--text); margin-bottom: 16px;
  line-height: 1.2; letter-spacing: -0.4px;
}
.cta-section__sub { font-size: 1rem; color: var(--text-dim); margin-bottom: 36px; line-height: 1.7; }
.cta-section__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section__fine { font-size: 0.72rem; color: var(--text-light); margin-top: 20px; font-family: var(--font-mono); }

/* ── Hamburger Menu ──────────────────────────────────── */
.navbar__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: 1px solid var(--border-mid);
  border-radius: 6px; cursor: pointer; padding: 7px 8px;
  width: 38px; height: 36px;
}
.navbar__burger span {
  display: block; width: 20px; height: 2px;
  background: var(--text-dim); border-radius: 2px;
  transition: all 0.25s;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
════════════════════════════════════════════════════════ */

/* ── Tablet (max 1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero--split .container { grid-template-columns: 1fr !important; gap: 32px; text-align: center; min-height: auto; padding: 70px 20px 50px; }
  .hero__content { text-align: center; }
  .hero__ctas { justify-content: center; flex-wrap: wrap; }
  .hero__ctas .btn { padding: 12px 24px !important; font-size: 0.85rem !important; }
  .hero__subtitle { max-width: 100%; }
  .hero__badges { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .platforms-grid { grid-template-columns: repeat(3,1fr); }
  .steps-modern { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .steps-modern::before { display: none; }
  .report-preview__inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-banner__divider { display: none; }
  .stats-banner__grid { gap: 0; }
}

/* ── Mobile (max 768px) ──────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__burger { display: flex; }
  .navbar__nav {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(248,250,252,0.98); backdrop-filter: blur(16px);
    flex-direction: column; gap: 0; padding: 12px 0;
    border-bottom: 1px solid var(--border); z-index: 200;
    box-shadow: var(--shadow-lg);
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav li { padding: 0; }
  .navbar__nav a {
    display: block; padding: 14px 24px;
    font-size: 0.9rem; border-bottom: 1px solid var(--border);
  }
  .navbar__nav li:last-child a { margin: 12px 16px 4px; padding: 12px 16px; border-bottom: none; }

  /* Live bar — mai compact */
  .live-bar { gap: 16px; padding: 6px 16px; font-size: 0.72rem; justify-content: center; }

  /* Hero */
  .hero--split { min-height: auto !important; }
  .hero--split .container { padding: 48px 16px 32px; grid-template-columns: 1fr !important; gap: 0; }
  .hero__content { text-align: center; }
  .hero__visual { display: none; } /* ascunde terminalul pe mobil — ocupă prea mult spațiu */
  .hero__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero__subtitle { font-size: 0.9rem; margin-bottom: 20px; }
  .hero__ctas { flex-direction: column !important; align-items: stretch; justify-content: center; gap: 8px; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .hero__badges { justify-content: center; flex-wrap: wrap; gap: 6px; }
  .hero__eyebrow { font-size: 0.65rem; }

  /* Stats */
  .stats-banner { padding: 16px 0; }
  .stats-banner__grid {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 0;
    border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  }
  .stats-banner__item {
    padding: 18px 12px; margin: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-banner__item:nth-child(even)       { border-right: none; }
  .stats-banner__item:nth-last-child(-n+2)  { border-bottom: none; }
  .stats-banner__num { font-size: 1.7rem !important; }
  .stats-banner__label { font-size: 0.72rem !important; }
  .stats-banner__divider { display: none; }

  /* Features */
  .features-section { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr; margin-top: 28px; gap: 12px; }
  .feature-card { padding: 22px 20px; }
  .feature-card__icon { font-size: 1.8rem; margin-bottom: 12px; }

  /* Platforms */
  .platforms-section { padding: 44px 0; }
  .platforms-grid { grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 28px; }
  .platform-pill { padding: 12px 12px; gap: 10px; }
  .platform-pill__name { font-size: 0.82rem; }
  .platform-pill__badge { width: 32px; height: 32px; }

  /* How section */
  .how-section { padding: 56px 0; }
  .steps-modern { grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 28px; }
  .steps-modern::before { display: none; }
  .step-modern { padding: 0; }
  .step-modern__content { padding: 18px 14px; }
  .step-modern__icon { font-size: 1.6rem; margin-bottom: 8px; }
  .step-modern__title { font-size: 0.85rem; }
  .step-modern__desc { font-size: 0.75rem; }

  /* Report preview */
  .report-preview-section { padding: 56px 0; }
  .report-preview__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Services */
  .services { padding: 56px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }

  /* Social proof */
  .social-proof { padding: 44px 0; }

  /* FAQ */
  .faq-section { padding: 56px 0; }
  .faq-list { margin-top: 32px; }
  .faq-q { font-size: 0.9rem; padding: 16px 18px; }
  .faq-item.open .faq-a { max-height: 400px; } /* mai mult spațiu pentru răspunsuri lungi */
  .faq-a { font-size: 0.85rem; }

  /* Section typography */
  .section-title { font-size: clamp(1.4rem, 5vw, 1.9rem); margin-bottom: 8px; }
  .section-sub { font-size: 0.88rem; margin-bottom: 32px; }
  .section-label { font-size: 0.6rem; letter-spacing: 2px; margin-bottom: 10px; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-section__title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cta-section__sub { font-size: 0.9rem; margin-bottom: 28px; }
  .cta-section__btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-section__btns .btn { justify-content: center; width: 100%; }
}

/* ── Small phones (max 480px) ─────────────────────────── */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 14px; }

  /* Live bar: ascunde al doilea item pe ecrane mici */
  .live-bar__item:nth-child(2) { display: none; }
  .live-bar { gap: 10px; }

  /* Hero */
  .hero--split .container { padding: 40px 14px 28px; }
  .hero__title { font-size: clamp(1.35rem, 7vw, 1.7rem); line-height: 1.25; }
  .hero__subtitle { font-size: 0.85rem; line-height: 1.65; }

  /* Hero search widget */
  .hero-search__tab { padding: 9px 10px; font-size: 0.72rem; gap: 5px; }
  .hero-search__input-row { padding: 10px 10px 10px 14px; gap: 6px; }
  .hero-search__field { font-size: 0.92rem; }
  .hero-search__btn { padding: 10px 12px; font-size: 0.8rem; }
  .hero-search__footer { padding: 8px 14px; font-size: 0.66rem; gap: 6px; }

  /* Stats */
  .stats-banner__num { font-size: 1.4rem !important; }
  .stats-banner__label { font-size: 0.65rem !important; }

  /* How — 1 coloană pe ecrane mici */
  .steps-modern { grid-template-columns: 1fr; }

  /* Platform pills — 1 coloană */
  .platforms-grid { grid-template-columns: 1fr; gap: 8px; }

  /* FAQ */
  .faq-q { font-size: 0.85rem; padding: 14px 16px; }

  /* Buttons */
  .btn-lg { padding: 14px 20px !important; font-size: 0.9rem !important; }
}
