* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sidebar-bg: #0f1729;
  --sidebar-text: #8b95a8;
  --sidebar-active: #3b82f6;
  --sidebar-active-bg: rgba(59,130,246,0.15);
  --sidebar-hover: rgba(255,255,255,0.05);
  --sidebar-width: 250px;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #eff6ff;
  --bg: #f0f4f9;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06);
  --radius: 12px;
  --gradient-bar: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.4s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-dark { background: var(--sidebar-bg); color: white; }
.btn-dark:hover { background: #1a2744; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-ghost { background: transparent; color: var(--text-light); padding: 0.5rem 1rem; }
.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ========= LANDING PAGE ========= */
.navbar-landing {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100; padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.navbar-brand .logo-icon {
  width: 36px; height: 36px; background: var(--sidebar-bg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.navbar-brand .logo-icon svg { width: 20px; height: 20px; color: var(--primary); }
.navbar-brand .logo-text { font-size: 1.3rem; font-weight: 700; color: var(--sidebar-bg); }
.navbar-brand .logo-text span { color: var(--primary); }
.navbar-brand .logo-sub { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.navbar-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.navbar-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.navbar-links a:hover { color: var(--primary); }

.landing { padding-top: 64px; }
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto; padding: 6rem 2rem 4rem; align-items: center;
}
.hero-content h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 1.25rem; color: var(--text); font-weight: 700; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.trust-badges { display: flex; gap: 1.5rem; color: var(--text-light); font-size: 0.85rem; }
.trust-badges span::before { content: "\2713 "; color: var(--success); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-container {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 20px; padding: 3rem; width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease; box-shadow: var(--shadow-lg);
}
.hero-image-container:hover { transform: scale(1.03); }
.hero-image-container svg { width: 180px; height: 180px; color: var(--primary); opacity: 0.7; }

.features { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.features h2 { font-size: 2rem; text-align: center; margin-bottom: 0.75rem; font-weight: 700; }
.features > p { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 1.05rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.feature-icon {
  width: 48px; height: 48px; background: var(--primary-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.pricing { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.pricing h2 { font-size: 2rem; text-align: center; margin-bottom: 0.75rem; font-weight: 700; }
.pricing > p { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 1.05rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 2rem; position: relative; transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 1rem; border-radius: 20px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.pricing-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.9rem; color: var(--text-light); padding-left: 1.5rem; position: relative; }
.pricing-features li::before { content: "\2713"; color: var(--success); position: absolute; left: 0; font-weight: 700; }
.pricing-card .btn { width: 100%; margin-top: 1rem; }

.footer { background: var(--white); border-top: 1px solid var(--border); padding: 2rem; text-align: center; color: var(--text-light); font-size: 0.85rem; }

/* ========= APP LAYOUT (SIDEBAR + MAIN) ========= */
.app-layout { display: flex; min-height: 100vh; }

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-width); background: var(--sidebar-bg); color: var(--sidebar-text);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 50; overflow-y: auto;
}
.sidebar-logo {
  padding: 1.25rem 1.25rem 1rem; display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-logo .logo-circle {
  width: 36px; height: 36px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sidebar-logo .logo-circle svg { width: 20px; height: 20px; color: white; }
.sidebar-logo-text { display: flex; flex-direction: column; }
.sidebar-logo-text .name { font-size: 1.05rem; font-weight: 700; color: white; letter-spacing: -0.5px; }
.sidebar-logo-text .name span { color: var(--primary); }
.sidebar-logo-text .sub { font-size: 0.6rem; color: var(--sidebar-text); text-transform: uppercase; letter-spacing: 1.5px; }

.sidebar-section { padding: 1rem 0.75rem 0.25rem; }
.sidebar-section-label {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(139,149,168,0.6); padding: 0 0.5rem; margin-bottom: 0.5rem;
}

.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.sidebar-item {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.75rem;
  border-radius: 8px; cursor: pointer; transition: all 0.15s; font-size: 0.88rem;
  color: var(--sidebar-text); text-decoration: none; position: relative; user-select: none;
}
.sidebar-item:hover { background: var(--sidebar-hover); color: #c8d0dd; }
.sidebar-item.active { background: var(--sidebar-active-bg); color: var(--sidebar-active); font-weight: 600; }
.sidebar-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-item .badge {
  margin-left: auto; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem;
  border-radius: 4px; text-transform: uppercase;
}
.sidebar-item .badge.hot { background: #ef4444; color: white; }
.sidebar-item .badge.pro { background: rgba(59,130,246,0.2); color: var(--primary); }
.sidebar-item .chevron { margin-left: auto; width: 14px; height: 14px; transition: transform 0.2s; }
.sidebar-item .chevron.open { transform: rotate(180deg); }

.sidebar-sub { list-style: none; padding-left: 2rem; display: flex; flex-direction: column; gap: 1px; }
.sidebar-sub .sidebar-item { font-size: 0.84rem; padding: 0.45rem 0.75rem; }

.sidebar-bottom {
  margin-top: auto; padding: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06);
}

/* MAIN CONTENT */
.main-content {
  margin-left: var(--sidebar-width); flex: 1; min-height: 100vh;
  display: flex; flex-direction: column;
}

.topbar {
  height: 4px; background: var(--gradient-bar); flex-shrink: 0;
}

.main-inner {
  flex: 1; padding: 2rem 2.5rem;
}

/* TOOL PAGE */
.tool-page { max-width: 700px; margin: 0 auto; padding-top: 2rem; }

.tool-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; text-align: center; box-shadow: var(--shadow);
}
.tool-card .tool-icon {
  width: 64px; height: 64px; background: var(--sidebar-bg); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.tool-card .tool-icon svg { width: 32px; height: 32px; color: var(--primary); }
.tool-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.tool-card .tool-desc { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }

.tool-input {
  width: 100%; padding: 0.85rem 1.25rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  background: var(--bg); transition: border-color 0.2s; margin-bottom: 1rem;
}
.tool-input:focus { outline: none; border-color: var(--primary); background: white; }
.tool-input::placeholder { color: #94a3b8; }

.tool-textarea {
  width: 100%; padding: 0.85rem 1.25rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  background: var(--bg); transition: border-color 0.2s; margin-bottom: 1rem;
  min-height: 120px; resize: vertical;
}
.tool-textarea:focus { outline: none; border-color: var(--primary); background: white; }

/* DASHBOARD PAGE */
.dash-header { margin-bottom: 2rem; }
.dash-header h1 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.dash-header h1 svg, .card h3 svg, .card h4 svg, h1 svg, h2 svg, h3 svg, h4 svg { width: 24px; height: 24px; flex-shrink: 0; }
.dash-header p { color: var(--text-light); font-size: 0.95rem; }

.page-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.page-header-icon {
  width: 44px; height: 44px; background: var(--primary-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.page-header-icon svg { width: 22px; height: 22px; color: var(--primary); }
.page-header-text h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.1rem; }
.page-header-text p { font-size: 0.9rem; color: var(--text-light); }

/* TABS */
.tab-bar {
  display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem;
}
.tab-btn {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  border: none; background: none; font-size: 0.9rem; font-weight: 500;
  color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s; font-family: inherit;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active {
  color: var(--primary); border-bottom-color: var(--primary); font-weight: 600;
}

/* REPORT HERO CARD */
.report-hero-card {
  background: white; border-radius: 16px; padding: 0; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center; margin-bottom: 2rem;
  border: 1px solid var(--border); position: relative;
}
.report-hero-gradient {
  height: 6px; width: 100%;
}
.gradient-blue-purple { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.gradient-green-teal { background: linear-gradient(90deg, #10b981, #14b8a6); }
.gradient-yellow-orange { background: linear-gradient(90deg, #eab308, #f59e0b, #ef4444); }
.gradient-purple-pink { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.gradient-teal-blue { background: linear-gradient(90deg, #14b8a6, #3b82f6); }
.report-hero-icon {
  width: 56px; height: 56px; background: var(--bg); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin: 1.5rem auto 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--border);
}
.report-hero-icon svg { width: 28px; height: 28px; color: var(--text); }
.report-hero-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.25rem; }
.report-hero-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; padding: 0 1.5rem; }
.report-hero-input { padding: 0 2rem 1.75rem; max-width: 500px; margin: 0 auto; }
.report-input { border-radius: 10px !important; border: 2px solid var(--border) !important; padding: 0.75rem 1rem !important; font-size: 0.95rem !important; text-align: center; }
.report-input:focus { border-color: var(--primary) !important; }
.report-btn { margin-top: 0.75rem; border-radius: 10px !important; padding: 0.75rem !important; font-size: 0.95rem !important; }
.report-loading-bar { height: 3px; background: var(--border); overflow: hidden; }
.report-loading-progress { height: 100%; width: 30%; background: var(--primary); border-radius: 2px; animation: loadingSlide 1.5s ease infinite; }
@keyframes loadingSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

/* CARD HEADERS WITH ICONS */
.card-header-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-icon svg { width: 20px; height: 20px; color: white; }
.card-header-row h3 { margin-bottom: 0; }
.card-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 0.1rem; }
.bg-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bg-green { background: linear-gradient(135deg, #10b981, #059669); }
.bg-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.bg-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.bg-gray { background: linear-gradient(135deg, #6b7280, #4b5563); }

/* LOADING */
.loading-spinner { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; gap: 1rem; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; display: inline-block; vertical-align: middle; }
.loading-spinner span { font-size: 0.9rem; color: var(--text-light); }

/* SCORES */
.score-circle { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto; border: 3px solid var(--border); color: var(--text-light); }
.score-circle.score-good { border-color: var(--success); color: var(--success); background: rgba(16,185,129,0.08); }
.score-circle.score-warn { border-color: var(--warning); color: var(--warning); background: rgba(245,158,11,0.08); }
.score-circle.score-bad { border-color: var(--danger); color: var(--danger); background: rgba(239,68,68,0.08); }
.score-inline { font-weight: 700; color: var(--primary); }

/* METRIC CARDS */
.metric-card { padding: 1.25rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.metric-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.metric-value { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.metric-value-sm { font-size: 0.85rem; color: var(--text); line-height: 1.5; }

/* PERSONA */
.persona-avatar { width: 48px; height: 48px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.persona-avatar svg { width: 24px; height: 24px; color: var(--primary); }

/* STATUS */
.status-badge { font-size: 0.8rem; padding: 0.2rem 0.6rem; border-radius: 4px; background: var(--border); color: var(--text-light); }
.status-badge.status-active { background: rgba(59,130,246,0.1); color: var(--primary); }
.status-pill { font-size: 0.8rem; padding: 0.3rem 0.8rem; border-radius: 6px; background: var(--border); color: var(--text-light); }
.status-pill.status-pill-done { background: rgba(16,185,129,0.1); color: var(--success); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 0.4rem; vertical-align: middle; }
.dot-green { background: var(--success); }
.dot-red { background: var(--danger); }
.dot-yellow { background: var(--warning); }
.relevance-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }

/* ENGINE CARDS (AEO) */
.engine-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.engine-header { color: white; padding: 0.75rem 1rem; font-weight: 600; font-size: 0.9rem; text-align: center; }
.engine-body { padding: 1rem; font-size: 0.85rem; line-height: 1.6; min-height: 100px; max-height: 200px; overflow-y: auto; }

/* DATA TABLES */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table thead tr { border-bottom: 2px solid var(--border); }
.data-table th, .data-table td { padding: 0.75rem; }
.data-table tbody tr { border-bottom: 1px solid var(--border); }
.data-table tbody tr:hover { background: var(--bg); }

/* SENTIMENT */
.sentiment-tag { font-size: 0.8rem; padding: 0.15rem 0.5rem; border-radius: 4px; }
.sentiment-positivo { background: rgba(16,185,129,0.1); color: var(--success); }
.sentiment-negativo { background: rgba(239,68,68,0.1); color: var(--danger); }
.sentiment-neutro { background: rgba(107,114,128,0.1); color: var(--text-light); }
.volume-badge { font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 4px; background: var(--primary-light); color: var(--primary); text-transform: uppercase; letter-spacing: 0.3px; }
.volume-badge.volume-alto { background: rgba(239,68,68,0.1); color: #dc2626; }
.volume-badge.volume-medio { background: rgba(217,119,6,0.1); color: #d97706; }
.volume-badge.volume-basso { background: rgba(107,114,128,0.1); color: #6b7280; }
.volume-badge.volume-high { background: rgba(239,68,68,0.1); color: #dc2626; }
.volume-badge.volume-medium { background: rgba(217,119,6,0.1); color: #d97706; }
.volume-badge.volume-low { background: rgba(107,114,128,0.1); color: #6b7280; }

/* ROADMAP */
.roadmap-item { display: flex; gap: 0.75rem; padding: 0.75rem; background: var(--bg); border-radius: 6px; border: 1px solid var(--border); margin-bottom: 0.5rem; }
.roadmap-quarter { font-weight: 700; font-size: 0.85rem; color: var(--primary); min-width: 30px; }

/* LISTS */
.gap-list, .fix-list { list-style: none; padding: 0; margin: 0; }
.gap-list li, .fix-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.gap-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warning); margin-top: 0.4rem; flex-shrink: 0; }
.fix-number { width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; flex-shrink: 0; }

/* TERMS */
.term-tag { font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 4px; background: rgba(59,130,246,0.1); color: var(--primary); }
.term-tag.term-missing { background: rgba(239,68,68,0.1); color: var(--danger); }

/* ERROR */
.error-banner { margin-top: 0.75rem; padding: 0.75rem 1rem; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); border-radius: 6px; color: var(--danger); font-size: 0.85rem; }

/* TOAST */
.toast-notification { position: fixed; bottom: 20px; right: 20px; padding: 0.75rem 1.5rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; z-index: 10000; transform: translateY(100px); opacity: 0; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.toast-notification.show { transform: translateY(0); opacity: 1; }
.toast-success { background: #059669; color: white; }
.toast-error { background: #dc2626; color: white; }
.toast-warning { background: #d97706; color: white; }

/* API KEY STYLES */
.api-key-group { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.api-key-group:last-child { border-bottom: none; }
.api-key-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.api-key-desc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; }
.key-status { font-size: 0.8rem; padding: 0.15rem 0.5rem; border-radius: 4px; }
.key-valid { background: rgba(16,185,129,0.1); color: var(--success); }
.key-invalid { background: rgba(239,68,68,0.1); color: var(--danger); }
.key-loading { display: inline-flex; align-items: center; }

/* FINOPS */
.finops-total { display: flex; align-items: center; justify-content: space-between; padding: 1rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); margin-top: 0.5rem; }
.finops-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; }
.finops-value { font-size: 2rem; font-weight: 700; color: var(--primary); }

/* EXPORT CARDS */
.export-card { padding: 1.5rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); text-align: center; }
.export-card h4 { margin-bottom: 0.5rem; }
.export-card p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }

/* WIZARD */
.wiz-container { max-width: 720px; margin: 0 auto; text-align: center; }
.wiz-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.wiz-title span { color: var(--primary); }
.wiz-subtitle { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }

.wiz-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2rem; }
.wiz-step-item { display: flex; align-items: center; gap: 0; }
.wiz-step-circle {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.85rem;
  background: var(--border); color: var(--text-light); transition: all 0.3s;
}
.wiz-step-circle.active { background: var(--sidebar-bg); color: white; }
.wiz-step-circle.done { background: var(--primary); color: white; }
.wiz-step-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-top: 0.25rem; }
.wiz-step-label.active { color: var(--sidebar-bg); font-weight: 600; }
.wiz-step-line { width: 60px; height: 2px; background: var(--border); margin: 0 0.5rem; }
.wiz-step-line.done { background: var(--primary); }

.wiz-section-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.25rem; }
.wiz-section-sub { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }

.wiz-platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.wiz-platform-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 12px;
  padding: 1.25rem 1rem; cursor: pointer; transition: all 0.2s; text-align: left;
}
.wiz-platform-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.wiz-platform-card.active { border-color: var(--primary); background: var(--primary-light); }
.wiz-platform-card .wiz-p-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.wiz-platform-card .wiz-p-icon svg { width: 24px; height: 24px; }
.wiz-platform-card .wiz-p-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.15rem; }
.wiz-platform-card .wiz-p-desc { font-size: 0.8rem; color: var(--text-light); }

.wiz-objective-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.wiz-objective-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 12px;
  padding: 1rem 1.25rem; cursor: pointer; transition: all 0.2s; text-align: left;
  display: flex; align-items: center; gap: 0.75rem;
}
.wiz-objective-card:hover { border-color: var(--primary); }
.wiz-objective-card.active { border-color: var(--sidebar-bg); background: var(--sidebar-bg); color: white; }
.wiz-objective-card .wiz-o-icon { width: 32px; height: 32px; flex-shrink: 0; }
.wiz-objective-card .wiz-o-icon svg { width: 20px; height: 20px; }
.wiz-objective-card .wiz-o-name { font-weight: 600; font-size: 0.95rem; }
.wiz-objective-card .wiz-o-desc { font-size: 0.8rem; opacity: 0.7; }
.wiz-objective-card.active .wiz-o-desc { opacity: 0.8; }

.wiz-nav { display: flex; justify-content: flex-end; margin-top: 2rem; }
.wiz-next-btn {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem;
  background: var(--primary); color: white; border: none; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.wiz-next-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.wiz-back-btn {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  background: none; color: var(--text-light); border: none; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.wiz-back-btn:hover { color: var(--text); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.4rem; }
.stat-card .stat-value { font-size: 1.6rem; font-weight: 700; }
.stat-card .stat-value.blue { color: var(--primary); }
.stat-card .stat-value.green { color: var(--success); }
.stat-card .stat-value.orange { color: var(--warning); }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }

.plan-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--primary-light); border-radius: 8px; padding: 1rem 1.25rem;
}
.plan-banner .plan-name { font-weight: 600; font-size: 1rem; }
.plan-banner .plan-badge { font-size: 0.8rem; color: var(--success); font-weight: 600; }

.empty-state { text-align: center; color: var(--text-light); padding: 2.5rem 0; font-size: 0.9rem; }

/* SETTINGS PAGE */
.settings-grid { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; }
.settings-tabs { display: flex; flex-direction: column; gap: 4px; }
.settings-tab {
  padding: 0.6rem 1rem; border-radius: 8px; cursor: pointer; font-size: 0.9rem;
  color: var(--text-light); transition: all 0.15s; background: none; border: none;
  text-align: left; font-family: inherit;
}
.settings-tab:hover { background: rgba(0,0,0,0.04); color: var(--text); }
.settings-tab.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

.settings-content { }
.settings-content h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 1.25rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text); }
.form-group input, .form-group select {
  width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.9rem; font-family: inherit; background: var(--bg);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: white; }

/* SOCIAL MEDIA PAGES */
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.social-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; cursor: pointer; transition: all 0.2s;
}
.social-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-2px); }
.social-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.social-card p { color: var(--text-light); font-size: 0.85rem; line-height: 1.5; }

/* ========= VISUAL STUDIO ========= */
.vs-page { max-width: 1200px; }
.vs-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.vs-header-icon {
  width: 48px; height: 48px; background: var(--primary-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vs-header-icon svg { width: 26px; height: 26px; color: var(--primary); }
.vs-header h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.1rem; }
.vs-header p { font-size: 0.9rem; color: var(--text-light); }

.vs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }

.vs-controls { display: flex; flex-direction: column; gap: 1rem; }

.vs-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.vs-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.vs-card-top h3 { font-size: 1rem; font-weight: 600; }
.vs-card-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--primary); margin-bottom: 0.75rem;
}

.vs-mode-toggle { display: flex; align-items: center; gap: 0.5rem; }
.vs-mode-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.vs-toggle {
  width: 36px; height: 20px; border-radius: 10px; border: none;
  background: #d1d5db; cursor: pointer; position: relative; transition: background 0.2s; padding: 0;
}
.vs-toggle.active { background: var(--primary); }
.vs-toggle-knob {
  position: absolute; top: 2px; left: 2px; width: 16px; height: 16px;
  background: white; border-radius: 50%; transition: transform 0.2s;
}
.vs-toggle.active .vs-toggle-knob { transform: translateX(16px); }

.vs-textarea {
  width: 100%; min-height: 80px; padding: 0.75rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.9rem; font-family: inherit; resize: vertical;
  background: var(--bg); transition: border-color 0.2s;
}
.vs-textarea:focus { outline: none; border-color: var(--primary); background: white; }

.vs-upload-area {
  width: 100%; padding: 1.25rem; border: 2px dashed var(--border); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.2s; color: var(--text-light); text-align: center; gap: 0.25rem;
}
.vs-upload-area:hover { border-color: var(--primary); color: var(--primary); }
.vs-upload-icon { font-size: 1.5rem; }

.vs-lens-list { display: flex; flex-direction: column; gap: 2px; }
.vs-lens-item {
  display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0.85rem;
  border-radius: 8px; cursor: pointer; transition: all 0.15s; border: 2px solid transparent;
}
.vs-lens-item:hover { background: rgba(0,0,0,0.02); }
.vs-lens-item.active { background: rgba(59,130,246,0.06); border-color: var(--primary); }
.vs-lens-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.15rem; }
.vs-lens-desc { font-size: 0.75rem; color: var(--text-light); line-height: 1.3; }
.vs-lens-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }

.vs-setup-row { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.vs-setup-col { flex: 1; }
.vs-setup-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-light); margin-bottom: 0.5rem; margin-top: 0.75rem;
}
.vs-setup-label:first-child { margin-top: 0; }

.vs-btn-group { display: flex; gap: 0.4rem; }
.vs-icon-btn {
  width: 42px; height: 38px; border: 2px solid var(--border); border-radius: 8px;
  background: white; cursor: pointer; font-size: 1.1rem; display: flex;
  align-items: center; justify-content: center; transition: all 0.15s;
}
.vs-icon-btn:hover { border-color: var(--primary); }
.vs-icon-btn.active { border-color: var(--primary); background: var(--primary-light); }

.vs-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: white;
  font-size: 0.7rem; font-weight: 700; margin-right: 0.5rem; flex-shrink: 0;
}

.vs-scopo-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem;
}
.vs-scopo-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.85rem 0.5rem; gap: 0.35rem; border: 2px solid var(--border); border-radius: 10px;
  background: white; cursor: pointer; transition: all 0.15s; min-height: 72px;
}
.vs-scopo-btn:hover { border-color: var(--primary); background: rgba(59,130,246,0.03); }
.vs-scopo-btn.active { border-color: var(--primary); background: var(--primary-light); }
.vs-scopo-icon { font-size: 1.3rem; line-height: 1; }
.vs-scopo-label { font-size: 0.72rem; font-weight: 600; color: var(--text); text-align: center; line-height: 1.2; }

.vs-select {
  width: 100%; padding: 0.55rem 0.75rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.85rem; font-family: inherit; background: white;
  cursor: pointer;
}
.vs-select:focus { outline: none; border-color: var(--primary); }

.vs-format-group { display: flex; gap: 0.4rem; margin-bottom: 0.25rem; }
.vs-format-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.5rem 0.65rem; border: 2px solid var(--border); border-radius: 8px;
  background: white; cursor: pointer; transition: all 0.15s; font-size: 0.7rem;
  color: var(--text-light); font-weight: 500;
}
.vs-format-btn:hover { border-color: var(--primary); }
.vs-format-btn.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.vs-format-icon {
  border: 1.5px solid currentColor; border-radius: 2px;
}
.vs-format-1-1 { width: 16px; height: 16px; }
.vs-format-16-9 { width: 22px; height: 13px; }
.vs-format-9-16 { width: 13px; height: 22px; }
.vs-format-4-3 { width: 20px; height: 15px; }
.vs-format-3-4 { width: 15px; height: 20px; }

.vs-ora-group { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vs-ora-btn {
  padding: 0.45rem 0.85rem; border: 1.5px solid var(--border); border-radius: 20px;
  background: white; cursor: pointer; font-size: 0.8rem; font-family: inherit;
  transition: all 0.15s; color: var(--text); font-weight: 500;
}
.vs-ora-btn:hover { border-color: var(--primary); }
.vs-ora-btn.active { border-color: var(--primary); background: var(--primary); color: white; }
.vs-ora-icon { margin-right: 0.2rem; }

.vs-render-btn {
  padding: 1rem; font-size: 1rem; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border: none; color: white; font-weight: 700; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}
.vs-render-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }

.vs-preview {
  background: linear-gradient(135deg, #0f172a, #1e293b); border-radius: var(--radius);
  overflow: hidden; position: sticky; top: 1rem; min-height: 500px;
  display: flex; flex-direction: column;
}
.vs-preview-bar {
  display: flex; gap: 0.75rem; padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vs-preview-bar span {
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem; background: rgba(255,255,255,0.08); border-radius: 4px;
}
.vs-preview-area {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); padding: 2rem;
}
.vs-preview-icon svg { width: 80px; height: 80px; margin-bottom: 1rem; }
.vs-preview-text { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; color: rgba(255,255,255,0.5); }
.vs-preview-sub { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.vs-upload-text { font-size: 0.85rem; font-weight: 500; margin-top: 0.5rem; }
.vs-upload-hint { font-size: 0.72rem; color: var(--text-light); margin-top: 0.25rem; }
.vs-thumbs-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.vs-thumb-card {
  display: flex; gap: 0.75rem; padding: 0.75rem; border: 1px solid var(--border);
  border-radius: 10px; background: var(--bg); align-items: flex-start;
}
.vs-thumb-preview { position: relative; width: 70px; height: 70px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; }
.vs-thumb-preview img { width: 100%; height: 100%; object-fit: cover; }
.vs-thumb-remove { position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; border-radius: 50%; background: rgba(239,68,68,0.9); color: white; border: none; cursor: pointer; font-size: 12px; line-height: 20px; padding: 0; display: flex; align-items: center; justify-content: center; }
.vs-thumb-fields { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.vs-thumb-name {
  width: 100%; padding: 0.35rem 0.5rem; border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.78rem; font-family: inherit; background: white;
}
.vs-thumb-name:focus { outline: none; border-color: var(--primary); }
.vs-thumb-dims {
  display: flex; gap: 0.35rem; align-items: center;
}
.vs-thumb-dim-input {
  width: 100%; padding: 0.3rem 0.4rem; border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.75rem; font-family: inherit; background: white; text-align: center;
}
.vs-thumb-dim-input:focus { outline: none; border-color: var(--primary); }
.vs-thumb-dim-label { font-size: 0.65rem; color: var(--text-light); text-align: center; margin-top: 1px; }
.vs-thumb-dim-group { flex: 1; display: flex; flex-direction: column; }
.vs-thumb-dim-x { font-size: 0.7rem; color: var(--text-light); font-weight: 600; padding-top: 0.3rem; }
.vs-thumb-dims-label { font-size: 0.68rem; color: var(--text-light); font-weight: 600; }
.vs-thumb-add-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem; border: 2px dashed var(--border); border-radius: 10px;
  background: transparent; cursor: pointer; color: var(--text-light); font-size: 0.8rem;
  font-family: inherit; transition: all 0.15s; width: 100%;
}
.vs-thumb-add-btn:hover { border-color: var(--primary); color: var(--primary); }
.vs-mode-hint { font-size: 0.75rem; color: var(--primary); margin-top: 0.5rem; font-style: italic; }
.vs-preview-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 400px; }
.vs-preview-loading .spinner { width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.2); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin-bottom: 1rem; }
.vs-preview-error { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 400px; }
.vs-preview-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 400px; }
.vs-results { padding: 1rem; }
.vs-result-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.vs-result-item { text-align: center; }
.vs-result-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); }
.vs-result-img { width: 100%; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.vs-result-item .btn { margin-top: 0.5rem; }
.vs-result-single { text-align: center; }
.vs-result-single .vs-result-img { max-width: 100%; }

.vs-color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.vs-color-card { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 0.75rem; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.vs-color-label { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.vs-color-swatch { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); display: inline-block; flex-shrink: 0; }

.vs-project-row { display: flex; gap: 1rem; }
.vs-project-col { flex: 1; }

.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 1000; display: flex;
  align-items: center; justify-content: center;
}
.ip-modal {
  background: white; border-radius: 12px; width: 90%; max-width: 700px;
  max-height: 80vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ip-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.ip-modal-header h3 { margin: 0; font-size: 1.1rem; }
.ip-modal-close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--bg); cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.ip-modal-body { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.ip-modal-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1.25rem; border-top: 1px solid var(--border);
}
.ip-selected-count { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.ip-project { margin-bottom: 1.25rem; }
.ip-project-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); }
.ip-sub { margin-left: 0.75rem; margin-bottom: 0.75rem; }
.ip-sub-name { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.ip-img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.5rem; }
.ip-img-card {
  position: relative; padding: 0.4rem; border: 2px solid var(--border);
  border-radius: 8px; cursor: pointer; transition: all 0.15s; text-align: center;
  overflow: hidden;
}
.ip-img-card:hover { border-color: var(--primary); }
.ip-img-card.selected { border-color: var(--primary); background: rgba(59,130,246,0.06); }
.ip-img-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.ip-img-name { font-size: 0.7rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 0.25rem; padding: 0 0.2rem; }
.ip-img-type { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; }
.ip-img-check {
  position: absolute; top: 4px; right: 4px; width: 20px; height: 20px;
  background: var(--primary); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700;
  z-index: 2;
}
.ip-img-zoom {
  position: absolute; bottom: 4px; right: 4px; width: 26px; height: 26px;
  background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%;
  cursor: pointer; font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.15s;
}
.ip-img-card:hover .ip-img-zoom { opacity: 1; }

.lightbox-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 90vh; cursor: default;
}
.lightbox-content img {
  max-width: 90vw; max-height: 85vh; border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); display: block;
}
.lightbox-close {
  position: absolute; top: -12px; right: -12px; width: 32px; height: 32px;
  background: white; color: #333; border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 10001;
}
.lightbox-close:hover { background: #f0f0f0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .hero { grid-template-columns: 1fr; padding: 4rem 1.5rem 2rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-visual { display: none; }
  .features-grid, .pricing-grid, .stats-grid, .social-grid, .vs-layout { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .settings-grid { grid-template-columns: 1fr; }
}

/* PRESENTATION STYLES */
.pres-toggle-row {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0;
  border-bottom: 1px solid var(--border); cursor: pointer;
}
.pres-toggle-label { flex: 1; display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.pres-toggle-label svg { width: 18px; height: 18px; }
.pres-toggle-info { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pres-toggle-date { font-size: 0.7rem; color: var(--text-light); white-space: nowrap; }
.pres-toggle-status {
  font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 4px;
  background: var(--border); color: var(--text-light); font-weight: 600;
}
.pres-toggle-status.pres-has-data { background: rgba(16,185,129,0.1); color: var(--success); }

.pres-preview-wrap { }
.pres-preview-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding: 0.75rem 1rem; background: white;
  border-radius: 10px; border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pres-preview-container {
  background: white; border-radius: 12px; border: 1px solid var(--border);
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pres-cover {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 3rem 2rem; text-align: center;
}
.pres-cover-logo svg { width: 56px; height: 56px; color: var(--primary); }
.pres-cover-title { font-size: 2.2rem; font-weight: 800; margin: 0.75rem 0 0.25rem; color: #0f172a; }
.pres-cover-subtitle { font-size: 1rem; color: var(--text-light); max-width: 450px; margin: 0 auto; }
.pres-cover-meta { margin-top: 1.5rem; font-size: 0.85rem; color: #94a3b8; display: flex; gap: 2rem; justify-content: center; }
.pres-cover-reports { margin-top: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.pres-cover-tag { font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 4px; background: rgba(59,130,246,0.1); color: var(--primary); }

.pres-section { margin: 1.5rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: 10px; background: white; }
.pres-section-title {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 2px solid var(--border); padding-bottom: 0.6rem;
}
.pres-section-title svg { width: 20px; height: 20px; color: var(--primary); }
.pres-metrics-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.pres-metric { padding: 1rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.pres-metric-label { font-size: 0.7rem; text-transform: uppercase; color: #94a3b8; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.pres-metric-val { font-size: 0.85rem; color: var(--text); line-height: 1.4; }
.pres-big-score { font-size: 2rem; font-weight: 700; }
.pres-big-score.score-good { color: var(--success); }
.pres-big-score.score-warn { color: var(--warning); }
.pres-big-score.score-bad { color: var(--danger); }
.pres-sub { font-size: 0.85rem; margin: 0.75rem 0; line-height: 1.5; }
.pres-sub ul, .pres-sub ol { padding-left: 1.5rem; margin-top: 0.25rem; }
.pres-sub li { margin-bottom: 0.2rem; }
.pres-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; margin: 0.75rem 0; }
.pres-table th, .pres-table td { padding: 0.5rem 0.75rem; border: 1px solid var(--border); text-align: left; }
.pres-table th { background: var(--bg); font-weight: 600; }
.pres-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-top: 0.5rem; }
.pres-tag-pos { font-size: 0.75rem; padding: 0.15rem 0.5rem; border-radius: 3px; background: rgba(16,185,129,0.1); color: var(--success); }
.pres-engines { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.pres-engine { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.pres-engine-head { color: white; padding: 0.4rem 0.75rem; font-weight: 600; font-size: 0.8rem; text-align: center; }
.pres-engine-body { padding: 0.75rem; font-size: 0.8rem; line-height: 1.5; max-height: 150px; overflow-y: auto; }

.pres-preview-mini {
  background: var(--bg); border-radius: 10px; padding: 1.5rem;
  border: 1px solid var(--border);
}
.pres-cover-mini {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 10px; padding: 2rem; text-align: center; color: white; margin-bottom: 1rem;
}
.pres-cover-mini-logo svg { width: 40px; height: 40px; color: var(--primary); margin-bottom: 0.5rem; }
.pres-cover-mini h2 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.pres-cover-mini p { font-size: 0.85rem; opacity: 0.7; }
.pres-cover-mini-tags { margin-top: 0.75rem; display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.pres-cover-mini-tags span { font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 4px; background: rgba(59,130,246,0.2); color: #93c5fd; }

.pres-mini-section {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0.75rem; background: white; border-radius: 6px;
  border: 1px solid var(--border); margin-bottom: 0.5rem; font-size: 0.85rem;
}
.pres-mini-section-title { display: flex; align-items: center; gap: 0.4rem; font-weight: 500; }
.pres-mini-section-title svg { width: 16px; height: 16px; }
.pres-mini-section-status { font-size: 0.75rem; color: var(--text-light); }

/* ========= PROFESSIONAL REPORT STYLES ========= */
.report-action-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; padding: 0.75rem 0;
}
.report-action-bar-left { display: flex; align-items: center; gap: 0.75rem; }
.report-action-bar-right { display: flex; align-items: center; gap: 0.75rem; }
.report-action-bar .btn svg { width: 16px; height: 16px; }
.report-link-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--text-light); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; background: none; border: none; font-family: inherit;
  transition: color 0.2s;
}
.report-link-btn:hover { color: var(--primary); }

.report-container {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; overflow: hidden; margin-bottom: 1.25rem;
}

.report-branded-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 2rem; border-bottom: 3px solid var(--primary);
}
.report-branded-header-left {
  display: flex; align-items: center; gap: 0.75rem;
}
.report-branded-header-left svg { width: 32px; height: 32px; color: var(--primary); }
.report-branded-header-left span {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  color: var(--sidebar-bg); text-transform: uppercase;
}
.report-branded-header-right { text-align: right; }
.report-branded-header-right .report-type-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--primary); margin-bottom: 0.15rem;
}
.report-branded-header-right .report-date {
  font-size: 0.8rem; color: var(--text-light);
}

.report-title-section {
  text-align: center; padding: 2rem 2rem 1rem;
}
.report-title-section h2 {
  font-size: 1.6rem; font-weight: 800; color: var(--sidebar-bg); margin-bottom: 0.25rem;
}
.report-title-section .report-subtitle {
  font-size: 0.95rem; color: var(--text-light); font-weight: 400;
}

.report-score-section {
  text-align: center; padding: 1rem 2rem 2rem;
}
.report-score-large {
  font-size: 4rem; font-weight: 800; line-height: 1;
  margin-bottom: 0.25rem;
}
.report-score-large.score-green { color: var(--success); }
.report-score-large.score-orange { color: var(--warning); }
.report-score-large.score-red { color: var(--danger); }
.report-score-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-light);
}

.report-section {
  padding: 1.5rem 2rem; border-top: 1px solid var(--border);
}
.report-section-header {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.report-section-header svg { width: 20px; height: 20px; color: var(--primary); }
.report-section-header h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--sidebar-bg);
}

.report-engine-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.report-engine-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  background: var(--white);
}
.report-engine-card-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--border);
  background: #fafbfc;
}
.report-engine-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.report-engine-card-header span {
  font-size: 0.85rem; font-weight: 700;
}
.report-engine-card-body { padding: 1rem; }

