/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f59e0b;
  --purple: #8b5cf6;
  --amber: #f59e0b;
  --teal: #14b8a6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

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

.btn-link {
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--primary);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 21px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #dbeafe 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:last-child { background: #22c55e; }

.mockup-url {
  font-size: 0.75rem;
  color: var(--text-lighter);
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  flex: 1;
}

.mockup-body {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 52px;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}

.mockup-nav-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.85rem;
}

.mockup-nav-item.active {
  background: var(--primary);
  color: #fff;
}

.mockup-content {
  flex: 1;
  padding: 20px;
}

.mockup-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mockup-greeting {
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
}

.mockup-date {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-card {
  padding: 14px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-card i {
  font-size: 1.3rem;
}

.mockup-card div {
  display: flex;
  flex-direction: column;
}

.card-num {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

.card-lbl {
  font-size: 0.65rem;
  color: var(--text-light);
  white-space: nowrap;
}

.card-blue { background: #dbeafe; color: #1d4ed8; }
.card-green { background: #dcfce7; color: #16a34a; }
.card-orange { background: #fef3c7; color: #d97706; }

.mockup-chart {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
}

.chart-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), #60a5fa);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: height 0.6s ease;
}

/* ===== Logos Section ===== */
.logos-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.logos-title {
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logos-track {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-item span {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-lighter);
}

/* ===== Problem Section ===== */
.problem-section {
  padding: 100px 0;
}

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

.problem-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.problem-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.check-item i {
  color: var(--green);
  font-size: 1.2rem;
}

/* Problem visual */
.problem-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.apps-chaos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 380px;
}

.chaos-app {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(var(--x), var(--y)); }
}

.chaos-app i {
  font-size: 1.1rem;
}

.arrow-down {
  font-size: 2rem;
  color: var(--primary);
  animation: bounce 2s infinite;
}

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

.one-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header.left-align {
  text-align: left;
  margin: 0 0 40px;
  max-width: none;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== Features Section ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-block.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.feature-reverse {
  direction: rtl;
}

.feature-block.feature-reverse > * {
  direction: ltr;
}

.feature-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.tag-green { background: #dcfce7; color: #16a34a; }
.tag-purple { background: #ede9fe; color: #7c3aed; }
.tag-amber { background: #fef3c7; color: #d97706; }
.tag-teal { background: #ccfbf1; color: #0d9488; }
.tag-red { background: #fee2e2; color: #dc2626; }
.tag-slate { background: #e2e8f0; color: #475569; }
.tag-indigo { background: #e0e7ff; color: #4338ca; }

.feature-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.feature-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

/* Feature Visuals */
.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.f-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.f-card-back {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  opacity: 0.5;
}

.f-card-front {
  position: relative;
  padding: 24px;
}

.f-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.f-badge {
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

.radar-chart {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.radar-svg {
  width: 100%;
  height: auto;
}

.radar-labels {
  position: absolute;
  inset: -20px;
}

.radar-labels span {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* Injury Mockup */
.injury-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.injury-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.injury-body {
  padding: 24px;
}

.injury-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.injury-stat {
  text-align: center;
}

.injury-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.injury-num.green { color: var(--green); }
.injury-num.orange { color: var(--orange); }
.injury-num.red { color: var(--red); }

.injury-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.injury-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-dot.green { background: var(--green); }
.timeline-dot.orange { background: var(--orange); }
.timeline-dot.red { background: var(--red); }

.timeline-text {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

/* Video Mockup */
.video-mockup {
  max-width: 420px;
  width: 100%;
}

.video-player {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-overlay {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  cursor: pointer;
}

.video-overlay:hover {
  color: #fff;
}

.video-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.hud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.hud-item span {
  font-size: 0.7rem;
  opacity: 0.7;
}

.hud-item strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Nutrition Mockup */
.nutrition-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 350px;
  width: 100%;
}

.nutrition-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.nutrition-ring-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 24px auto;
}

.nutrition-ring {
  width: 100%;
  height: 100%;
}

.ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ring-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.ring-unit {
  font-size: 0.75rem;
  color: var(--text-light);
}

.macro-bars {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.macro-bar {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.bar-track {
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.bar-fill.protein { background: var(--primary); }
.bar-fill.carbs { background: var(--orange); }
.bar-fill.fats { background: var(--purple); }

/* Training & IDP Mockup */
.training-visual-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.training-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.training-overlay {
  position: absolute;
  bottom: -89px;
    right: -52px;
  max-width: 300px;
  transform: scale(0.85);
  transform-origin: bottom right;
}

@media (max-width: 768px) {
  .training-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    transform: none;
    margin-top: 16px;
  }
}

.training-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.training-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #eef2ff;
  border-bottom: 1px solid var(--border);
  color: #4338ca;
}

.training-body {
  padding: 24px;
}

.idp-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.idp-pillar {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.idp-pillar-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.idp-traffic-light {
  font-size: 1.6rem;
  line-height: 1;
}

.idp-traffic-light.green { color: #22c55e; }
.idp-traffic-light.yellow { color: #f59e0b; }
.idp-traffic-light.red { color: #ef4444; }

.idp-pillar-status {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-lighter);
}

.idp-goals {
  margin-bottom: 20px;
}

.idp-goals-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.idp-goal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.idp-goal-timeframe {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4338ca;
  background: #e0e7ff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
}

.idp-goal-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}

.idp-session-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 12px;
}

.idp-session-icon {
  width: 36px;
  height: 36px;
  background: #22c55e;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.idp-session-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.idp-session-info strong {
  font-size: 0.82rem;
  color: var(--secondary);
}

.idp-session-info span {
  font-size: 0.72rem;
  color: var(--text-light);
}

.idp-session-badge {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Scout/Recruitment Mockup */
.scout-visual-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.scout-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.scout-overlay {
  position: absolute;
      bottom: -46px;
    left: 168px;
  max-width: 340px;
  transform: scale(0.8);
  transform-origin: bottom left;
}

@media (max-width: 768px) {
  .scout-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    transform: none;
    margin-top: 16px;
  }
}

.scout-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.scout-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #fef2f2;
  border-bottom: 1px solid var(--border);
  color: #dc2626;
}

.scout-body {
  padding: 20px;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.kanban-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kanban-col-header {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-lighter);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2px;
}

.kanban-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
}

.kanban-card.highlighted {
  border-color: var(--primary);
  background: #eff6ff;
}

.kanban-card.signed {
  border-color: var(--green);
  background: #f0fdf4;
}

.kanban-player-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.kanban-meta {
  display: flex;
  gap: 4px;
  align-items: center;
}

.kanban-pos {
  font-size: 0.6rem;
  font-weight: 600;
  background: #e2e8f0;
  color: var(--text-light);
  padding: 1px 5px;
  border-radius: 3px;
}

.kanban-priority {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

.kanban-priority.high {
  background: #fee2e2;
  color: #dc2626;
}

.kanban-priority.med {
  background: #fef3c7;
  color: #d97706;
}

.kanban-ai-tag {
  margin-top: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 4px;
}

.kanban-ai-tag i {
  font-size: 0.55rem;
}

.kanban-score {
  margin-top: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--green);
}

.scout-ai-insight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-radius: 10px;
  padding: 14px;
}

.scout-ai-icon {
  width: 32px;
  height: 32px;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.scout-ai-text {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.scout-ai-text strong {
  color: var(--purple);
}

/* Opposition Mockup */
.oppo-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.oppo-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  color: #475569;
}

.oppo-body {
  padding: 24px;
}

.oppo-team-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.oppo-team-badge {
  width: 44px;
  height: 44px;
  background: #1e293b;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.oppo-team-info {
  display: flex;
  flex-direction: column;
}

.oppo-team-info strong {
  font-size: 1rem;
  color: var(--secondary);
}

.oppo-team-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.oppo-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.oppo-stat {
  text-align: center;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
}

.oppo-stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 2px;
}

.oppo-stat-label {
  font-size: 0.7rem;
  color: var(--text-lighter);
  font-weight: 500;
}

.oppo-style-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.oppo-style {
  display: grid;
  grid-template-columns: 70px 1fr 35px;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.oppo-style-track {
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.oppo-style-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #475569, #1e293b);
}

.oppo-threat {
  background: #fef2f2;
  border-radius: 8px;
  padding: 12px;
  border-left: 3px solid var(--red);
}

.oppo-threat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.oppo-threat-player {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

/* Bio-Banding Mockup */
.bioband-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.bioband-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
  color: #0d9488;
}

.bioband-body {
  padding: 24px;
}

.maturity-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.maturity-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.maturity-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.maturity-badge.pre-phv {
  background: #dbeafe;
  color: #1d4ed8;
}

.maturity-badge.circa-phv {
  background: #fef3c7;
  color: #d97706;
}

.maturity-badge.post-phv {
  background: #dcfce7;
  color: #16a34a;
}

.maturity-count {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.maturity-bar-track {
  flex-basis: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.maturity-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.pre-phv-fill { background: #3b82f6; }
.circa-phv-fill { background: #f59e0b; }
.post-phv-fill { background: #22c55e; }

.maturity-warning {
  flex-basis: 100%;
  font-size: 0.72rem;
  color: #d97706;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.maturity-warning i {
  font-size: 0.7rem;
}

.bioband-player-example {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.bioband-player-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bioband-player-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-lighter);
  font-size: 1rem;
  flex-shrink: 0;
}

.bioband-player-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.bioband-player-info strong {
  font-size: 0.9rem;
  color: var(--secondary);
}

.bioband-player-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.bioband-player-stats {
  display: flex;
  gap: 14px;
}

.bioband-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bioband-stat-label {
  font-size: 0.6rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.bioband-stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
}

.bioband-stat-value.warn {
  color: #d97706;
}

/* ===== Features Grid ===== */
.features-grid-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.grid-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.grid-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.grid-card.animate-in:hover {
  transform: translateY(-4px);
}

.grid-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.grid-icon.blue { background: var(--primary-light); color: var(--primary); }
.grid-icon.green { background: #dcfce7; color: #16a34a; }
.grid-icon.purple { background: #ede9fe; color: #7c3aed; }
.grid-icon.amber { background: #fef3c7; color: #d97706; }
.grid-icon.red { background: #fee2e2; color: #dc2626; }
.grid-icon.teal { background: #ccfbf1; color: #0d9488; }

.grid-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.grid-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Roles Section ===== */
.roles-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.role-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.role-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.role-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.role-card.animate-in:hover {
  transform: translateY(-4px);
}

.role-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.role-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.role-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== White Label Section ===== */
.whitelabel-section {
  padding: 100px 0;
}

.whitelabel-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.brand-feature > i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2px;
}

.brand-feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.brand-feature span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Phone mockups */
.wl-visual {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  background: #1e293b;
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
}

.phone-second {
  margin-top: 40px;
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: #334155;
  border-radius: 3px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.phone-header {
  padding: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.phone-content {
  padding: 16px;
}

.phone-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.phone-menu-item:hover {
  background: var(--bg-alt);
}

.phone-menu-item i {
  color: var(--text-light);
  width: 16px;
  text-align: center;
}

/* ===== Pricing ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.price-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
  transform: scale(1.04);
}

.price-card.featured.animate-in {
  transform: scale(1.04);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-header h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-header p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.price-amount {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.price-features li i {
  color: var(--green);
  font-size: 0.85rem;
}

/* ===== Demo Form Section ===== */
.demo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.demo-info h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.demo-subtitle {
  color: #60a5fa;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.demo-info > p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.demo-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.demo-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.demo-benefit i {
  color: #60a5fa;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.demo-contact {
  border-top: 1px solid #334155;
  padding-top: 24px;
}

.demo-contact p {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.demo-contact a {
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.demo-contact a:hover {
  color: #93bbfd;
}

/* Form */
.demo-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.required {
  color: var(--red);
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.field-error,
.form-group select.field-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-country-select {
  width: 110px;
  flex-shrink: 0;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-country-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-input-group input {
  flex: 1;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-lighter);
  line-height: 1.5;
  text-align: center;
}

/* Success & Error states */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 12px;
}

.form-error p {
  font-size: 0.85rem;
  color: #b91c1c;
  margin: 0;
}

.form-error a {
  color: #b91c1c;
  font-weight: 600;
  text-decoration: underline;
}

.error-icon {
  display: none;
}

@media (max-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-info h2 {
    font-size: 1.8rem;
  }

  .demo-form-wrapper {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 24px;
  background: #0b1120;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-links h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .feature-block,
  .feature-block.feature-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .feature-block.feature-reverse > * {
    direction: ltr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured.animate-in {
    transform: none;
  }

  .whitelabel-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .feature-content h3 {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .logos-track {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .wl-visual {
    justify-content: center;
  }

  .phone-mockup {
    width: 170px;
  }
}

/* ===== Dropdown Navigation ===== */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.nav-dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.dropdown-menu a i {
  width: 18px;
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.dropdown-menu a:hover i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }
}

/* ===== Page Hero ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #dbeafe 100%);
  text-align: center;
}

.page-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-category {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== Page Content ===== */
.page-content {
  padding: 80px 0;
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.page-intro-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-intro-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.rounded-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-feature-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  text-decoration: none;
  color: inherit;
}

.page-feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.page-feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.page-feature-card.animate-in:hover {
  transform: translateY(-4px);
}

.pf-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.pf-icon.blue { background: var(--primary-light); color: var(--primary); }
.pf-icon.green { background: #dcfce7; color: #16a34a; }
.pf-icon.purple { background: #ede9fe; color: #7c3aed; }
.pf-icon.amber { background: #fef3c7; color: #d97706; }
.pf-icon.red { background: #fee2e2; color: #dc2626; }
.pf-icon.teal { background: #ccfbf1; color: #0d9488; }
.pf-icon.indigo { background: #e0e7ff; color: #4338ca; }

.page-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.pf-link i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.page-feature-card:hover .pf-link i {
  transform: translateX(4px);
}

/* ===== Page CTA ===== */
.page-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  text-align: center;
}

.page-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.page-cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-cta p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.page-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Features Overview (Homepage) ===== */
.features-overview {
  padding: 100px 0;
  background: var(--bg-alt);
}

.features-category {
  margin-bottom: 48px;
}

.features-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-title i {
  color: var(--primary);
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 48px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-feature-grid,
  .features-card-grid {
    grid-template-columns: 1fr;
  }

  .page-cta h2 {
    font-size: 1.6rem;
  }
}

/* ===== Benefits Bar ===== */
.benefits-bar {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.benefits-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.benefit-item i {
  color: var(--green);
  font-size: 1rem;
}

/* ===== Alternating Feature Sections ===== */
.bg-alt {
  background: var(--bg-alt);
}

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

.alt-feature-reverse {
  direction: rtl;
}

.alt-feature-reverse > * {
  direction: ltr;
}

.alt-feature-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.alt-feature-text > p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.feature-check-list li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Stat highlight */
.stat-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
}

.stat-highlight-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-highlight-text {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== Mockup Cards (Large) ===== */
.mockup-card-lg {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mockup-card-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  background: #eef2ff;
  color: #4338ca;
  border-bottom: 1px solid var(--border);
}

.mockup-card-header.green { background: #f0fdf4; color: #16a34a; }
.mockup-card-header.purple { background: #faf5ff; color: #7c3aed; }
.mockup-card-header.teal { background: #f0fdfa; color: #0d9488; }

.mockup-card-body {
  padding: 24px;
}

/* Mock form */
.mock-form-group {
  margin-bottom: 14px;
}

.mock-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.mock-input {
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-lighter);
}

.mock-input.filled {
  color: var(--text);
}

.mock-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

.mock-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  flex-shrink: 0;
}

.mock-checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.mock-btn {
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}

/* Mock stats */
.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mock-stat {
  text-align: center;
  padding: 14px 8px;
  background: #f8fafc;
  border-radius: 10px;
}

.mock-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.mock-stat-label {
  font-size: 0.68rem;
  color: var(--text-lighter);
  font-weight: 500;
}

/* Mock table */
.mock-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.mock-table-head {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 8px;
  padding: 10px 14px;
  background: #f8fafc;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-lighter);
  letter-spacing: 0.03em;
}

.mock-table-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  align-items: center;
}

.mock-badge-green {
  background: #dcfce7;
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.mock-badge-amber {
  background: #fef3c7;
  color: #d97706;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.mock-badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

/* Mock products */
.mock-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.mock-product:last-child {
  border-bottom: none;
}

.mock-product-icon {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-lighter);
  font-size: 1rem;
  flex-shrink: 0;
}

.mock-product-info {
  flex: 1;
  min-width: 0;
}

.mock-product-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.mock-product-info span {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

/* Payment option cards */
.payment-options-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-option-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.payment-option-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.po-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.payment-option-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  flex-shrink: 0;
}

.payment-option-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
  line-height: 1.4;
}

.po-example {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mock chart bars (vertical) */
.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.mock-chart-bar-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.mock-chart-track {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.mock-chart-fill {
  width: 100%;
  background: linear-gradient(to top, var(--primary), #60a5fa);
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}

.mock-chart-bar-wrapper.highlight .mock-chart-fill {
  background: linear-gradient(to top, #16a34a, #4ade80);
}

.mock-chart-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-lighter);
  margin-top: 8px;
}

.mock-chart-summary {
  display: flex;
  justify-content: space-between;
}

.mock-chart-stat {
  display: flex;
  flex-direction: column;
}

.mock-chart-stat span {
  font-size: 0.7rem;
  color: var(--text-lighter);
}

.mock-chart-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
}

.mock-chart-stat strong.green {
  color: var(--green);
}

/* Security section */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.security-item {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.security-icon {
  width: 56px;
  height: 56px;
  background: #f0f9ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.security-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.security-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .alt-feature,
  .alt-feature.alt-feature-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .alt-feature-reverse > * {
    direction: ltr;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-option-card {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .benefits-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

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

  .alt-feature-text h2 {
    font-size: 1.6rem;
  }
}

/* ===== Chat Mockup ===== */
.chat-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.chat-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--secondary);
  color: #fff;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.chat-header-info strong {
  display: block;
  font-size: 0.9rem;
}

.chat-header-info span {
  font-size: 0.72rem;
  opacity: 0.7;
}

.chat-mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8fafc;
  min-height: 260px;
}

.chat-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.chat-message.outgoing {
  justify-content: flex-end;
}

.chat-msg-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.chat-msg-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.chat-msg-bubble {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 2px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  max-width: 280px;
}

.chat-msg-bubble.outgoing-bubble {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  border-radius: 12px 12px 2px 12px;
}

.chat-msg-time {
  font-size: 0.62rem;
  color: var(--text-lighter);
  margin-top: 3px;
}

.chat-message.outgoing .chat-msg-time {
  text-align: right;
}

.chat-mockup-input {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-lighter);
}

.chat-input-bar span {
  flex: 1;
}

.chat-input-bar i:last-child {
  color: var(--primary);
}

/* ===== Notifications Mockup ===== */
.notifications-mockup {
  display: flex;
  justify-content: center;
}

.notif-phone {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}

.notif-phone-header {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
}

.notif-list {
  padding: 8px;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.2s;
}

.notif-item.urgent {
  background: #fef2f2;
}

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.notif-icon.red { background: #fee2e2; color: #dc2626; }
.notif-icon.blue { background: #dbeafe; color: #1d4ed8; }
.notif-icon.green { background: #dcfce7; color: #16a34a; }
.notif-icon.purple { background: #ede9fe; color: #7c3aed; }

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-content strong {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.notif-content p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.notif-content span {
  font-size: 0.68rem;
  color: var(--text-lighter);
}

.notif-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  margin-top: 4px;
}

.notif-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
}

.notif-btn.yes { background: #dcfce7; color: #16a34a; }
.notif-btn.no { background: #fee2e2; color: #dc2626; }

/* ===== Groups Mockup ===== */
.groups-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.groups-header {
  padding: 16px 24px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
}

.groups-list {
  padding: 8px;
}

.group-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.15s;
}

.group-item:hover {
  background: var(--bg-alt);
}

.group-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.group-avatar.blue { background: #dbeafe; color: #1d4ed8; }
.group-avatar.green { background: #dcfce7; color: #16a34a; }
.group-avatar.amber { background: #fef3c7; color: #d97706; }
.group-avatar.purple { background: #ede9fe; color: #7c3aed; }
.group-avatar.red { background: #fee2e2; color: #dc2626; }

.group-info {
  flex: 1;
  min-width: 0;
}

.group-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--secondary);
}

.group-info span {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

.group-unread {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== Comments Mockup ===== */
.comments-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.comments-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-header i {
  color: var(--text-lighter);
}

.comments-body {
  padding: 20px;
}

.comment-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.comment-item:last-of-type {
  margin-bottom: 16px;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.comment-meta {
  margin-bottom: 4px;
}

.comment-meta strong {
  font-size: 0.8rem;
  color: var(--secondary);
}

.comment-meta span {
  font-size: 0.68rem;
  color: var(--text-lighter);
  margin-left: 8px;
}

.comment-content p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

.comment-input {
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-lighter);
}

/* ===== Safety Visual ===== */
.safety-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.safety-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.safety-icon {
  width: 48px;
  height: 48px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}

.safety-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.safety-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== Connected Section ===== */
.connected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.connected-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.connected-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.connected-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.connected-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.connected-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .safety-visual {
    grid-template-columns: 1fr;
  }

  .connected-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Calendar Mockup ===== */
.calendar-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.cal-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cal-nav strong {
  font-size: 0.95rem;
  color: var(--secondary);
}

.cal-nav-btn {
  width: 28px;
  height: 28px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-light);
  cursor: pointer;
}

.cal-views {
  display: flex;
  gap: 4px;
}

.cal-view-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
}

.cal-view-btn.active {
  background: var(--primary);
  color: #fff;
}

.cal-body {
  display: flex;
  padding: 0;
}

.cal-times {
  display: flex;
  flex-direction: column;
  padding: 36px 10px 10px;
  gap: 0;
  width: 50px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.cal-times span {
  font-size: 0.6rem;
  color: var(--text-lighter);
  height: 40px;
  display: flex;
  align-items: flex-start;
}

.cal-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 240px;
}

.cal-day-col {
  position: relative;
  border-right: 1px solid #f1f5f9;
  min-height: 240px;
}

.cal-day-col:last-child {
  border-right: none;
}

.cal-day-header {
  text-align: center;
  padding: 8px 2px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.cal-day-header.sat {
  color: var(--primary);
}

.cal-event {
  position: absolute;
  left: 3px;
  right: 3px;
  border-radius: 4px;
  padding: 4px 6px;
  overflow: hidden;
  cursor: pointer;
}

.cal-event.blue { background: #dbeafe; border-left: 3px solid #2563eb; }
.cal-event.green { background: #dcfce7; border-left: 3px solid #16a34a; }
.cal-event.purple { background: #ede9fe; border-left: 3px solid #7c3aed; }
.cal-event.amber { background: #fef3c7; border-left: 3px solid #d97706; }
.cal-event.red { background: #fee2e2; border-left: 3px solid #dc2626; }

.cal-event-title {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.cal-event-time {
  display: block;
  font-size: 0.52rem;
  color: var(--text-light);
  margin-top: 1px;
}

/* ===== Attendance Mockup ===== */
.attendance-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.att-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.att-event-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
}

.att-event-info span {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.att-count {
  text-align: center;
}

.att-count-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.att-count-label {
  font-size: 0.68rem;
  color: var(--text-lighter);
}

.att-body {
  padding: 8px 16px;
}

.att-player {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.att-player:last-child {
  border-bottom: none;
}

.att-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.att-player span {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.att-status-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.att-status-badge.going { background: #dcfce7; color: #16a34a; }
.att-status-badge.not-going { background: #fee2e2; color: #dc2626; }
.att-status-badge.pending { background: #f1f5f9; color: var(--text-lighter); }

/* ===== Match Day Mockup ===== */
.matchday-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.md-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #1e293b, #334155);
  text-align: center;
}

.md-badge {
  display: inline-block;
  padding: 3px 12px;
  background: #dc2626;
  color: #fff;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.md-date {
  color: #94a3b8;
  font-size: 0.82rem;
}

.md-body {
  padding: 24px;
}

.md-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.md-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.md-team-crest {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.md-team-crest.home { background: #fee2e2; color: #dc2626; }
.md-team-crest.away { background: #dbeafe; color: #1d4ed8; }

.md-team span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.md-vs {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-lighter);
}

.md-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.md-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text);
}

.md-detail i {
  color: var(--text-lighter);
  width: 16px;
  text-align: center;
}

.md-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.md-action-btn {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.md-action-btn.going {
  background: var(--green);
  color: #fff;
}

.md-action-btn.details {
  background: #f1f5f9;
  color: var(--text);
}

/* ===== Physio Booking Mockup ===== */
.physio-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}

.physio-header {
  padding: 16px 24px;
  font-weight: 700;
  background: #faf5ff;
  color: #7c3aed;
  border-bottom: 1px solid var(--border);
}

.physio-body {
  padding: 24px;
}

.physio-practitioner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.physio-practitioner-avatar {
  width: 44px;
  height: 44px;
  background: #ede9fe;
  color: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.physio-practitioner-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
}

.physio-practitioner-info span {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.physio-day-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.physio-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.physio-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.physio-slot.booked {
  opacity: 0.5;
}

.physio-slot.selected {
  border-color: var(--primary);
  background: #eff6ff;
}

.slot-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
}

.slot-status.booked { background: #f1f5f9; color: var(--text-lighter); }
.slot-status.available { background: #dcfce7; color: #16a34a; }
.slot-status.selected { background: var(--primary); color: #fff; }

/* ===== Session Mockup ===== */
.session-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.session-header {
  padding: 16px 24px;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.session-type-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0d9488;
  display: flex;
  align-items: center;
  gap: 6px;
}

.session-header > span {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

.session-body {
  padding: 24px;
}

.session-plan-title {
  margin-bottom: 20px;
}

.session-plan-title strong {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary);
}

.session-phase {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.session-drills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.session-drill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
}

.drill-num {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.drill-info {
  flex: 1;
}

.drill-info strong {
  display: block;
  font-size: 0.82rem;
  color: var(--secondary);
}

.drill-info span {
  font-size: 0.7rem;
  color: var(--text-lighter);
}

.drill-video {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.session-footer {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}

.session-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.session-footer i {
  color: var(--text-lighter);
}

/* ===== Session Builder Mockup ===== */
.session-builder-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.sb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #eef2ff;
  border-bottom: 1px solid var(--border);
}

.sb-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #4338ca;
}

.sb-week {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

.sb-body {
  padding: 20px;
}

.sb-meta {
  margin-bottom: 20px;
}

.sb-meta-item {
  margin-bottom: 10px;
}

.sb-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sb-meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.sb-meta-value {
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text-lighter);
}

.sb-meta-value.filled {
  color: var(--text);
}

.sb-exercises-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sb-exercises-header strong {
  font-size: 0.85rem;
  color: var(--secondary);
}

.sb-add-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.sb-exercise {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.sb-exercise:last-child {
  border-bottom: none;
}

.sb-ex-drag {
  color: var(--border);
  font-size: 0.75rem;
  cursor: grab;
}

.sb-ex-num {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sb-ex-info {
  flex: 1;
  min-width: 0;
}

.sb-ex-info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary);
}

.sb-ex-info span {
  font-size: 0.68rem;
  color: var(--text-lighter);
}

.sb-ex-video {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== Library Mockup ===== */
.library-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.lib-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--secondary);
}

.lib-search {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-lighter);
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lib-filters {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.lib-filter {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  background: #f1f5f9;
  white-space: nowrap;
  cursor: pointer;
}

.lib-filter.active {
  background: var(--primary);
  color: #fff;
}

.lib-list {
  padding: 8px 12px;
}

.lib-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.lib-item:last-child {
  border-bottom: none;
}

.lib-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lib-item-icon.blue { background: #dbeafe; color: #1d4ed8; }
.lib-item-icon.green { background: #dcfce7; color: #16a34a; }
.lib-item-icon.amber { background: #fef3c7; color: #d97706; }
.lib-item-icon.purple { background: #ede9fe; color: #7c3aed; }
.lib-item-icon.teal { background: #ccfbf1; color: #0d9488; }

.lib-item-info {
  flex: 1;
  min-width: 0;
}

.lib-item-info strong {
  display: block;
  font-size: 0.82rem;
  color: var(--secondary);
}

.lib-item-info span {
  font-size: 0.68rem;
  color: var(--text-lighter);
}

.lib-item-badges {
  display: flex;
  gap: 6px;
}

.lib-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.lib-badge.video { background: #ede9fe; color: #7c3aed; }
.lib-badge.add { background: #dcfce7; color: #16a34a; }

/* ===== Methodology Mockup ===== */
.methodology-mockup {
  max-width: 440px;
  width: 100%;
}

.method-tiers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.method-tier {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method-tier-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.method-tier-icon.club { background: #dbeafe; color: #1d4ed8; }
.method-tier-icon.team { background: #dcfce7; color: #16a34a; }
.method-tier-icon.personal { background: #ede9fe; color: #7c3aed; }

.method-tier-info {
  flex: 1;
  min-width: 0;
}

.method-tier-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--secondary);
}

.method-tier-info p {
  font-size: 0.72rem;
  color: var(--text-lighter);
  margin: 0;
  line-height: 1.4;
}

.method-tier-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

.method-flow {
  text-align: center;
}

.method-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f8fafc;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.method-flow-arrow i {
  color: var(--primary);
}

/* ===== Calendar Link Mockup ===== */
.cal-link-mockup {
  max-width: 420px;
  width: 100%;
}

.cl-calendar-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cl-day {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cl-day-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  width: 50px;
  flex-shrink: 0;
}

.cl-day-event {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cl-day-event.amber { color: #d97706; }

.cl-arrow {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 4px 0;
}

.cl-plan-preview {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cl-plan-header {
  padding: 14px 18px;
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
}

.cl-plan-header strong {
  display: block;
  font-size: 0.92rem;
  color: var(--secondary);
}

.cl-plan-header span {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

.cl-plan-drills {
  padding: 12px 18px;
}

.cl-drill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.8rem;
  color: var(--text);
  border-bottom: 1px solid #f1f5f9;
}

.cl-drill:last-child { border-bottom: none; }

.cl-drill-num {
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.cl-drill-time {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--text-lighter);
}

.cl-plan-footer {
  display: flex;
  gap: 16px;
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-light);
}

.cl-plan-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== Rating Mockup ===== */
.rating-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.rating-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0d9488;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
}

.rating-body {
  padding: 16px 20px;
  position: relative;
}

.rating-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid #f1f5f9;
}

.rating-player:last-of-type {
  border-bottom: none;
}

.rating-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
}

.rating-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
}

.rating-lights {
  display: flex;
  gap: 8px;
}

.rating-lights .light {
  font-size: 0.9rem;
}

.rating-lights .light.green { color: #22c55e; }
.rating-lights .light.amber { color: #f59e0b; }
.rating-lights .light.red { color: #ef4444; }

.rating-note {
  color: var(--text-lighter);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.rating-pillars {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 4px 0;
  margin-right: 30px;
  border-top: 1px solid var(--border);
}

.rating-pillars span {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 18px;
  text-align: center;
}

/* ===== Season Mockup ===== */
.season-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.season-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #dc2626;
  background: #fef2f2;
  border-bottom: 1px solid var(--border);
}

.season-body {
  padding: 24px;
}

.season-phase {
  margin-bottom: 18px;
}

.season-phase:last-of-type {
  margin-bottom: 20px;
}

.season-phase-label {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.season-phase.pre .season-phase-label { color: #d97706; }
.season-phase.in .season-phase-label { color: #16a34a; }
.season-phase.recovery .season-phase-label { color: #7c3aed; }

.season-phase-bar {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 4px;
}

.season-phase.pre .season-phase-bar { background: #fef3c7; }
.season-phase.in .season-phase-bar { background: #dcfce7; }
.season-phase.recovery .season-phase-bar { background: #ede9fe; }

.season-weeks {
  display: flex;
  gap: 8px;
}

.season-weeks span {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-light);
}

.season-focus {
  font-size: 0.7rem;
  color: var(--text-lighter);
  font-style: italic;
}

.season-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.season-current i {
  color: #dc2626;
}

/* ===== Video Analysis Mockup ===== */
.video-analysis-mockup {
  max-width: 480px;
  width: 100%;
}

.va-player {
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.va-player-screen {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.va-play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  margin-bottom: 20px;
}

.va-timeline {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
}

.va-timeline-bar {
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
}

.va-progress {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

.va-marker {
  position: absolute;
  top: -8px;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: #fff;
  background: var(--primary);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.va-marker.yellow { background: #f59e0b; }
.va-marker.red { background: #dc2626; }

.va-hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 16px;
}

.va-hud-item {
  text-align: center;
  color: #fff;
}

.va-hud-item span {
  display: block;
  font-size: 0.6rem;
  color: #64748b;
}

.va-hud-item strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.va-ai-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}

/* ===== Player Stats Mockup ===== */
.player-stats-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.ps-player-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ps-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.ps-player-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
}

.ps-player-info span {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.ps-rating {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  background: #dcfce7;
  padding: 6px 14px;
  border-radius: 10px;
  line-height: 1;
}

.ps-body {
  padding: 24px;
}

.ps-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.ps-stat {
  text-align: center;
  padding: 12px 8px;
  background: #f8fafc;
  border-radius: 8px;
}

.ps-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 2px;
}

.ps-stat-label {
  font-size: 0.62rem;
  color: var(--text-lighter);
  font-weight: 500;
}

.ps-bar-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ps-bar-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  width: 80px;
  flex-shrink: 0;
}

.ps-bar-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

.ps-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--primary);
}

.ps-bar-fill.purple { background: var(--purple); }
.ps-bar-fill.teal { background: var(--teal); }

.tag-blue { background: #dbeafe; color: #1d4ed8; }

/* ===== Playlist Mockup ===== */
.playlist-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.pl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
}

.pl-header i {
  color: var(--amber);
}

.pl-header strong {
  flex: 1;
  font-size: 0.9rem;
}

.pl-header span {
  font-size: 0.72rem;
  color: var(--text-lighter);
  white-space: nowrap;
}

.pl-body {
  padding: 8px;
}

.pl-clip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.15s;
  cursor: pointer;
}

.pl-clip:hover,
.pl-clip.active {
  background: #eff6ff;
}

.pl-clip-thumb {
  width: 48px;
  height: 32px;
  background: #1e293b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.pl-clip.active .pl-clip-thumb {
  background: var(--primary);
}

.pl-clip-info {
  flex: 1;
  min-width: 0;
}

.pl-clip-info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-clip-info span {
  font-size: 0.68rem;
  color: var(--text-lighter);
}

.pl-clip-duration {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ===== Opposition Report Mockup ===== */
.oppo-report-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.or-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.or-team {
  display: flex;
  align-items: center;
  gap: 14px;
}

.or-crest {
  width: 44px;
  height: 44px;
  background: #1e293b;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.or-team strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
}

.or-team span {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.or-body {
  padding: 24px;
}

.or-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.or-stat {
  text-align: center;
  padding: 10px 4px;
  background: #f8fafc;
  border-radius: 8px;
}

.or-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 2px;
}

.or-stat span {
  font-size: 0.6rem;
  color: var(--text-lighter);
}

.or-style {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.or-style-row {
  display: grid;
  grid-template-columns: 65px 1fr 35px;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
}

.or-style-track {
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.or-style-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #475569, #1e293b);
}

.or-threat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fef2f2;
  border-radius: 8px;
  padding: 14px;
  border-left: 3px solid var(--red);
}

.or-threat > i {
  color: var(--red);
  margin-top: 2px;
}

.or-threat strong {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
}

.or-threat span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== Collaboration Mockup ===== */
.collab-mockup {
  max-width: 420px;
  width: 100%;
}

.collab-video {
  background: #1e293b;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 16/8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.collab-play {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
}

.collab-timestamp {
  position: absolute;
  bottom: 10px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}

.collab-comments {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.collab-comment {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.collab-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
}

.collab-text strong {
  font-size: 0.78rem;
  color: var(--secondary);
}

.collab-text span {
  font-size: 0.65rem;
  color: var(--text-lighter);
  margin-left: 6px;
}

.collab-text p {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
  margin: 4px 0 0;
}

.collab-add {
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== Match Stats Mockup ===== */
.match-stats-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.ms-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #1e293b, #334155);
  text-align: center;
}

.ms-teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.ms-team-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.ms-score {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.ms-meta {
  font-size: 0.72rem;
  color: #64748b;
}

.ms-body {
  padding: 24px;
}

.ms-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.ms-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--secondary);
  width: 50px;
}

.ms-val.left { text-align: left; }
.ms-val.right { text-align: right; }

.ms-label {
  font-size: 0.72rem;
  color: var(--text-lighter);
  text-align: center;
}

.ms-bar-compare {
  display: flex;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  gap: 2px;
}

.ms-bar-left {
  background: var(--primary);
  border-radius: 3px 0 0 3px;
  height: 100%;
}

.ms-bar-right {
  background: #cbd5e1;
  border-radius: 0 3px 3px 0;
  height: 100%;
}

/* ===== AI Insights Mockup ===== */
.ai-insights-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.ais-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-bottom: 1px solid var(--border);
  color: #6d28d9;
  font-size: 0.92rem;
}

.ais-body {
  padding: 16px;
}

.ais-insight {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.ais-insight:last-child {
  margin-bottom: 0;
}

.ais-insight.positive { background: #f8fafc; }
.ais-insight.warning { background: #fffbeb; }

.ais-insight-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.ais-insight-icon.green { background: #dcfce7; color: #16a34a; }
.ais-insight-icon.amber { background: #fef3c7; color: #d97706; }
.ais-insight-icon.blue { background: #dbeafe; color: #1d4ed8; }
.ais-insight-icon.red { background: #fee2e2; color: #dc2626; }

.ais-insight-content strong {
  display: block;
  font-size: 0.82rem;
  color: var(--secondary);
  margin-bottom: 3px;
}

.ais-insight-content p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ===== GPS Mockup ===== */
.gps-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.gps-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1d4ed8;
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
}

.gps-body {
  padding: 24px;
}

.gps-player-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gps-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

.gps-player-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
}

.gps-player-header span {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

.gps-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.gps-stat {
  padding: 12px;
  background: #f8fafc;
  border-radius: 10px;
}

.gps-stat-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 2px;
}

.gps-stat-value small {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-lighter);
}

.gps-stat-label {
  font-size: 0.65rem;
  color: var(--text-lighter);
  margin-bottom: 8px;
}

.gps-stat-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.gps-stat-fill {
  height: 100%;
  border-radius: 2px;
}

.gps-stat-fill.blue { background: var(--primary); }
.gps-stat-fill.green { background: var(--green); }
.gps-stat-fill.purple { background: var(--purple); }
.gps-stat-fill.amber { background: var(--amber); }

.gps-strain {
  padding: 14px;
  background: #f8fafc;
  border-radius: 10px;
}

.gps-strain-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.gps-strain-level {
  font-weight: 700;
  font-size: 0.78rem;
}

.gps-strain-level.moderate { color: var(--amber); }

.gps-strain-bar {
  position: relative;
  height: 8px;
  background: linear-gradient(90deg, #22c55e 0%, #f59e0b 50%, #ef4444 100%);
  border-radius: 4px;
  margin-bottom: 6px;
}

.gps-strain-fill {
  position: absolute;
  top: -3px;
  height: 14px;
  width: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.gps-strain-zones {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: var(--text-lighter);
}

/* ===== Charts Mockup ===== */
.charts-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
}

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

.charts-header strong {
  font-size: 0.88rem;
  color: var(--secondary);
}

.charts-tabs {
  display: flex;
  gap: 4px;
}

.chart-tab {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-lighter);
  cursor: pointer;
}

.chart-tab.active {
  background: var(--primary);
  color: #fff;
}

.charts-body {
  padding: 20px;
}

.charts-bar-area {
  display: flex;
  gap: 8px;
  height: 160px;
  margin-bottom: 16px;
}

.charts-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  flex-shrink: 0;
}

.charts-y-axis span {
  font-size: 0.55rem;
  color: var(--text-lighter);
  text-align: right;
}

.charts-bars {
  flex: 1;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 4px 0 8px;
}

.charts-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.charts-bar-dual {
  flex: 1;
  display: flex;
  gap: 2px;
  align-items: flex-end;
  width: 100%;
}

.cb-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  min-height: 4px;
}

.cb-bar.primary { background: var(--primary); }
.cb-bar.secondary { background: #cbd5e1; }

.charts-bar-col span {
  font-size: 0.58rem;
  color: var(--text-lighter);
  margin-top: 4px;
}

.charts-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.7rem;
  color: var(--text-light);
}

.charts-legend i {
  font-size: 0.55rem;
  margin-right: 4px;
}

/* ===== Benchmark Mockup ===== */
.benchmark-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.bm-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0d9488;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
}

.bm-body {
  padding: 16px 20px;
}

.bm-player-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid #f1f5f9;
}

.bm-player-row:last-child {
  border-bottom: none;
}

.bm-rank {
  width: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-lighter);
  text-align: center;
  flex-shrink: 0;
}

.bm-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
}

.bm-avatar.avg {
  background: #f1f5f9;
  color: var(--text-lighter);
  font-size: 0.5rem;
}

.bm-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  width: 90px;
  flex-shrink: 0;
}

.bm-bar-wrap {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

.bm-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
}

.bm-bar.avg {
  background: #94a3b8;
  border: 1px dashed #64748b;
}

.bm-score {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--secondary);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.bm-score.avg {
  color: var(--text-lighter);
}

.bm-player-row.avg {
  background: #f8fafc;
  border-radius: 6px;
  margin: 4px 0;
}

.bm-player-row.avg .bm-name {
  color: var(--text-lighter);
  font-style: italic;
}

/* ===== Report Mockup ===== */
.report-mockup {
  display: flex;
  justify-content: center;
}

.rpt-page {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-xl), 4px 4px 0 #e2e8f0, 8px 8px 0 #f1f5f9;
  padding: 32px 28px;
  max-width: 340px;
  width: 100%;
}

.rpt-logo {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rpt-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.rpt-subtitle {
  font-size: 0.78rem;
  color: var(--text-lighter);
  margin-bottom: 16px;
}

.rpt-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin-bottom: 20px;
}

.rpt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.rpt-stat {
  text-align: center;
}

.rpt-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.rpt-stat span {
  font-size: 0.58rem;
  color: var(--text-lighter);
}

.rpt-chart-placeholder {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.rpt-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 50px;
}

.rpt-mini-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), #60a5fa);
  border-radius: 2px 2px 0 0;
}

.rpt-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-lighter);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.rpt-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rpt-footer i {
  color: var(--red);
}

/* ===== IDP Full Mockup ===== */
.idp-full-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.idpf-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0d9488;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
}

.idpf-body { padding: 24px; }

.idpf-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.idpf-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.idpf-player-info strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.idpf-player-info span { font-size: 0.75rem; color: var(--text-lighter); }

.idpf-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.idpf-pillar { text-align: center; }

.idpf-pillar-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.idpf-light { font-size: 1.8rem; line-height: 1; margin-bottom: 4px; }
.idpf-light.green { color: #22c55e; }
.idpf-light.amber { color: #f59e0b; }
.idpf-light.red { color: #ef4444; }

.idpf-trend {
  font-size: 0.65rem;
  font-weight: 800;
}

.idpf-trend.up { color: #16a34a; }
.idpf-trend.flat { color: var(--text-lighter); }
.idpf-trend.down { color: #dc2626; }

.idpf-timeline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 10px;
  margin-bottom: 6px;
}

.idpf-tl-line {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
  border-radius: 2px;
}

.idpf-tl-dot {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 1;
  position: relative;
}

.idpf-tl-dot.active {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
}

.idpf-tl-dot.future {
  background: #e2e8f0;
}

.idpf-tl-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  font-size: 0.65rem;
  color: var(--text-lighter);
  font-weight: 600;
}

.idpf-tl-labels .active { color: var(--primary); font-weight: 800; }

/* ===== AI Development Mockup ===== */
.ai-dev-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 470px;
  width: 100%;
}

.aid-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-bottom: 1px solid var(--border);
  color: #6d28d9;
  font-size: 0.92rem;
}

.aid-body { padding: 16px; }

.aid-player-context {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 12px;
}

.aid-rec {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #f8fafc;
  margin-bottom: 8px;
}

.aid-rec.priority { background: #eff6ff; border-left: 3px solid var(--primary); }
.aid-rec.caution { background: #fffbeb; border-left: 3px solid var(--amber); }

.aid-rec-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.aid-rec-icon.green { background: #dcfce7; color: #16a34a; }
.aid-rec-icon.amber { background: #fef3c7; color: #d97706; }
.aid-rec-icon.blue { background: #dbeafe; color: #1d4ed8; }

.aid-rec-content strong { display: block; font-size: 0.8rem; color: var(--secondary); margin-bottom: 3px; }
.aid-rec-content p { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ===== Goals Mockup ===== */
.goals-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.goals-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1d4ed8;
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
}

.goals-body { padding: 20px; }

.goal-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 12px;
  position: relative;
}

.goal-timeframe {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 6px;
  border-radius: 6px;
  text-align: center;
  flex-shrink: 0;
}

.goal-timeframe.short { background: #dcfce7; color: #16a34a; }
.goal-timeframe.medium { background: #dbeafe; color: #1d4ed8; }
.goal-timeframe.long { background: #ede9fe; color: #7c3aed; }

.goal-content { flex: 1; min-width: 0; }
.goal-content strong { display: block; font-size: 0.82rem; color: var(--secondary); margin-bottom: 8px; }

.goal-actions { display: flex; flex-direction: column; gap: 4px; }

.goal-action {
  font-size: 0.7rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.goal-action i { color: #16a34a; font-size: 0.65rem; }
.goal-action.pending i { color: #cbd5e1; }

.goal-progress {
  position: absolute;
  bottom: 8px;
  right: 16px;
  width: 60px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.goal-progress span {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

.goals-game-targets {
  margin-top: 16px;
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
}

.ggt-header {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d97706;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ggt-items { display: flex; flex-direction: column; gap: 6px; }

.ggt-item {
  font-size: 0.78rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ggt-item i { color: #d97706; font-size: 0.7rem; }

/* ===== Review Mockup ===== */
.review-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

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

.rev-header strong { font-size: 0.92rem; color: var(--secondary); }

.rev-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rev-status.published { background: #dcfce7; color: #16a34a; }

.rev-body { padding: 24px; }

.rev-comparison { margin-bottom: 20px; }

.rev-compare-header,
.rev-compare-row {
  display: grid;
  grid-template-columns: 100px 60px 60px;
  gap: 8px;
  align-items: center;
}

.rev-compare-header {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-lighter);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.rev-compare-header span { text-align: center; }
.rev-compare-header span:first-child { text-align: left; }

.rev-compare-row {
  padding: 6px 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.rev-compare-row span { text-align: center; }
.rev-compare-row span:first-child { text-align: left; }

.rev-light { font-size: 1rem; }
.rev-light.green { color: #22c55e; }
.rev-light.amber { color: #f59e0b; }
.rev-light.red { color: #ef4444; }

.rev-comment {
  margin-bottom: 20px;
  padding: 14px;
  background: #f8fafc;
  border-radius: 8px;
}

.rev-comment-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-lighter);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rev-comment p {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.rev-signatures {
  display: flex;
  gap: 8px;
}

.rev-sig {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
}

.rev-sig.signed { background: #dcfce7; color: #16a34a; }

/* ===== Profile Mockup ===== */
.profile-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.prof-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #1e293b, #334155);
}

.prof-avatar-lg {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.prof-info strong { display: block; font-size: 1.05rem; color: #fff; }
.prof-info span { font-size: 0.8rem; color: #94a3b8; }
.prof-meta { font-size: 0.7rem; color: #64748b; margin-top: 4px; }

.prof-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.prof-tab {
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-lighter);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.prof-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.prof-body { padding: 20px; }

.prof-quick-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.prof-qs {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  background: #f8fafc;
  border-radius: 8px;
}

.prof-qs strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 2px;
}

.prof-qs span { font-size: 0.55rem; color: var(--text-lighter); }

.prof-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prof-badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.prof-badge.green { background: #dcfce7; color: #16a34a; }
.prof-badge.amber { background: #fef3c7; color: #d97706; }
.prof-badge.blue { background: #dbeafe; color: #1d4ed8; }

/* ===== Homework Mockup ===== */
.homework-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.hw-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #16a34a;
  background: #f0fdf4;
  border-bottom: 1px solid var(--border);
}

.hw-body { padding: 16px; }

.hw-task {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.hw-task.completed { opacity: 0.6; }

.hw-check {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  flex-shrink: 0;
  margin-top: 2px;
}

.hw-check.done {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.hw-task-info strong { display: block; font-size: 0.82rem; color: var(--secondary); margin-bottom: 2px; }
.hw-task-info span { font-size: 0.7rem; color: var(--text-lighter); }

.hw-completion {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  margin-top: 8px;
  background: #f8fafc;
  border-radius: 8px;
}

.hw-completion span { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.hw-completion strong { font-size: 0.88rem; font-weight: 800; color: var(--primary); }

.hw-completion-bar {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.hw-completion-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

/* ===== AI Classification Mockup ===== */
.ai-class-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.aic-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-bottom: 1px solid var(--border);
  color: #6d28d9;
  font-size: 0.92rem;
}

.aic-body { padding: 16px; }

.aic-player-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 10px;
}

.aic-player-card:last-child { margin-bottom: 0; }
.aic-player-card.elite { border-color: var(--primary); background: #eff6ff; }

.aic-player-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.aic-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

.aic-player-info { flex: 1; min-width: 0; }
.aic-player-info strong { display: block; font-size: 0.88rem; color: var(--secondary); }
.aic-player-info span { font-size: 0.7rem; color: var(--text-lighter); }

.aic-confidence {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green);
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}

.aic-confidence.mid { color: var(--amber); background: #fef3c7; }

.aic-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.aic-category.raw-cat { background: var(--amber); }

.aic-ratings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.aic-rating {
  display: grid;
  grid-template-columns: 32px 1fr 28px;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
}

.aic-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.aic-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.aic-action {
  font-size: 0.72rem;
  color: var(--text);
  padding: 10px 12px;
  background: #f0fdf4;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.aic-action i { color: var(--green); margin-top: 1px; }

.aic-action.secondary {
  background: #fef3c7;
}

.aic-action.secondary i { color: var(--amber); }

/* ===== Pipeline Mockup ===== */
.pipeline-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.pipe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.pipe-header strong { font-size: 0.92rem; color: var(--secondary); }

.pipe-view-toggle { display: flex; gap: 4px; }

.pipe-view {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-lighter);
  background: #f1f5f9;
  cursor: pointer;
}

.pipe-view.active { background: var(--primary); color: #fff; }

.pipe-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 12px;
}

.pipe-col { display: flex; flex-direction: column; gap: 6px; }

.pipe-col-head {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-lighter);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pipe-count {
  background: #f1f5f9;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}

.pipe-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
}

.pipe-card.highlight { border-color: var(--primary); background: #eff6ff; }
.pipe-card.signed { border-color: var(--green); background: #f0fdf4; }

.pipe-card strong { display: block; font-size: 0.72rem; color: var(--secondary); margin-bottom: 4px; }

.pipe-card-meta { display: flex; gap: 4px; }

.pipe-pos {
  font-size: 0.58rem;
  font-weight: 600;
  background: #e2e8f0;
  color: var(--text-light);
  padding: 1px 5px;
  border-radius: 3px;
}

.pipe-pri {
  font-size: 0.58rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
}

.pipe-pri.a { background: #fee2e2; color: #dc2626; }
.pipe-pri.b { background: #fef3c7; color: #d97706; }

.pipe-ai {
  margin-top: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pipe-score {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--green);
}

/* ===== Trialist Mockup ===== */
.trialist-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.tri-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #d97706;
  background: #fffbeb;
  border-bottom: 1px solid var(--border);
}

.tri-body { padding: 24px; }

.tri-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tri-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.tri-player-info strong { display: block; font-size: 0.92rem; color: var(--secondary); }
.tri-player-info span { font-size: 0.75rem; color: var(--text-lighter); }

.tri-ratings { margin-bottom: 16px; }

.tri-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

.tri-rating-row:last-child { border-bottom: none; }

.tri-rating-row > span:first-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  width: 100px;
  flex-shrink: 0;
}

.tri-stars {
  flex: 1;
  display: flex;
  gap: 3px;
  font-size: 0.75rem;
}

.tri-stars .fas { color: #f59e0b; }
.tri-stars .far { color: #e2e8f0; }

.tri-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  width: 28px;
  text-align: right;
}

.tri-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 16px;
}

.tri-total span { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.tri-total strong { font-size: 1.3rem; font-weight: 900; color: var(--primary); }

.tri-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.tri-action-btn {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tri-action-btn.extend { background: #f1f5f9; color: var(--text); }
.tri-action-btn.sign { background: var(--green); color: #fff; }

/* ===== AI Scout Assistant Mockup ===== */
.ai-scout-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 470px;
  width: 100%;
}

.asc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #e0e7ff, #ede9fe);
  border-bottom: 1px solid var(--border);
  color: #4338ca;
  font-size: 0.92rem;
}

.asc-body { padding: 12px; }

.asc-alert {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #f8fafc;
}

.asc-alert:last-child { margin-bottom: 0; }
.asc-alert.duplicate { background: #fef2f2; border-left: 3px solid var(--red); }
.asc-alert.action { background: #f0fdf4; border-left: 3px solid var(--green); }
.asc-alert.workload { background: #eff6ff; border-left: 3px solid var(--primary); }
.asc-alert.route { background: #fffbeb; border-left: 3px solid var(--amber); }

.asc-alert-icon {
  width: 30px;
  height: 30px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.asc-alert-icon.green { background: #dcfce7; color: #16a34a; }
.asc-alert-icon.blue { background: #dbeafe; color: #1d4ed8; }
.asc-alert-icon.amber { background: #fef3c7; color: #d97706; }

.asc-alert-content { flex: 1; min-width: 0; }
.asc-alert-content strong { display: block; font-size: 0.8rem; color: var(--secondary); margin-bottom: 3px; }
.asc-alert-content p { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; margin: 0; }

.asc-alert-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.asc-btn {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.asc-btn.merge { background: var(--primary); color: #fff; }
.asc-btn.dismiss { background: #f1f5f9; color: var(--text-light); }

/* ===== Opposition Full Mockup ===== */
.oppo-full-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.opf-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #475569;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.opf-body { padding: 24px; }

.opf-team {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.opf-crest {
  width: 44px;
  height: 44px;
  background: #1e293b;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.opf-team strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.opf-team span { font-size: 0.72rem; color: var(--text-lighter); }

.opf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.opf-stat {
  text-align: center;
  padding: 10px 4px;
  background: #f8fafc;
  border-radius: 8px;
}

.opf-stat strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--secondary); line-height: 1; margin-bottom: 2px; }
.opf-stat span { font-size: 0.58rem; color: var(--text-lighter); }

.opf-styles { margin-bottom: 20px; }

.opf-style-row {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.opf-style-track {
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.opf-style-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #475569, #1e293b);
}

.opf-style-val { font-weight: 700; }

.opf-threat {
  background: #fef2f2;
  border-radius: 8px;
  padding: 14px;
  border-left: 3px solid var(--red);
}

.opf-threat-header {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.opf-threat-player {
  margin-bottom: 8px;
}

.opf-threat-player:last-child { margin-bottom: 0; }
.opf-threat-player strong { display: block; font-size: 0.8rem; color: var(--secondary); }
.opf-threat-player span { font-size: 0.72rem; color: var(--text-light); }

/* ===== Buy Analysis Mockup ===== */
.buy-analysis-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.ba-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #16a34a;
  background: #f0fdf4;
  border-bottom: 1px solid var(--border);
}

.ba-body { padding: 24px; }

.ba-section { margin-bottom: 20px; }
.ba-section:last-of-type { margin-bottom: 16px; }

.ba-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-lighter);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.ba-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.82rem;
}

.ba-line span { color: var(--text-light); }
.ba-line strong { color: var(--secondary); }

.ba-line.total {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

.ba-line.total strong { color: var(--primary); font-size: 0.95rem; }

.ba-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
}

.ba-indicator.green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.ba-indicator.green i { color: #16a34a; font-size: 1rem; }

.ba-indicator.amber { background: #fffbeb; border: 1px solid #fde68a; }
.ba-indicator.amber i { color: #d97706; font-size: 1rem; }

.ba-indicator div { flex: 1; }
.ba-indicator strong { display: block; font-size: 0.78rem; color: var(--secondary); }
.ba-indicator span { font-size: 0.68rem; color: var(--text-light); }

/* ===== Scout Analytics Mockup ===== */
.scout-analytics-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.sa-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #dc2626;
  background: #fef2f2;
  border-bottom: 1px solid var(--border);
}

.sa-body { padding: 16px; }

.sa-scout-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.sa-scout-row:last-of-type { border-bottom: none; }

.sa-scout-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 120px;
  flex-shrink: 0;
}

.sa-scout-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sa-scout-info strong { font-size: 0.82rem; color: var(--secondary); }

.sa-metrics {
  flex: 1;
  display: flex;
  gap: 10px;
}

.sa-metric {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
  background: #f8fafc;
  border-radius: 6px;
}

.sa-metric span { display: block; font-size: 0.55rem; color: var(--text-lighter); font-weight: 600; text-transform: uppercase; }
.sa-metric strong { font-size: 0.88rem; font-weight: 800; color: var(--secondary); }
.sa-metric.highlight { background: #dcfce7; }
.sa-metric.highlight strong { color: #16a34a; }

.sa-summary {
  display: flex;
  gap: 12px;
  padding: 14px 12px;
  margin-top: 8px;
  background: #f8fafc;
  border-radius: 8px;
}

.sa-summary-item {
  flex: 1;
  text-align: center;
}

.sa-summary-item span { display: block; font-size: 0.6rem; color: var(--text-lighter); font-weight: 600; }
.sa-summary-item strong { font-size: 1rem; font-weight: 800; color: var(--primary); }

/* ===== Injury Report Mockup ===== */
.injury-report-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}

.irm-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #16a34a;
  background: #f0fdf4;
  border-bottom: 1px solid var(--border);
}

.irm-body { padding: 24px; }

.irm-player-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.irm-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.irm-player-info strong { display: block; font-size: 0.92rem; color: var(--secondary); }
.irm-player-info span { font-size: 0.75rem; color: var(--text-lighter); }

.irm-body-chart {
  position: relative;
  background: #f8fafc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  min-height: 140px;
}

.irm-body-figure {
  position: relative;
  display: inline-block;
}

.irm-body-figure > i {
  font-size: 5rem;
  color: #cbd5e1;
}

.irm-injury-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
}

.irm-marker-dot {
  width: 14px;
  height: 14px;
  background: #dc2626;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.3);
  flex-shrink: 0;
}

.irm-marker-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #dc2626;
  background: #fef2f2;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.irm-details { margin-bottom: 16px; }

.irm-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.82rem;
}

.irm-detail-row:last-child { border-bottom: none; }
.irm-detail-row span { color: var(--text-light); }
.irm-detail-row strong { color: var(--secondary); }

/* ===== RTP Phases Mockup ===== */
.rtp-phases-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.rtp-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1d4ed8;
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
}

.rtp-body { padding: 24px; }

.rtp-player-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rtp-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

.rtp-player-row strong { display: block; font-size: 0.9rem; color: var(--secondary); }
.rtp-player-row span { font-size: 0.72rem; color: var(--text-lighter); }

.rtp-phase-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.rtp-phase {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
}

.rtp-phase.completed { opacity: 0.55; }
.rtp-phase.current { background: #eff6ff; border: 1px solid #bfdbfe; }
.rtp-phase.upcoming { opacity: 0.4; }

.rtp-phase-check {
  width: 26px;
  height: 26px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  flex-shrink: 0;
}

.rtp-phase.completed .rtp-phase-check {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.rtp-phase-check.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

.rtp-phase-info { flex: 1; min-width: 0; }
.rtp-phase-info strong { display: block; font-size: 0.8rem; color: var(--secondary); }
.rtp-phase-info span { font-size: 0.68rem; color: var(--text-lighter); }

.rtp-phase-exercises {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rtp-progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.rtp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 3px;
}

.rtp-est {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  font-weight: 500;
}

/* ===== AI Injury Risk Mockup ===== */
.ai-injury-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 470px;
  width: 100%;
}

.aii-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-bottom: 1px solid var(--border);
  color: #6d28d9;
  font-size: 0.92rem;
}

.aii-body { padding: 16px; }

.aii-alert {
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.aii-alert:last-child { margin-bottom: 0; }
.aii-alert.high { background: #fef2f2; border-left: 3px solid #dc2626; }
.aii-alert.moderate { background: #fffbeb; border-left: 3px solid #d97706; }

.aii-alert-level {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.aii-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.aii-dot.red { background: #dc2626; }
.aii-dot.amber { background: #d97706; }

.aii-alert.high .aii-alert-level { color: #dc2626; }
.aii-alert.moderate .aii-alert-level { color: #d97706; }

.aii-alert-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.aii-avatar {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.aii-alert-player strong { display: block; font-size: 0.85rem; color: var(--secondary); }
.aii-alert-player span { font-size: 0.7rem; color: var(--text-lighter); }

.aii-alert-reasons {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.aii-reason {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text);
}

.aii-reason i { color: var(--text-lighter); width: 14px; text-align: center; font-size: 0.65rem; }

.aii-action {
  font-size: 0.72rem;
  padding: 10px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.aii-action i { color: #16a34a; margin-top: 1px; }

.aii-action.secondary {
  background: #fffbeb;
  border-color: #fde68a;
}

.aii-action.secondary i { color: #d97706; }

/* ===== RTP Exercise Mockup ===== */
.rtp-exercise-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.rtpe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.88rem;
  color: #0d9488;
}

.rtpe-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
}

.rtpe-body { padding: 16px; }

.rtpe-caution {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 0.72rem;
  color: #92400e;
  margin-bottom: 14px;
}

.rtpe-caution i { color: #d97706; }

.rtpe-exercise {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.rtpe-exercise:last-of-type { border-bottom: none; }
.rtpe-exercise.active { background: #f8fafc; border-radius: 8px; }

.rtpe-check {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: transparent;
  flex-shrink: 0;
}

.rtpe-check.done {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.rtpe-ex-info { flex: 1; min-width: 0; }
.rtpe-ex-info strong { display: block; font-size: 0.8rem; color: var(--secondary); }
.rtpe-ex-info span { font-size: 0.68rem; color: var(--text-lighter); }

.rtpe-video { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

.rtpe-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin-top: 10px;
  background: #f8fafc;
  border-radius: 8px;
}

.rtpe-progress span { font-size: 0.75rem; color: var(--text-light); }
.rtpe-progress strong { font-size: 0.82rem; font-weight: 800; color: var(--primary); }

.rtpe-progress-bar {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.rtpe-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
}

/* ===== Squad Injury Mockup ===== */
.squad-injury-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.sqm-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #dc2626;
  background: #fef2f2;
  border-bottom: 1px solid var(--border);
}

.sqm-body { padding: 24px; }

.sqm-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.sqm-stat { text-align: center; }

.sqm-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.sqm-num.green { color: #22c55e; }
.sqm-num.amber { color: #f59e0b; }
.sqm-num.red { color: #ef4444; }

.sqm-stat span { font-size: 0.75rem; color: var(--text-lighter); font-weight: 500; }

.sqm-list { margin-bottom: 16px; }

.sqm-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.82rem;
}

.sqm-player:last-child { border-bottom: none; }

.sqm-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sqm-status-dot.green { background: #22c55e; }
.sqm-status-dot.amber { background: #f59e0b; }
.sqm-status-dot.red { background: #ef4444; }

.sqm-name { font-weight: 600; color: var(--secondary); width: 90px; flex-shrink: 0; }
.sqm-detail { flex: 1; color: var(--text-light); font-size: 0.75rem; }

.sqm-badge-phv {
  font-size: 0.6rem;
  font-weight: 700;
  background: #fef3c7;
  color: #d97706;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.sqm-overdue {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #b91c1c;
  font-weight: 500;
}

.sqm-overdue i { font-size: 0.85rem; }

/* ===== Maturity RTP Comparison Mockup ===== */
.maturity-rtp-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

.mrtp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #eef2ff;
  border-bottom: 1px solid var(--border);
  color: #4338ca;
  font-size: 0.92rem;
}

.mrtp-body { padding: 24px; }

.mrtp-comparison {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 20px;
}

.mrtp-col {
  flex: 1;
  padding: 16px;
  border-radius: 10px;
}

.mrtp-col.standard { background: #f8fafc; border: 1px solid var(--border); }
.mrtp-col.circa { background: #fef3c7; border: 1px solid #fde68a; }

.mrtp-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  text-align: center;
}

.mrtp-col.standard .mrtp-col-title { color: var(--text-light); }
.mrtp-col.circa .mrtp-col-title { color: #d97706; }

.mrtp-timeline-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mrtp-timeline-item:last-of-type { border-bottom: none; }
.mrtp-timeline-item span { color: var(--text-lighter); }
.mrtp-timeline-item strong { color: var(--secondary); }

.mrtp-col.circa .mrtp-timeline-item strong { color: #92400e; }

.mrtp-col-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
}

.mrtp-col-footer strong { color: var(--secondary); }
.mrtp-col.circa .mrtp-col-footer strong { color: #d97706; }

.mrtp-vs {
  display: flex;
  align-items: center;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.mrtp-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 0.72rem;
  color: #92400e;
  line-height: 1.5;
}

.mrtp-note i { color: #d97706; margin-top: 1px; flex-shrink: 0; }

/* ===== Meal Plan Mockup ===== */
.meal-plan-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

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

.mpm-title { font-weight: 700; font-size: 0.92rem; color: var(--secondary); }

.mpm-day-type {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mpm-day-type.match-day { background: #fee2e2; color: #dc2626; }
.mpm-day-type.training-day { background: #dbeafe; color: #1d4ed8; }
.mpm-day-type.recovery-day { background: #ede9fe; color: #7c3aed; }

.mpm-body { padding: 24px; }

.mpm-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.mpm-ring-container {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.mpm-ring { width: 100%; height: 100%; }

.mpm-ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.mpm-ring-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.mpm-ring-text span { font-size: 0.58rem; color: var(--text-lighter); }

.mpm-macros { display: flex; flex-direction: column; gap: 6px; }

.mpm-macro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.mpm-macro span { color: var(--text-light); flex: 1; }
.mpm-macro strong { color: var(--secondary); font-size: 0.82rem; }

.mpm-macro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mpm-macro-dot.protein { background: var(--primary); }
.mpm-macro-dot.carbs { background: var(--amber); }
.mpm-macro-dot.fats { background: var(--purple); }

.mpm-meals { display: flex; flex-direction: column; gap: 8px; }

.mpm-meal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
}

.mpm-meal-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mpm-meal-icon.breakfast { background: #fef3c7; color: #d97706; }
.mpm-meal-icon.lunch { background: #dbeafe; color: #1d4ed8; }
.mpm-meal-icon.snack { background: #dcfce7; color: #16a34a; }
.mpm-meal-icon.dinner { background: #ede9fe; color: #7c3aed; }

.mpm-meal-info { flex: 1; min-width: 0; }
.mpm-meal-info strong { display: block; font-size: 0.8rem; color: var(--secondary); }
.mpm-meal-info span { font-size: 0.68rem; color: var(--text-lighter); }

.mpm-meal-kcal {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Hydration Mockup ===== */
.hydration-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}

.hyd-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1d4ed8;
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
}

.hyd-body { padding: 24px; }

.hyd-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hyd-glass {
  width: 60px;
  height: 120px;
  background: #f1f5f9;
  border-radius: 0 0 12px 12px;
  border: 2px solid #cbd5e1;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.hyd-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #2563eb, #60a5fa);
  border-radius: 0 0 10px 10px;
  transition: height 1s ease;
}

.hyd-glass-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.hyd-glass-label strong { font-size: 0.88rem; font-weight: 800; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.hyd-glass-label span { font-size: 0.55rem; color: rgba(255,255,255,0.8); }

.hyd-percentage {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.hyd-timeline { margin-bottom: 16px; }

.hyd-entry {
  display: grid;
  grid-template-columns: 50px 60px 1fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.78rem;
}

.hyd-entry:last-child { border-bottom: none; }

.hyd-time { color: var(--text-lighter); font-weight: 500; }
.hyd-amount { font-weight: 700; color: var(--primary); }
.hyd-type { color: var(--text-light); }

.hyd-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #eff6ff;
  border: 1px dashed #bfdbfe;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

/* ===== Wellness Mockup ===== */
.wellness-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.well-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #16a34a;
  background: #f0fdf4;
  border-bottom: 1px solid var(--border);
}

.well-body { padding: 24px; }

.well-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.well-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

.well-player strong { display: block; font-size: 0.9rem; color: var(--secondary); }
.well-player span { font-size: 0.72rem; color: var(--text-lighter); }

.well-metrics { margin-bottom: 16px; }

.well-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.well-metric:last-child { border-bottom: none; }

.well-metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  width: 110px;
  flex-shrink: 0;
}

.well-metric-scale {
  display: flex;
  gap: 6px;
  flex: 1;
}

.well-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e2e8f0;
}

.well-dot.active { background: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }

.well-metric-value {
  font-size: 0.68rem;
  font-weight: 700;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.well-metric-value.great { color: #16a34a; }
.well-metric-value.good { color: #2563eb; }
.well-metric-value.low { color: #16a34a; }
.well-metric-value.moderate { color: #d97706; }
.well-metric-value.poor { color: #dc2626; }

.well-overall {
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
}

.well-score { font-size: 1.2rem; margin-left: 6px; }
.well-score.green { color: #16a34a; }

/* ===== AI Nutrition Mockup ===== */
.ai-nutrition-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 470px;
  width: 100%;
}

.ain-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-bottom: 1px solid var(--border);
  color: #6d28d9;
  font-size: 0.92rem;
}

.ain-body { padding: 12px; }

.ain-insight {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.ain-insight:last-child { margin-bottom: 0; }
.ain-insight.warning { background: #fffbeb; border-left: 3px solid var(--amber); }
.ain-insight.alert { background: #fef2f2; border-left: 3px solid var(--red); }
.ain-insight.positive { background: #f0fdf4; border-left: 3px solid var(--green); }
.ain-insight.info { background: #eff6ff; border-left: 3px solid var(--primary); }

.ain-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.ain-icon.amber { background: #fef3c7; color: #d97706; }
.ain-icon.red { background: #fee2e2; color: #dc2626; }
.ain-icon.green { background: #dcfce7; color: #16a34a; }
.ain-icon.blue { background: #dbeafe; color: #1d4ed8; }

.ain-content { flex: 1; min-width: 0; }
.ain-content strong { display: block; font-size: 0.8rem; color: var(--secondary); margin-bottom: 3px; }
.ain-content p { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ===== Recipe Mockup ===== */
.recipe-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

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

.rcp-header strong { font-size: 0.92rem; color: var(--secondary); }

.rcp-search {
  font-size: 0.75rem;
  color: var(--text-lighter);
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rcp-filters {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.rcp-filter {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  background: #f1f5f9;
  white-space: nowrap;
  cursor: pointer;
}

.rcp-filter.active { background: var(--primary); color: #fff; }

.rcp-list { padding: 8px 12px; }

.rcp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.rcp-item:last-child { border-bottom: none; }

.rcp-item-icon {
  width: 36px;
  height: 36px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.rcp-item-info { flex: 1; min-width: 0; }
.rcp-item-info strong { display: block; font-size: 0.82rem; color: var(--secondary); }
.rcp-item-info span { font-size: 0.68rem; color: var(--text-lighter); }

.rcp-time {
  font-size: 0.68rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Weekly Nutrition Mockup ===== */
.weekly-nutrition-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.wn-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0d9488;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
}

.wn-body { padding: 24px; }

.wn-days {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 140px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.wn-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.wn-day-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-lighter);
  margin-bottom: auto;
}

.wn-day-bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 2px;
}

.wn-day-bar {
  width: 100%;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

.wn-day-bar.match-bar { background: #dc2626; }
.wn-day-bar.recovery-bar { background: #8b5cf6; }

.wn-day-kcal {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--text-lighter);
  margin-top: 4px;
}

.wn-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.65rem;
  color: var(--text-light);
}

.wn-legend i { font-size: 0.5rem; margin-right: 3px; }

.wn-summary {
  display: flex;
  gap: 12px;
}

.wn-sum-item {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  background: #f8fafc;
  border-radius: 8px;
}

.wn-sum-item span { display: block; font-size: 0.6rem; color: var(--text-lighter); font-weight: 500; }
.wn-sum-item strong { font-size: 0.88rem; font-weight: 800; color: var(--secondary); }
.wn-sum-item strong.green { color: #16a34a; }

/* ===== Bio-Banding Calculator Mockup ===== */
.bio-calc-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.bcm-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0d9488;
  background: #f0fdfa;
  border-bottom: 1px solid var(--border);
}

.bcm-body { padding: 24px; }

.bcm-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bcm-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.bcm-player strong { display: block; font-size: 0.92rem; color: var(--secondary); }
.bcm-player span { font-size: 0.72rem; color: var(--text-lighter); }

.bcm-inputs { margin-bottom: 16px; }

.bcm-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.bcm-input {
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.bcm-input span { display: block; font-size: 0.6rem; color: var(--text-lighter); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.bcm-input strong { font-size: 0.82rem; color: var(--secondary); }

.bcm-divider {
  height: 2px;
  background: linear-gradient(90deg, #0d9488, transparent);
  margin-bottom: 16px;
}

.bcm-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.bcm-result {
  text-align: center;
  padding: 10px 4px;
  background: #f8fafc;
  border-radius: 8px;
}

.bcm-result span { display: block; font-size: 0.58rem; color: var(--text-lighter); font-weight: 600; text-transform: uppercase; margin-bottom: 2px; }
.bcm-result strong { font-size: 1.1rem; font-weight: 800; color: var(--secondary); }
.bcm-result strong.ahead { color: var(--primary); }

.bcm-maturity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
}

.bcm-maturity-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.bcm-maturity-badge.pre { background: #dbeafe; color: #1d4ed8; }
.bcm-maturity-badge.circa { background: #f59e0b; color: #fff; }
.bcm-maturity-badge.post { background: #22c55e; color: #fff; }

.bcm-maturity-offset { font-size: 0.75rem; color: #92400e; }
.bcm-maturity-offset strong { color: #78350f; }

/* ===== Maturity Categories Mockup ===== */
.maturity-cats-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.mcm-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.mcm-body { padding: 16px; }

.mcm-category {
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.mcm-category:last-child { margin-bottom: 0; }
.mcm-category.pre { background: #eff6ff; border-left: 4px solid #2563eb; }
.mcm-category.circa { background: #fffbeb; border-left: 4px solid #f59e0b; }
.mcm-category.post { background: #f0fdf4; border-left: 4px solid #22c55e; }

.mcm-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mcm-badge {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
}

.mcm-badge.pre { background: #2563eb; color: #fff; }
.mcm-badge.circa { background: #f59e0b; color: #fff; }
.mcm-badge.post { background: #22c55e; color: #fff; }

.mcm-cat-header span { font-size: 0.65rem; color: var(--text-lighter); }

.mcm-cat-desc { font-size: 0.75rem; color: var(--text); line-height: 1.5; margin-bottom: 8px; }

.mcm-cat-warning {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 8px;
}

.mcm-cat-players {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.mcm-player-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mcm-category.pre .mcm-player-dot { background: #93bbfd; }
.mcm-category.circa .mcm-player-dot { background: #fbbf24; }
.mcm-category.post .mcm-player-dot { background: #4ade80; }

.mcm-cat-players span { font-size: 0.65rem; color: var(--text-lighter); font-weight: 600; margin-left: 4px; }

/* ===== AI Maturity Mockup ===== */
.ai-maturity-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 470px;
  width: 100%;
}

.aim-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-bottom: 1px solid var(--border);
  color: #6d28d9;
  font-size: 0.92rem;
}

.aim-body { padding: 16px; }

.aim-player-context {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 12px;
}

.aim-rec {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #f8fafc;
  margin-bottom: 8px;
}

.aim-rec:last-child { margin-bottom: 0; }
.aim-rec.risk { background: #fef2f2; border-left: 3px solid var(--red); }
.aim-rec.position { background: #eff6ff; border-left: 3px solid var(--primary); }
.aim-rec.rtp { background: #fffbeb; border-left: 3px solid var(--amber); }
.aim-rec.development { background: #f0fdf4; border-left: 3px solid var(--green); }

.aim-rec-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.aim-rec-icon.red { background: #fee2e2; color: #dc2626; }
.aim-rec-icon.blue { background: #dbeafe; color: #1d4ed8; }
.aim-rec-icon.amber { background: #fef3c7; color: #d97706; }
.aim-rec-icon.green { background: #dcfce7; color: #16a34a; }

.aim-rec-content { flex: 1; min-width: 0; }
.aim-rec-content strong { display: block; font-size: 0.8rem; color: var(--secondary); margin-bottom: 3px; }
.aim-rec-content p { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ===== Growth Chart Mockup ===== */
.growth-chart-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}

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

.gcm-header strong { font-size: 0.88rem; color: var(--secondary); }

.gcm-tabs { display: flex; gap: 4px; }

.gcm-tab {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-lighter);
  cursor: pointer;
}

.gcm-tab.active { background: var(--primary); color: #fff; }

.gcm-body { padding: 20px; }

.gcm-chart {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.gcm-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.55rem;
  color: var(--text-lighter);
  text-align: right;
  width: 20px;
  padding: 4px 0;
}

.gcm-chart-area {
  flex: 1;
  position: relative;
  height: 140px;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gcm-threshold {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  border-top: 2px dashed #dc2626;
  z-index: 1;
}

.gcm-threshold span {
  position: absolute;
  top: -16px;
  right: 0;
  font-size: 0.52rem;
  color: #dc2626;
  font-weight: 600;
  white-space: nowrap;
}

.gcm-line-svg {
  position: absolute;
  top: 8px;
  left: 4px;
  right: 4px;
  bottom: 24px;
  width: calc(100% - 8px);
  height: calc(100% - 32px);
}

.gcm-x-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: var(--text-lighter);
  padding: 4px 4px 0;
}

.gcm-info {
  display: flex;
  gap: 12px;
}

.gcm-info-item {
  flex: 1;
  text-align: center;
  padding: 8px;
  background: #f8fafc;
  border-radius: 6px;
}

.gcm-info-item span { display: block; font-size: 0.58rem; color: var(--text-lighter); font-weight: 600; }
.gcm-info-item strong { font-size: 0.85rem; font-weight: 800; color: var(--secondary); }
.gcm-info-item strong.red { color: #dc2626; }

/* ===== Squad Maturity Mockup ===== */
.squad-maturity-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.smm-header {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #d97706;
  background: #fffbeb;
  border-bottom: 1px solid var(--border);
}

.smm-body { padding: 20px; }

.smm-summary-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.smm-card {
  text-align: center;
  padding: 10px 6px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.smm-card strong { display: block; font-size: 1.3rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.smm-card span { font-size: 0.6rem; color: var(--text-lighter); }

.smm-card.pre { border-color: #bfdbfe; background: #eff6ff; }
.smm-card.pre strong { color: #2563eb; }
.smm-card.circa { border-color: #fde68a; background: #fffbeb; }
.smm-card.circa strong { color: #d97706; }
.smm-card.post { border-color: #bbf7d0; background: #f0fdf4; }
.smm-card.post strong { color: #16a34a; }

.smm-table { margin-bottom: 14px; }

.smm-table-head {
  display: grid;
  grid-template-columns: 1fr 36px 36px 48px 40px 44px 48px;
  gap: 4px;
  padding: 8px 6px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-lighter);
  border-bottom: 2px solid var(--border);
}

.smm-table-row {
  display: grid;
  grid-template-columns: 1fr 36px 36px 48px 40px 44px 48px;
  gap: 4px;
  padding: 8px 6px;
  font-size: 0.72rem;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
}

.smm-name { font-weight: 600; color: var(--secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.smm-growth { font-weight: 700; }
.smm-growth.warn { color: #dc2626; }

.smm-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 800;
  text-align: center;
}

.smm-badge.pre { background: #dbeafe; color: #1d4ed8; }
.smm-badge.circa { background: #fef3c7; color: #d97706; }
.smm-badge.post { background: #dcfce7; color: #16a34a; }

.smm-risk-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 0.72rem;
  color: #b91c1c;
  font-weight: 500;
}

.smm-risk-flag i { color: #dc2626; }

/* ===== Bio Integration Mockup ===== */
.bio-integration-mockup {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.bim-center { text-align: center; }

.bim-hub {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(13,148,136,0.3);
}

.bim-hub i { font-size: 1.8rem; }
.bim-hub strong { font-size: 0.75rem; }

.bim-spokes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.bim-spoke {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.3s;
}

.bim-spoke:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }

.bim-spoke i {
  font-size: 1.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.bim-spoke span { display: block; font-size: 0.78rem; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.bim-spoke small { font-size: 0.62rem; color: var(--text-lighter); }

/* ===== Nav Pro Link ===== */
.nav-pro-link {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700 !important;
}

/* ===== Pro Hero ===== */
.pro-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff;
  text-align: center;
}

.pro-hero-content {
  max-width: 720px;
  margin: 0 auto 48px;
}

.pro-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.pro-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pro-hero p {
  font-size: 1.15rem;
  color: #a5b4fc;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pro-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pro-hero-logos {
  max-width: 500px;
  margin: 0 auto;
}

.pro-hero-logos > span {
  display: block;
  font-size: 0.78rem;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}

.pro-logos-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.pro-logos-row img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.pro-logos-row img:hover { opacity: 0.8; }

/* ===== Pro Pillars ===== */
.pro-pillars {
  padding: 100px 0;
}

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

.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
}

.pillar-card.featured {
  border-color: #6366f1;
  box-shadow: 0 8px 30px rgba(99,102,241,0.15);
  position: relative;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.pillar-icon.revenue { background: #dcfce7; color: #16a34a; }
.pillar-icon.control { background: #e0e7ff; color: #4338ca; }
.pillar-icon.performance { background: #ede9fe; color: #7c3aed; }

.pillar-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pillar-card > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pillar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.pillar-features li i { color: var(--green); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }

/* ===== Pro Benefits ===== */
.pro-benefits {
  padding: 100px 0;
  background: var(--bg-alt);
}

.pro-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pro-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.pro-benefit-card:hover {
  border-color: #6366f1;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pb-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e0e7ff, #ede9fe);
  color: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.pro-benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pro-benefit-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Pro Modules ===== */
.pro-modules {
  padding: 100px 0;
}

.pro-modules-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pro-module-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.pro-module-category {
  width: 200px;
  flex-shrink: 0;
}

.pro-module-category h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 100px;
}

.pro-module-category h4 i { color: var(--primary); }

.pro-module-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pro-module-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.pro-module-item:hover {
  border-color: #6366f1;
  box-shadow: var(--shadow-md);
}

.pro-module-item > i {
  font-size: 1.1rem;
  color: #6366f1;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.pro-module-item strong { display: block; font-size: 0.82rem; color: var(--secondary); }
.pro-module-item span { font-size: 0.68rem; color: var(--text-lighter); }

/* ===== Pro Comparison Table ===== */
.pro-comparison {
  padding: 100px 0;
  background: var(--bg-alt);
}

.comparison-table {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 8px;
  padding: 16px 24px;
  background: #f8fafc;
  border-bottom: 2px solid var(--border);
  font-weight: 700;
  font-size: 0.85rem;
}

.comp-feature-label { color: var(--text-lighter); }
.comp-plan { text-align: center; color: var(--text-light); }

.comp-plan.pro {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 8px;
  padding: 12px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.85rem;
  align-items: center;
}

.comp-row:last-child { border-bottom: none; }

.comp-feature { color: var(--text); font-weight: 500; }

.comp-val {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
}

.comp-val.pro { font-weight: 600; color: var(--secondary); }

.comp-val .green { color: #16a34a; }
.comp-val .grey { color: #cbd5e1; }

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pro-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-module-row {
    flex-direction: column;
  }

  .pro-module-category {
    width: auto;
  }

  .pro-module-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pro-hero h1 { font-size: 2rem; }

  .pro-logos-row { gap: 16px; flex-wrap: wrap; }
  .pro-logos-row img { height: 28px; }

  .pro-benefits-grid { grid-template-columns: 1fr; }

  .pro-module-items { grid-template-columns: 1fr; }

  .comp-header,
  .comp-row {
    grid-template-columns: 1fr 70px 70px;
    font-size: 0.75rem;
  }
}
