/* ═══════════════════════════════════════════════════════
   SIMULAI — DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --brand-primary: #7c3aed;
  --brand-secondary: #4f46e5;
  --brand-accent: #06b6d4;
  --brand-glow: rgba(124, 58, 237, 0.35);

  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;

  --bg-base: #040408;
  --bg-surface: #0c0c14;
  --bg-elevated: #12121e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);

  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(124, 58, 237, 0.4);

  --text-primary: #f0f0ff;
  --text-secondary: rgba(240, 240, 255, 0.65);
  --text-muted: rgba(240, 240, 255, 0.55);

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Spacing */
  --max-width: 1180px;
  --section-py: 100px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 24px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);
  --shadow-primary: 0 8px 32px rgba(124, 58, 237, 0.4);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Top Neon Bloom Glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-accent) 20%, 
    var(--brand-secondary) 50%, 
    var(--brand-accent) 80%, 
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6), 0 0 40px rgba(79, 70, 229, 0.4);
  z-index: 9999;
  filter: blur(0.5px);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CONTAINER ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}
.section-header.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
.section-header.centered .section-sub { text-align: center; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55);
}
.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
.btn-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 60%, var(--brand-accent) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.5);
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-hero:hover::before { opacity: 1; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(124,58,237,0.6); }
.btn-outline-hero {
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-md);
}
.btn-outline-hero:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.btn-plan {
  width: 100%;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
}
.btn-plan:hover {
  border-color: var(--brand-primary);
  background: rgba(124, 58, 237, 0.08);
}
.btn-plan-primary {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  box-shadow: var(--shadow-primary);
}
.btn-plan-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.55);
}
.btn-white {
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
}
.btn-white:hover { background: #f0f0ff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { font-size: 16px; padding: 16px 32px; }
.btn-arrow { margin-left: 4px; transition: transform 0.2s; }
.btn-hero:hover .btn-arrow { transform: translateX(4px); }

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(4, 4, 8, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
.logo-icon {
  font-size: 22px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%);
  top: -100px; left: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 70%);
  bottom: 0; right: -50px;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.35);
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.badge-dot { display: none; }
.quiz-step {
  text-align: left;
}

.quiz-success-title {
  color: #10b981;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quiz-success-text {
  color: var(--text-secondary);
  font-size: 15px;
}

@keyframes spin {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #f59e0b 60%, #ef4444 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: -6px auto -24px;
  padding: 0 10px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.proof-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.035);
  border-color: rgba(124,58,237,0.22);
}
.proof-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.35;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── HERO FORM CARD (Premium Redesign) ────────────────── */
.hero-form-card {
  margin-top: 48px;
  text-align: left;
  background: rgba(12, 12, 20, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 80px rgba(124, 58, 237, 0.06);
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-accent), transparent);
  opacity: 0.6;
}

/* URL Input (Search-bar style) */
.hero-url-group {
  position: relative;
  margin-bottom: 16px;
}
.hero-url-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-accent);
  pointer-events: none;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.hero-url-input {
  width: 100%;
  padding: 16px 20px 16px 46px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.hero-url-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}
.hero-url-input:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.hero-url-input:focus {
  border-color: var(--brand-primary);
  background: rgba(124, 58, 237, 0.06);
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.12),
    0 0 20px rgba(124, 58, 237, 0.08);
}

/* Selects Row */
.hero-selects-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-select-wrap {
  position: relative;
}
.hero-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.25s ease;
}
.hero-select:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.hero-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.hero-select option {
  background: var(--bg-elevated);
  color: var(--text-primary);
  padding: 8px;
}
.hero-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.hero-select-wrap:hover .hero-select-arrow {
  color: var(--brand-accent);
}

/* Hero Submit Button */
.hero-submit-btn {
  position: relative;
  justify-content: center;
  gap: 10px;
}
.hero-btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  opacity: 0;
  animation: heroButtonPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroButtonPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(1.02); }
}

.diagnostic-delivery-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.delivery-step {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 12px;
  min-height: 58px;
  border-radius: 14px;
  color: rgba(240, 240, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-step-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--brand-accent);
  letter-spacing: 0.08em;
}

.trial-delivery-note {
  margin-top: 18px;
  margin-bottom: 4px;
}

/* Trust Signals */
.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-trust-check {
  color: var(--brand-accent);
  font-weight: 700;
  margin-right: 4px;
}

/* Form Disclaimer */
.hero-form-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-form-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }
  .hero-selects-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-trust-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .diagnostic-delivery-note {
    grid-template-columns: 1fr;
  }
}