.report-metric-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid #f1f5f9;
}
.report-metric-row:last-of-type { border-bottom: none; }
.report-metric-row .metric-name {
  font-size: 0.8rem; color: var(--text); font-weight: 500;
}
.report-metric-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 0.2rem 0.6rem; border-radius: 4px;
}
.report-metric-badge.badge-high { background: rgba(16,185,129,0.1); color: #059669; }
.report-metric-badge.badge-medium { background: rgba(245,158,11,0.1); color: #d97706; }
.report-metric-badge.badge-low { background: rgba(239,68,68,0.1); color: #dc2626; }

.report-quote {
  font-style: italic; font-size: 0.8rem; color: var(--text-light);
  line-height: 1.5; margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

.report-blueprint-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.report-blueprint-col h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--sidebar-bg);
  margin-bottom: 0.75rem;
}
.report-blueprint-col .blueprint-sublabel {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.report-blueprint-col .blueprint-sublabel:first-child { margin-top: 0; }
.report-gap-list {
  list-style: none; padding: 0; margin: 0;
}
.report-gap-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; padding: 0.35rem 0; color: var(--text);
}
.report-gap-list li::before {
  content: "•"; color: var(--danger); font-weight: 700; flex-shrink: 0;
  margin-top: 1px;
}

.report-content-suggestion {
  background: #fafbfc; border: 1px solid var(--border); border-radius: 8px;
  padding: 0.75rem 1rem; margin-bottom: 0.5rem;
}
.report-content-suggestion .suggestion-type {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 0.15rem 0.5rem; border-radius: 3px;
  background: rgba(139,92,246,0.1); color: #7c3aed; display: inline-block;
  margin-bottom: 0.4rem;
}
.report-content-suggestion .suggestion-title {
  font-size: 0.85rem; font-weight: 600; color: var(--sidebar-bg);
  margin-bottom: 0.15rem;
}
.report-content-suggestion .suggestion-desc {
  font-size: 0.8rem; color: var(--text-light); line-height: 1.4;
}

.report-check-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.4rem 0; font-size: 0.85rem; color: var(--text);
}
.report-check-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(139,92,246,0.12); color: #7c3aed;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; margin-top: 1px;
}
.report-check-icon svg { width: 12px; height: 12px; }