/* ─── PROBLEM ─────────────────────────────────────────── */
.problem {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.pi-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.pi-icon.danger {
  background: rgba(239,68,68,0.12);
  color: var(--danger);
  border: 1px solid rgba(239,68,68,0.2);
}
.loss-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.loss-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--danger), var(--warning), var(--brand-primary));
}
.lc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.lc-icon { font-size: 18px; color: var(--warning); }
.lc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.lc-metric:last-of-type { border-bottom: none; }
.lc-label { font-size: 13px; color: var(--text-muted); }
.lc-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.lc-value.loss { color: var(--danger); }
.lc-value.gain { color: var(--success); }
.lc-value.neutral { color: var(--text-primary); }
.lc-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  margin: 24px 0 12px;
  overflow: hidden;
}
.lc-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--danger), var(--warning));
  border-radius: 100px;
  animation: barFill 1.5s ease 0.5s forwards;
}
@keyframes barFill {
  to { width: 65%; }
}
.lc-caption {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how {
  padding: var(--section-py) 0;
  background: var(--bg-base);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.step-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(124,58,237,0.15);
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── CASES ────────────────────────────────────────────── */
.cases {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
}
.case-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.case-card.featured {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.06);
  grid-column: span 1;
}
.case-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.case-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.case-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cr-label { font-size: 12px; color: var(--text-muted); }
.cr-value { font-size: 14px; font-weight: 700; color: var(--success); }

/* ─── CASE STUDY CARD ─────────────────────────────────── */
.case-study-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.03) inset;
  margin-bottom: 60px;
}
.cs-header {
  padding: 24px 36px;
  background: rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-badge {
  font-size: 13px;
  font-weight: 700;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
}
.cs-ticket {
  font-size: 13px;
  color: var(--text-muted);
}
.cs-steps {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cs-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.cs-step:not(.last)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.cs-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.cs-step-icon.danger {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
.cs-step-icon.warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
}
.cs-step-icon.neutral {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}
.cs-step-icon.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
}
.cs-step-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
}
.cs-step-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.cs-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}
.cs-alert {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 3px solid #ef4444;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.cs-alert strong { color: #f87171; }
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.cs-metric {
  text-align: center;
  padding: 20px 16px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
}
.cs-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  margin-bottom: 6px;
}
.cs-metric-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.cs-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 36px;
  background: rgba(124, 58, 237, 0.04);
}
.cs-quote p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}
.cs-quote cite {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 680px) {
  .cs-header { flex-direction: column; padding: 20px 24px; }
  .cs-steps { padding: 24px 20px; }
  .cs-step { grid-template-columns: 40px 1fr; gap: 14px; }
  .cs-step-icon { width: 40px; height: 40px; font-size: 15px; }
  .cs-metrics { grid-template-columns: 1fr; gap: 12px; }
  .cs-quote { padding: 24px 20px; }
}

/* ─── PRICING ──────────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  background: var(--bg-base);
  position: relative;
}
.billing-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-top: 24px;
}
.bt-btn {
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bt-btn.active {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}
.discount-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(16,185,129,0.12);
  color: var(--success);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 2px 7px;
  border-radius: 100px;
}
/* Pricing Anchor Block (CPA Headline) */
.pricing-anchor-block {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-anchor-block .section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 12px;
}
.pricing-anchor-sub {
  max-width: 620px;
  margin: 0 auto 24px !important;
}
.billing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-top: 8px;
}

/* Plan ROI anchor tag */
.plan-roi-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 7px 12px;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.01em;
}
.plan-roi-tag.pro {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.25);
  color: rgba(167,139,250,0.9);
}

/* Anchor note below features */
.plan-anchor-note {
  font-size: 11.5px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}
.plan-anchor-note.pro {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.18);
  color: rgba(196,181,253,0.8);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Guarantee Strip (Risk Reversal) */
.guarantee-strip {
  margin-top: 16px;
  margin-bottom: 16px;
}
.guarantee-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(16,185,129,0.07), rgba(6,182,212,0.05));
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 20px;
  padding: 28px 36px;
  flex-wrap: wrap;
}
.gs-shield {
  font-size: 3rem;
  flex-shrink: 0;
}
.gs-content {
  flex: 1;
  min-width: 200px;
}
.gs-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 8px;
}
.gs-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}
.gs-text strong {
  color: rgba(255,255,255,0.9);
}
.gs-link {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  border: 1px solid rgba(16,185,129,0.35);
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.gs-link:hover {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.6);
}
@media (max-width: 700px) {
  .guarantee-strip-inner { flex-direction: column; text-align: center; gap: 16px; }
  .gs-link { width: 100%; text-align: center; display: block; }
}
.plan-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan-card:hover {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.plan-card.popular {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(160deg, rgba(124,58,237,0.08), var(--bg-elevated));
  box-shadow: 0 0 0 1px rgba(124,58,237,0.2), 0 20px 60px rgba(124,58,237,0.15);
}
.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.plan-header { margin-bottom: 32px; }
.plan-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 20px;
}
.plan-badge.starter { background: rgba(16,185,129,0.12); color: var(--success); }
.plan-badge.pro { background: rgba(124,58,237,0.15); color: var(--brand-primary); }
.plan-badge.business { background: rgba(239,68,68,0.12); color: #f87171; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}
.price-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.price-period {
  font-size: 15px;
  color: var(--text-muted);
}
.plan-audience {
  font-size: 13px;
  color: var(--text-muted);
}
.plan-features { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  margin-bottom: 24px; 
  flex-grow: 1; 
}
.plan-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.plan-notes-area {
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}
.plan-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pf-item.muted { opacity: 0.45; }
.pf-icon {
  font-size: 14px;
  color: var(--success);
  width: 18px;
  flex-shrink: 0;
}
.pf-icon.muted { color: var(--text-muted); }

/* USAGE */
.usage-section {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.us-header {
  margin-bottom: 32px;
}
.us-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 10px;
}
.us-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.us-header p { font-size: 14px; color: var(--text-secondary); }
.usage-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.usage-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 200px;
  transition: all 0.2s ease;
}
.usage-item:hover {
  border-color: rgba(6,182,212,0.3);
  background: rgba(6,182,212,0.05);
}
.ui-icon { font-size: 28px; }
.ui-price {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
}
.ui-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }

/* ─── ENTERPRISE ───────────────────────────────────────── */
.enterprise {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
}
.enterprise-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(79,70,229,0.08), rgba(6,182,212,0.05));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ec-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
  bottom: -200px; right: -100px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.ec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.ec-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.ec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.ec-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.ec-list li span {
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}
.ec-pricing-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}
.ecpb-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}
.ecpb-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.ecpb-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}
.ecpb-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--text-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ecpb-period {
  font-size: 16px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 28px;
}
.ecpb-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.ecpb-vb-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ecpb-vb p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}
.ecpb-example {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px !important;
}
.ecpb-example strong { color: var(--success); }

/* ─── TRIAL CTA ─────────────────────────────────────────── */
.trial-cta {
  padding: var(--section-py) 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.tc-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 60px rgba(79, 70, 229, 0.1);
  border-top: 1px solid rgba(6, 182, 212, 0.4);
}
.tc-orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.tc-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.tc-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tc-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}
.tc-form { width: 100%; }
.tf-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tf-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
}
.tf-input:focus {
  border-color: var(--brand-primary);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.tf-input::placeholder { color: var(--text-muted); }
.tf-select { color: var(--text-secondary); cursor: pointer; }
option { background: #141420; }
.tf-legal {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.tf-legal a { color: var(--brand-primary); }
.tf-legal a:hover { text-decoration: underline; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.fs-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
}
.fs-link:hover {
  border-color: var(--brand-primary);
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 60px; }
  .enterprise-card { grid-template-columns: 1fr; padding: 40px; }
  .ec-right { display: flex; justify-content: center; }
  .ec-pricing-box { max-width: 360px; }
}
@media (max-width: 768px) {
  .learning-hero {
    flex-direction: column;
  }

  .learning-hero .btn {
    width: 100%;
    justify-content: center;
  }

  .learning-stats {
    grid-template-columns: 1fr;
  }

  .learning-panel {
    padding: 22px;
  }

  :root { --section-py: 72px; }
  .nav-links { display: none; }
  .hero-title { font-size: clamp(30px, 8vw, 48px); }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .usage-grid { flex-direction: column; }
  .enterprise-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-proof {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: -8px;
    margin-bottom: -24px;
    padding: 0;
  }
  .proof-item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
  }
  .proof-label { margin-top: 0; }
  .proof-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.roi-note {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* ─── URGÊNCIA BANNER ───────────────────────────── */
.urgency-banner {
  background: rgba(251, 191, 36, 0.05);
  border-top: 1px solid rgba(251, 191, 36, 0.15);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
  padding: 40px 0;
  text-align: center;
}

.urgency-tag {
  color: #fbbf24;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.urgency-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}

.urgency-text {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

/* ─── FAQ / ENTERPRISE CARDS ─────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.enterprise-card-centered {
  display: block;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.ec-orb-centered {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.5;
}

/* ─── TRIAL FORM ────────────────────────────────── */
.sim-preview-card {
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.sim-preview-tag {
  color: rgba(240, 240, 255, 0.5);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.sim-preview-url {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
}

.sim-preview-loss-value {
  color: #f87171;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 4px;
}

.sim-preview-desc {
  color: rgba(240, 240, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.trial-lgpd-container {
  margin-top: 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.trial-lgpd-checkbox {
  margin-top: 4px;
  accent-color: var(--brand-primary);
  transform: scale(1.1);
  cursor: pointer;
}

.trial-lgpd-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.trial-lgpd-link {
  color: var(--brand-accent);
  text-decoration: underline;
}

/* ─── DASHBOARD & KANBAN ─────────────────────────────── */
.dashboard-page {
  background: var(--bg-base);
  padding-top: 130px;
  min-height: 100vh;
  padding-bottom: 80px;
}

.dashboard-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.agent-engine-widget {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 32px;
  box-shadow: var(--shadow-glow);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.agent-engine-widget::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  z-index: 0;
}

.ae-content { position: relative; z-index: 1; display: flex; gap: 32px; width: 100%; }

.ae-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ae-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.ae-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #c4b5fd;
  text-shadow: 0 0 20px rgba(196, 181, 253, 0.3);
}

.ae-chart-mock {
  flex: 1;
  height: 48px;
  background-image: linear-gradient(90deg, transparent 0%, var(--brand-accent) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  opacity: 0.2;
  align-self: center;
  border-radius: 4px;
}

.learning-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.learning-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(6, 182, 212, 0.12), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(124, 58, 237, 0.18), transparent 38%);
}

.learning-hero,
.learning-stats,
.learning-insights-list {
  position: relative;
  z-index: 1;
}

.learning-hero {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.learning-sub {
  max-width: 760px;
  margin-top: 12px;
}

.learning-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.learning-stat {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.learning-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.learning-stat strong {
  font-family: var(--font-display);
  font-size: 22px;
}

.learning-insights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.learning-insight-card,
.learning-empty-state {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.learning-insight-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.learning-severity {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learning-severity-high {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.learning-severity-medium {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.learning-severity-low {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.learning-confidence {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.learning-insight-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.learning-insight-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.learning-recommendation {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.learning-recommendation span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #67e8f9;
  margin-bottom: 6px;
}

.learning-recommendation strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.55;
}

.learning-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.learning-evidence span {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.16);
}

.social-proof-review {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.12), transparent 36%),
    rgba(255,255,255,0.035);
}

.social-proof-review-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.social-proof-review-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 8px 0 6px;
}

.social-proof-review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.social-proof-review-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.social-proof-review-topline,
.social-proof-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.social-proof-review-card blockquote {
  margin: 16px 0 12px;
  color: var(--text-primary);
  line-height: 1.55;
  font-weight: 700;
}

.social-proof-review-actions {
  justify-content: flex-start;
  margin-top: 14px;
}

.social-proof-review-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(200px, 1fr));
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 40px;
}

.kanban-column {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  min-height: 700px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kc-header {
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kc-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kc-count {
  font-size: 10px;
  background: rgba(255,255,255,0.05);
  padding: 2px 10px;
  border-radius: 100px;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.lead-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: grab;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.lead-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.lc-email {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  word-break: break-all;
  color: var(--text-primary);
}

.lc-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.lc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tag-positive { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.tag-intent { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.tag-source { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }

.lc-feedback {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 3px solid var(--brand-primary);
  line-height: 1.5;
}

.lc-draft-box {
  background: rgba(251,191,36,0.03);
  border: 1px dashed rgba(251,191,36,0.25);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.lc-draft-label {
  font-size: 9px;
  font-weight: 800;
  color: #fbbf24;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lc-draft-text {
  font-size: 11px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
}

.lc-actions {
  display: flex;
  gap: 8px;
}

.btn-mini {
  flex: 1;
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  transition: all 0.2s;
  text-align: center;
}

.btn-mini:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.btn-mini.btn-success:hover {
  background: var(--success);
  border-color: var(--success);
}

/* ─── SIMULATION PLAYGROUND ────────────────────────────── */
.playground-page {
  background: var(--bg-base);
  padding-top: 130px;
  min-height: 100vh;
}

.playground-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}

.pg-sidebar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 130px;
}

.pg-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.control-group {
  margin-bottom: 24px;
}

.control-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.control-value {
  color: var(--brand-accent);
  font-family: var(--font-display);
}

.pg-slider {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.pg-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  background: var(--brand-primary);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
  transition: transform 0.1s;
}

.pg-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.pg-roi-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.roi-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform 0.2s;
}

.roi-item:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.roi-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.roi-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.pg-chart-container {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 400px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.chart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.chart-icon { font-size: 48px; opacity: 0.3; }
.chart-empty-state h3 { font-size: 18px; color: var(--text-secondary); }
.chart-empty-state p { font-size: 14px; color: var(--text-muted); max-width: 300px; }

.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.chart-header h4 { font-size: 15px; color: var(--text-secondary); font-weight: 700; }

.svg-wrapper {
  flex: 1;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand-accent), rgba(6, 182, 212, 0.1));
  border-radius: 4px 4px 0 0;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.bar:hover { filter: brightness(1.2); }

.chart-legend { display: flex; gap: 24px; margin-top: 24px; justify-content: center; }
.legend-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.p10 { background: #f87171; }
.dot.p90 { background: #10b981; }
.dot.median { background: var(--brand-accent); }

.agent-feedback-card {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.af-header { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.af-avatar { font-size: 32px; width: 48px; height: 48px; background: rgba(124,58,237,0.1); display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.af-name { display: block; font-size: 14px; font-weight: 700; }
.af-status { font-size: 11px; color: var(--brand-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.af-body { font-size: 14px; color: var(--text-secondary); line-height: 1.6; font-style: italic; }

.plan-select-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.active-nav { color: var(--brand-accent) !important; font-weight: 700; }

/* ─── HISTORY & CHAT ─────────────────────────────── */
.pg-history {
  grid-column: 1;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 16px;
  padding-right: 4px;
}

.history-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.history-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--brand-accent);
}

.hi-name { font-size: 13px; font-weight: 700; display: block; margin-bottom: 4px; }
.hi-meta { font-size: 10px; color: var(--text-muted); }

.af-chat {
  margin-top: 24px;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding-top: 20px;
}

.chat-messages {
  height: 150px;
  overflow-y: auto;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
}

.chat-msg {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
  line-height: 1.4;
}

.chat-msg.agent {
  align-self: flex-start;
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-secondary);
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--brand-primary);
  color: #fff;
  border-bottom-right-radius: 2px;
}

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

.chat-input-row input {
  flex: 1;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
}

.chat-input-row button {
  background: var(--brand-primary);
  border: none;
  color: #fff;
  width: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.chat-input-row button:hover { opacity: 0.8; }

.empty-msg { font-size: 12px; color: var(--text-muted); font-style: italic; text-align: center; }

/* Comparison Overlap Style */
.bar.compare {
  background: rgba(255,255,255,0.1) !important;
  border: 1px dashed rgba(255,255,255,0.3);
  position: absolute;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── AUTH & BILLING HARDENING UI ────────────────────────── */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1), transparent 80%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    animation: authFadeUp 0.6s ease both;
}

@keyframes authFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}
.logo-text span {
    color: var(--brand-accent);
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.auth-form {
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #fff;
    transition: all 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.08);
}

.auth-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
}
.auth-message.error { background: rgba(239, 68, 68, 0.1); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.2); }
.auth-message.success { background: rgba(16, 185, 129, 0.1); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.2); }
.auth-message.hide { display: none; }

.auth-footer {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}
.auth-footer a {
    color: var(--brand-accent);
    font-weight: 600;
}

/* DASHBOARD USAGE GRID */
.usage-stats-grid {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    align-items: center;
}

.usage-item {
    min-width: 180px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.progress-bg {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--brand-primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.btn-tiny {
    font-size: 9px;
    padding: 2px 8px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-block { width: 100%; justify-content: center; padding: 14px; }

/* PRICING GRID OVERRIDE */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured { border-color: var(--brand-primary); box-shadow: 0 0 40px rgba(124, 58, 237, 0.15); }

.price { font-size: 40px; font-weight: 800; margin: 20px 0; }
.price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }

.hot-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
}

.plan-features {
    text-align: left;
    margin: 32px 0;
    font-size: 14px;
    color: var(--text-secondary);
}
.plan-features li { margin-bottom: 12px; list-style: none; }

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
    padding: 40px 0;
    background: rgba(4, 4, 8, 0.5);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.logo-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-cloud:hover {
    opacity: 0.9;
}

.logo-item {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-item span {
    color: var(--brand-accent);
}

/* ─── UTILS & LINT FIXES ──────────────────────────── */
.pricing-header-spacing { margin-top: 64px; }
.pricing-title-sm { font-size: 28px; }
.case-value-accent { color: var(--brand-accent); }
.case-value-primary { color: var(--brand-primary); font-size: 14px; }
.case-value-success { color: #10b981; font-size: 14px; }
.case-card-span-3 { grid-column: span 3; }
.case-testimonial-wrap { padding: 24px; text-align: center; }
.case-testimonial-text { font-size: 18px; font-style: italic; color: var(--text-secondary); }
.case-testimonial-author { display: block; margin-top: 12px; font-weight: 700; color: var(--text-primary); }
.pricing-roi-text { font-size: 18px; color: var(--text-primary); margin-top: 16px; }
.pricing-roi-accent { font-size: 16px; color: var(--brand-accent); font-weight: 700; margin-top: 8px; }

/* Dashboard / Playground / Billing specific classes */
.card-header-flex { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.card-header-icon { font-size: 24px; }
.card-header-title { font-size: 18px; font-weight: 700; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mt-32 { margin-top: 32px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.ml-12 { margin-left: 12px; }
.fs-18 { font-size: 18px; }
.fs-16 { font-size: 16px; }
.fs-14 { font-size: 14px; }
.fs-13 { font-size: 13px; }
.fw-700 { font-weight: 700; }
.italic { font-style: italic; }
.display-block { display: block; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.fs-32 { font-size: 32px; }
.flex-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.ae-learning-badge { align-self: center; text-align: right; }
.ae-learning-badge .tag { background: rgba(124, 58, 237, 0.2); }
.display-none { display: none; }
.af-header-info { flex: 1; }
.mt-80 { margin-top: 80px; }

/* ─── REVENUE MATRIX ────────────────────────────────── */
.revenue-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 24px;
    margin-bottom: 32px;
}

.rm-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rm-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.rm-value {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-display);
}

.rm-value.danger { color: #f43f5e; }
.rm-value.success { color: #10b981; }

/* ─── DASHBOARD TABS ────────────────────────────────── */
.dashboard-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: var(--text-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ─── INTEGRATIONS UI ────────────────────────────────── */
.integrations-container {
    padding: 40px;
}

.webhook-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.webhook-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

/* ─── MODAL SYSTEM ──────────────────────────────────── */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 40px;
    position: relative;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
}

.display-none { display: none !important; }

/* ══════════════════════════════════════════
   AUTO-EXTRACTED INLINE STYLES
   ══════════════════════════════════════════ */
.style-129d41 { max-width: 800px; margin: 0 auto 32px auto; }
.style-6060d3 { font-size: 24px; color: var(--text-light); margin-bottom: 16px; }
.style-ba6f77 { color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.style-fec8a2 { background: rgba(var(--danger-rgb), 0.1); border: 1px solid rgba(var(--danger-rgb), 0.3); padding: 16px; border-radius: 12px; margin-bottom: 24px; }
.style-83ba46 { color: var(--danger); font-weight: 600; text-align: center; }
.style-565aa1 { color: var(--text-muted); font-size: 14px; text-align: center; margin-bottom: 24px; }
.style-95f7f0 { justify-content: center; }
.style-c7c9ce { grid-template-columns: repeat(4, 1fr); }
.style-09c03d { text-align: center; margin-top: 40px; }
.style-223555 { padding: 16px 32px; font-size: 16px; }
.style-5fd6ef { color:var(--brand-accent);font-size:13px;font-weight:600; }
.style-2f7b1f { color:var(--success);font-size:13px;font-weight:600; }
.style-bad75b { margin-top: 40px; }
.style-4ff22c { font-size: 20px; color: var(--text-light); font-weight: 500; }
.style-0069c4 { background: var(--bg-card); padding: 80px 0; }
.style-3d7b39 { grid-template-columns: repeat(3, 1fr); }
.style-c2cf8a { border-left: 3px solid var(--danger); }
.style-0dbc0f { opacity: 0.5; }
.style-b06cb1 { color:var(--danger); }
.style-6430ad { border-left: 3px solid var(--success); }
.style-82531c { color:var(--success); }
.style-79e1c3 { margin-top: 24px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #fff; }
.style-619ab0 { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%); }
.style-0aacf8 { margin-bottom: 80px; }
.style-9cda26 { margin: 0 auto 32px auto; max-width: 600px; }
.style-6feada { list-style: none; padding: 0; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.style-7900f0 { color:var(--brand-accent); }
.style-53b84b { align-items: start; }
.style-5135f2 { background: var(--bg-card); border-color: rgba(255,255,255,0.05); }
.style-cc3a92 { font-size: 20px; color: var(--text-light); margin-bottom: 24px; }
.style-dc2cb2 { margin-bottom: 24px; }
.style-d1e261 { color: var(--danger); font-weight: bold; margin-bottom: 8px; display: block; }
.style-85d7f8 { margin:0; gap: 8px; }
.style-2eeafc { font-size: 14px; display:flex; gap:8px; }
.style-33cc0e { color: var(--success); font-weight: bold; margin-bottom: 8px; display: block; }
.style-1b9f92 { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.style-b09634 { font-weight: 600; color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.style-a1bd85 { padding-top: 40px; }
.style-f933ea { padding: 100px 0; }
.style-a81293 { margin-top: 16px; }
.style-cc1571 { background: rgba(var(--brand-accent-rgb), 0.1); padding: 16px; border-left: 3px solid var(--brand-accent); margin-top: 24px; }
.style-75f2a9 { font-size: 14px; font-weight: 500; }
.style-fed0e8 { padding: 32px; }
.style-e53e94 { font-size: 16px; color: #fff; margin-bottom: 8px; }
.style-043849 { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.style-7a1ce1 { margin-top: 32px; }
.style-2510ab { height: 48px; }
.style-2535fb { color:var(--brand-accent);border-color:rgba(6,182,212,0.3);background:rgba(6,182,212,0.05); }
.style-438935 { color:#fbbf24;border-color:rgba(251,191,36,0.3);background:rgba(251,191,36,0.05); }
.style-12a642 { max-width: 900px; margin: 0 auto; }
.style-1e109a { font-size: 36px; margin-bottom: 24px; }
.style-138f8f { margin-bottom: 40px; }
.style-3bad26 { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); padding: 32px; border-radius: 16px; }
.style-b78cf2 { font-size: 20px; color: #fff; margin-bottom: 24px; text-align: center; }
.style-42f370 { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
.style-fbba26 { font-size: 16px; padding: 18px; }
.style-687b8f { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.style-505bad { padding: 24px; font-size: 18px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.style-8912db { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 16px; }

.input-error { border: 2px solid var(--danger) !important; outline: none; background: rgba(var(--danger-rgb), 0.05) !important; animation: shake 0.4s ease-in-out; }
.form-error-message {
  margin-top: 14px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

/* ─── PUBLIC DOSSIER & X-RAY SYSTEM (PHASE 1.5) ────── */
.dossier-report {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dossier-finding {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.dossier-finding:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateX(4px);
}

.df-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-accent);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.df-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-display);
}

.df-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.df-cell {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.df-cell label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.df-cell.pain {
    background: rgba(239, 68, 68, 0.05);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.df-cell.pain p {
    color: #fca5a5;
    font-weight: 600;
}

.df-fix {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: var(--text-secondary);
}

.df-fix strong {
    color: var(--brand-accent);
}

/* X-Ray Styles */
.xray-section {
    margin-top: 0;
}

.xray-title {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.xray-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
}

.xray-screenshot {
    width: 100%;
    height: auto;
    opacity: 0.6;
    filter: grayscale(0.4) contrast(1.1);
}

.xray-spotlight {
    position: absolute;
    border: 2px solid var(--brand-accent);
    box-shadow: 
        0 0 0 9999px rgba(0, 0, 0, 0.75),
        0 0 20px var(--brand-accent),
        inset 0 0 20px var(--brand-accent);
    z-index: 10;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.xray-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Dossier Responsive */
@media (max-width: 768px) {
    .dossier-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    .df-grid {
        grid-template-columns: 1fr;
    }
    
    .sr-inner.dossier-report {
        padding: 24px !important;
    }
    
    .loss-prediction-box div {
        font-size: 32px !important;
    }

    .xray-container {
        margin-top: 20px;
    }
}

/* ─── DIAGNOSTIC UX & PUBLIC VIEW ─── */
.sr-progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin: 24px 0 12px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.sr-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-step-label {
  font-size: 13px !important;
  color: #a78bfa !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 8px;
}

/* Visibility Control: Hide Admin UI in Public View */
body.public-view .admin-only {
  display: none !important;
}
body.public-view .revenue-matrix,
body.public-view .dashboard-tabs,
body.public-view .agent-engine-widget,
body.public-view #kanban-board,
body.public-view #tab-learning,
body.public-view #usage-stats-container {
  display: none !important;
}

/* ─── ANIMATIONS ─── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sr-icon-spin {
  display: inline-block;
  animation: spin 2s linear infinite;
  color: var(--brand-accent, #7c3aed);
}

.spinner-small {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--brand-accent, #7c3aed);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
/* ─── HELPER CLASSES (REPLACING INLINE STYLES) ──────── */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-40 { gap: 40px; }
.gap-80 { gap: 80px; }

.nav-login-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-right: 20px;
  transition: color 0.2s;
}
.nav-login-link:hover { color: var(--text-primary); }

.hero-sub-narrow {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-secondary);
}

.lgpd-group {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
}
.lgpd-group input[type="checkbox"] { margin-top: 3px; }
.lgpd-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}
.lgpd-label a { color: var(--brand-accent); text-decoration: underline; }

.hero-disclaimer {
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
}

.problem-section { padding: 100px 0; background: var(--bg-surface); }
.problem-sub-alt { font-size: 16px; color: var(--text-secondary); margin-bottom: 20px; }
.problem-item-danger { color: var(--danger); }
.problem-success-msg { margin-top: 24px; font-weight: 700; color: var(--success); }

.loss-card-premium {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.delivery-section { padding: 100px 0; background: var(--bg-base); }
.mid-cta-box {
  text-align: center;
  padding: 64px 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
}

.case-study-premium {
  max-width: 800px;
  margin: 48px auto 0;
  background: #0a0a0f;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.report-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 182, 212, 0.12), transparent 32%),
    radial-gradient(circle at 82% 35%, rgba(124, 58, 237, 0.18), transparent 34%),
    linear-gradient(180deg, #05050b 0%, #080811 55%, #040408 100%);
}

.report-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 72%, transparent 100%);
  pointer-events: none;
}

.report-showcase-section .container {
  position: relative;
  z-index: 1;
}

.case-study-premium-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.025) 48%, rgba(6,182,212,0.055)),
    rgba(9, 10, 20, 0.92);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(124, 58, 237, 0.08),
    0 0 80px rgba(79, 70, 229, 0.16);
  position: relative;
  overflow: hidden;
}

.case-study-premium-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 8%, rgba(6, 182, 212, 0.22), transparent 24%),
    radial-gradient(circle at 98% 3%, rgba(124, 58, 237, 0.22), transparent 28%);
  pointer-events: none;
}

.case-study-premium-v2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.72), rgba(124,58,237,0.7), transparent);
}

.case-visual,
.case-content-v2 {
  position: relative;
  z-index: 1;
}

.case-visual {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 16px;
}

.case-visual-frame {
  position: relative;
  min-height: 470px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(6, 8, 18, 0.98)),
    rgba(255,255,255,0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 70px rgba(0,0,0,0.48);
  overflow: hidden;
}

.case-frame-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--text-muted);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: -12px -12px 12px;
  background: rgba(255,255,255,0.035);
}

.case-frame-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.case-frame-bar span:nth-child(1) { background: #ef4444; }
.case-frame-bar span:nth-child(2) { background: #f59e0b; }
.case-frame-bar span:nth-child(3) { background: #10b981; }

.case-frame-bar strong {
  margin-left: 8px;
  color: rgba(240,240,255,0.74);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.case-mockup-img {
  width: 100%;
  height: clamp(420px, 42vw, 600px);
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 20px 55px rgba(0,0,0,0.38);
}

.case-floating-score {
  position: absolute;
  right: 22px;
  bottom: 24px;
  min-width: 128px;
  padding: 14px 16px;
  border: 1px solid rgba(6, 182, 212, 0.45);
  border-radius: 18px;
  background: rgba(5, 8, 18, 0.82);
  box-shadow: 0 16px 42px rgba(6, 182, 212, 0.2);
  backdrop-filter: blur(14px);
}

.case-floating-score span,
.case-floating-score small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-floating-score strong {
  display: block;
  margin: 2px 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.case-floating-score small {
  color: #fca5a5;
  font-weight: 800;
}

.case-visual-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case-visual-proof span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: rgba(240,240,255,0.72);
  font-size: 12px;
  font-weight: 700;
}

.case-content-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 44px);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.026)),
    rgba(4, 5, 12, 0.64);
}

.case-tag-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.28);
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-tag-mini::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.85);
}

.case-title-v2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.case-content-v2 > .text-secondary {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.75;
}

.report-demo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 20px;
}

.report-demo-strip div {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(6, 182, 212, 0.18);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(124, 58, 237, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.report-demo-strip span,
.report-demo-strip strong {
  display: block;
}

.report-demo-strip span {
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-demo-strip strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
}

.case-list-v2 {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.case-item-v2 {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  color: rgba(240,240,255,0.74);
  font-size: 14px;
  line-height: 1.55;
}

.case-item-v2 span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(239,68,68,0.22), rgba(245,158,11,0.2));
  color: #fed7aa;
  font-size: 11px;
  font-weight: 900;
}

.case-item-v2 div {
  min-width: 0;
}

.case-item-v2 strong {
  color: #fff;
}

.case-stats-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.case-stat-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.case-stat-box.danger {
  border-color: rgba(239,68,68,0.22);
  background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(255,255,255,0.025));
}

.case-stat-box.success {
  border-color: rgba(16,185,129,0.24);
  background: linear-gradient(135deg, rgba(16,185,129,0.11), rgba(255,255,255,0.025));
}

.case-stat-box .stat-label {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-stat-box .stat-val {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.case-stat-box .stat-val.danger { color: #fca5a5; }
.case-stat-box .stat-val.success { color: #6ee7b7; }

.case-stat-disclaimer {
  margin: -4px 0 20px;
  color: rgba(240, 240, 255, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.credibility-section {
  padding: 34px 0 88px;
  background:
    radial-gradient(circle at 18% 10%, rgba(6, 182, 212, 0.08), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(124, 58, 237, 0.10), transparent 34%),
    var(--bg-base);
}

.credibility-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 20, 0.82);
  box-shadow: var(--shadow-card);
}

.credibility-copy .section-title {
  font-size: clamp(28px, 3vw, 38px);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credibility-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.credibility-item strong,
.credibility-item span {
  display: block;
}

.credibility-item strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
}

.credibility-item span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.public-social-proof {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.public-social-proof-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.public-social-proof-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.16);
}

.public-social-proof-stars {
  color: #facc15;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.public-social-proof-card blockquote {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.55;
}

.public-social-proof-card span,
.public-social-proof-note {
  color: var(--text-muted);
  font-size: 12px;
}

.public-social-proof-note {
  margin-top: 12px;
}

.method-section {
  padding: 0 0 92px;
  background:
    radial-gradient(circle at 10% 16%, rgba(6, 182, 212, 0.08), transparent 34%),
    radial-gradient(circle at 90% 30%, rgba(124, 58, 237, 0.10), transparent 36%),
    var(--bg-base);
}

.method-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 182, 212, 0.16);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.075), rgba(124, 58, 237, 0.07)),
    rgba(10, 12, 22, 0.82);
  box-shadow: var(--shadow-card);
}

.method-copy .section-title,
.pricing-brief-copy .section-title {
  font-size: clamp(30px, 3.3vw, 44px);
}

.method-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(240, 240, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.method-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
}

.method-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(124, 58, 237, 0.24));
  color: #dbeafe;
  font-size: 11px;
  font-weight: 900;
}

.method-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
}

.method-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.comparison-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.comparison-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
}

.comparison-late::before {
  background: radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.18), transparent 44%);
}

.comparison-early::before {
  background: radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.18), transparent 44%);
}

.comparison-label,
.comparison-card strong,
.comparison-card p,
.comparison-card ul {
  position: relative;
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.comparison-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.comparison-card li {
  color: rgba(240, 240, 255, 0.72);
  font-size: 13px;
  line-height: 1.8;
}

.comparison-card li::before {
  content: '•';
  color: var(--brand-accent);
  margin-right: 8px;
}

.home-pricing-section {
  padding: 0 0 88px;
  background:
    radial-gradient(circle at 22% 20%, rgba(124, 58, 237, 0.12), transparent 32%),
    var(--bg-base);
}

.pricing-brief-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.18);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.045)),
    rgba(12, 12, 20, 0.86);
  box-shadow: var(--shadow-card);
}