.report-roadmap {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.report-roadmap-header {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.25rem; background: var(--sidebar-bg); color: white;
}
.report-roadmap-header svg { width: 18px; height: 18px; }
.report-roadmap-header span { font-size: 0.9rem; font-weight: 700; }
.report-roadmap-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border);
}
.report-roadmap-row:last-child { border-bottom: none; }
.report-roadmap-quarter {
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
  background: rgba(59,130,246,0.08); padding: 0.2rem 0.6rem;
  border-radius: 4px; flex-shrink: 0; min-width: 32px; text-align: center;
}
.report-roadmap-content { flex: 1; }
.report-roadmap-content .roadmap-title {
  font-size: 0.85rem; font-weight: 600; color: var(--sidebar-bg);
  margin-bottom: 0.15rem;
}
.report-roadmap-content .roadmap-desc {
  font-size: 0.8rem; color: var(--text-light); line-height: 1.4;
}
.report-impact-badge {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 0.2rem 0.5rem; border-radius: 3px;
  flex-shrink: 0; margin-top: 0.15rem;
}
.report-impact-badge.impact-high { background: rgba(239,68,68,0.1); color: #dc2626; }
.report-impact-badge.impact-medium { background: rgba(245,158,11,0.1); color: #d97706; }
.report-impact-badge.impact-low { background: rgba(59,130,246,0.1); color: #3b82f6; }

.report-info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.report-info-card {
  background: #fafbfc; border: 1px solid var(--border); border-radius: 10px;
  padding: 1.25rem;
}
.report-info-card .info-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 0.5rem;
}
.report-info-card .info-value {
  font-size: 0.85rem; color: var(--text); line-height: 1.5;
}

.report-tags-section { margin-top: 0.5rem; }
.report-tags-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 0.4rem;
}
.report-tags-label.positive { color: var(--success); }
.report-tags-label.negative { color: var(--danger); }
.report-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }
.report-tag {
  font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 4px;
  font-weight: 500;
}
.report-tag.tag-positive { background: rgba(16,185,129,0.1); color: #059669; }
.report-tag.tag-negative { background: rgba(239,68,68,0.1); color: #dc2626; }
.report-tag.tag-neutral { background: rgba(100,116,139,0.1); color: #64748b; }

.report-sentiment-bar {
  height: 10px; background: var(--border); border-radius: 5px;
  overflow: hidden; margin: 0.5rem 0;
}
.report-sentiment-fill {
  height: 100%; border-radius: 5px;
  background: var(--gradient-bar); transition: width 0.5s;
}

.report-data-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
}
.report-data-table th {
  text-align: left; padding: 0.65rem 0.75rem; font-size: 0.7rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-light); border-bottom: 2px solid var(--border);
  background: #fafbfc;
}
.report-data-table td {
  padding: 0.6rem 0.75rem; border-bottom: 1px solid #f1f5f9;
  color: var(--text);
}
.report-data-table tr:last-child td { border-bottom: none; }
.report-data-table .win-prob-bar {
  width: 60px; height: 6px; background: #e2e8f0; border-radius: 3px;
  overflow: hidden; display: inline-block; vertical-align: middle; margin-right: 0.4rem;
}
.report-data-table .win-prob-fill {
  height: 100%; border-radius: 3px;
}
.report-volume-badge {
  font-size: 0.7rem; font-weight: 600; padding: 0.15rem 0.5rem;
  border-radius: 3px;
}
.report-volume-badge.vol-alto { background: rgba(239,68,68,0.1); color: #dc2626; }
.report-volume-badge.vol-medio { background: rgba(245,158,11,0.1); color: #d97706; }
.report-volume-badge.vol-basso { background: rgba(59,130,246,0.1); color: #3b82f6; }

.report-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.report-metric-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem;
}
.report-metric-card-item {
  background: #fafbfc; border: 1px solid var(--border); border-radius: 8px;
  padding: 1rem; text-align: center;
}
.report-metric-card-item .mc-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 0.4rem;
}
.report-metric-card-item .mc-value {
  font-size: 1.3rem; font-weight: 700; color: var(--sidebar-bg);
}

.report-term-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.report-term-tag {
  font-size: 0.8rem; padding: 0.25rem 0.7rem; border-radius: 20px;
  font-weight: 500; border: 1px solid;
}
.report-term-tag.term-present { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.3); color: #059669; }
.report-term-tag.term-missing { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.3); color: #dc2626; }

.report-competitor-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
}
.report-competitor-card {
  background: #fafbfc; border: 1px solid var(--border); border-radius: 8px;
  padding: 0.85rem 1rem; text-align: center;
}
.report-competitor-card .comp-name { font-size: 0.9rem; font-weight: 600; color: var(--sidebar-bg); }
.report-competitor-card .comp-sector { font-size: 0.8rem; color: var(--text-light); }

.report-persona-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.report-persona-card {
  background: #fafbfc; border: 1px solid var(--border); border-radius: 10px;
  padding: 1.25rem; text-align: center;
}
.report-persona-card .persona-icon {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 0.5rem;
  background: rgba(59,130,246,0.1); display: flex; align-items: center;
  justify-content: center;
}
.report-persona-card .persona-icon svg { width: 20px; height: 20px; color: var(--primary); }
.report-persona-card .persona-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.report-persona-card .persona-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.4rem; }
.report-persona-card .persona-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }

.report-fix-list { list-style: none; padding: 0; margin: 0; }
.report-fix-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.5rem 0; font-size: 0.85rem; color: var(--text);
}
.report-fix-number {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}

.dashboard-service-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 2px 8px rgba(59,130,246,0.1);
  transform: translateY(-1px);
}

.dashboard-service-card .chevron {
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .report-engine-cards, .report-blueprint-section, .report-two-col,
  .report-info-cards, .report-competitor-cards, .report-persona-cards { grid-template-columns: 1fr; }
}