.pricing-brief-copy .hero-actions {
  margin-top: 24px;
}

.pricing-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 168px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.pricing-mini-card.featured {
  border-color: rgba(6, 182, 212, 0.42);
  background:
    radial-gradient(circle at 20% 0%, rgba(6, 182, 212, 0.20), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.pricing-mini-card span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-mini-card strong {
  display: block;
  margin: 26px 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-mini-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.case-content-v2 .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

@media (max-width: 1024px) {
  .case-study-premium-v2 {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: auto;
  }

  .case-visual-frame {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .nav {
    right: auto;
    width: 100vw;
    max-width: 100vw;
  }

  .nav-inner {
    max-width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
  }

  .nav-logo {
    flex-shrink: 0;
  }

  .nav-cta {
    min-width: 0;
  }

  .nav-cta .nav-login-link {
    display: none;
  }

  .nav-cta .btn {
    max-width: 172px;
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .report-showcase-section {
    padding: 72px 0;
  }

  .case-study-premium-v2 {
    padding: 10px;
    border-radius: 24px;
    gap: 12px;
  }

  .case-visual {
    padding: 8px;
  }

  .case-mockup-img {
    height: 260px;
  }

  .case-floating-score {
    right: 14px;
    bottom: 14px;
    min-width: 104px;
    padding: 12px;
  }

  .case-floating-score strong {
    font-size: 28px;
  }

  .case-visual-proof,
  .case-stats-v2,
  .report-demo-strip,
  .comparison-board,
  .credibility-panel,
  .credibility-grid,
  .method-panel,
  .method-grid,
  .pricing-brief-panel,
  .pricing-mini-grid {
    grid-template-columns: 1fr;
  }

  .case-content-v2 {
    padding: 22px;
    border-radius: 20px;
  }

  .case-title-v2 {
    font-size: 28px;
  }

  .case-item-v2 {
    grid-template-columns: 34px 1fr;
  }

  .case-content-v2 .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .credibility-section {
    padding: 12px 0 64px;
  }

  .credibility-panel {
    padding: 24px;
  }

  .method-section,
  .home-pricing-section {
    padding-bottom: 64px;
  }

  .method-panel,
  .pricing-brief-panel {
    padding: 24px;
  }

  .method-card,
  .pricing-mini-card {
    min-height: auto;
  }
}

.diff-grid-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-card-alt {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.faq-grid-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .faq-grid-alt, .diff-grid-alt, .problem-grid, .audience-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .audience-grid-4 {
    grid-template-columns: 1fr !important;
  }
}
.m-0 { margin: 0; }
.p-20 { padding: 20px; }
.block { display: block; }
.uppercase { text-transform: uppercase; }
.list-none { list-style: none; padding: 0; }
.font-bold { font-weight: 700; }
.font-size-12 { font-size: 12px; }
.text-secondary { color: var(--text-secondary); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-danger-light { color: #fca5a5; }
.text-success { color: var(--success); }
.text-success-light { color: #6ee7b7; }
.text-accent { color: var(--brand-accent); }
.text-muted { color: var(--text-muted); }

.section-title-small { font-family: var(--font-display); font-size: 24px; }
.problem-alert-box { background: rgba(239, 68, 68, 0.1); padding: 16px; border-radius: 8px; border-left: 4px solid #ef4444; }
.benefit-title { color: #fff; font-size: 18px; display: block; margin-bottom: 8px; }
.benefit-text { color: var(--text-secondary); font-size: 14px; }
.mid-cta-title { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #fff; }
.mid-cta-text { color: var(--text-secondary); margin-bottom: 32px; font-size: 18px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.case-study-header { background: rgba(255,255,255,0.02); padding: 32px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.case-study-list { list-style: none; padding: 0; margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-study-item { display: flex; gap: 12px; color: var(--text-secondary); }
.case-study-footer { padding: 32px; background: linear-gradient(135deg, rgba(239,68,68,0.05), rgba(16,185,129,0.05)); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-val-box { border: 1px solid transparent; padding: 20px; border-radius: 12px; }
.case-val-box.danger { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); }
.case-val-box.success { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.case-val-label { font-weight: 700; margin: 0; font-size: 14px; }
.case-val-amount { font-size: 20px; margin: 8px 0 0; }

.diff-card-highlight { background: rgba(255,255,255,0.02); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.diff-card-divider { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; }

.audience-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
.audience-card-title { color: #fff; display: block; margin-bottom: 12px; }
.audience-card-text { color: var(--text-secondary); font-size: 14px; }

@media (max-width: 768px) {
  .audience-grid-4 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 700px) {
  .hero-orb {
    width: 280px !important;
    height: 280px !important;
  }

  .orb-1 {
    left: auto;
    right: -140px;
  }

  .orb-2 {
    left: -140px;
  }

  .orb-3 {
    max-width: 90vw;
  }
}

.faq-question { color: #fff; margin-bottom: 8px; font-size: 16px; }
.faq-answer { color: var(--text-secondary); font-size: 14px; }

.trial-section-alt { padding: 100px 0; background: linear-gradient(to bottom, var(--bg-base), var(--bg-elevated)); }
.trial-closing-title { font-size: 40px; margin-bottom: 16px; }
.trial-closing-sub { font-size: 18px; margin-bottom: 40px; }

.footer-social { display: flex; gap: 16px; }
.social-link { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.social-link:hover { color: var(--brand-accent); }
.footer-institutional { font-size: 13px; color: var(--text-muted); opacity: 0.8; margin-top: 8px; }

@media (max-width: 768px) {
  .learning-hero {
    flex-direction: column;
  }

  .learning-hero .btn {
    width: 100%;
    justify-content: center;
  }

  .learning-stats {
    grid-template-columns: 1fr;
  }

  .learning-panel {
    padding: 22px;
  }
}
