/* ==========================================================================
   Parikshawala CSS stylesheet
   Highly Premium & Responsive Design
   Built with Modern Glassmorphism & Soft Glows
   ========================================================================== */

/* Design Tokens / Root Variables */
:root {
  /* Dark Theme Default */
  --bg-color: #0b0d19;
  --bg-surface: rgba(18, 22, 40, 0.85);
  --bg-surface-opaque: #121628;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #6366f1;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.3);
  --accent: #a855f7;
  --accent-glow: rgba(168, 85, 247, 0.3);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --whatsapp-color: #25d366;
  
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.4);
  --glass-blur: 8px;
  
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.25s ease-out;
  --transition-slow: 0.4s ease-out;
  
  --max-width: 1200px;
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-color: #f6f8fd;
  --bg-surface: rgba(255, 255, 255, 0.9);
  --bg-surface-opaque: #ffffff;
  --border-color: rgba(99, 102, 241, 0.1);
  --border-focus: #4f46e5;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --primary: #4f46e5;
  --primary-glow: rgba(79, 70, 229, 0.15);
  --accent: #9333ea;
  --accent-glow: rgba(147, 51, 234, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(99, 102, 241, 0.07);
  --shadow-lg: 0 16px 32px rgba(99, 102, 241, 0.1);
}

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

html {
  /* Instant, responsive mouse wheel scrolling */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Soft Glow Bulbs - Optimized Fixed Layer */
.glow-bg {
  position: fixed;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
  transform: translate3d(0, 0, 0);
}

.glow-1 {
  top: -10vw;
  right: -10vw;
  background: radial-gradient(circle, var(--primary) 0%, rgba(99, 102, 241, 0.3) 40%, transparent 70%);
}

.glow-2 {
  bottom: 10%;
  left: -10vw;
  background: radial-gradient(circle, var(--accent) 0%, rgba(168, 85, 247, 0.25) 40%, transparent 70%);
}

[data-theme="light"] .glow-bg {
  opacity: 0.05;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success) !important; }
.text-accent { color: var(--accent) !important; }
.text-warning { color: var(--warning) !important; }
.max-w-sm { max-width: 450px; margin: 0 auto; }
.scroll-margin { scroll-margin-top: 100px; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
  border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-family);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--bg-surface-opaque);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #d946ef 100%);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
  filter: brightness(1.1);
}

.btn-icon {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.05);
}

.btn-danger-link {
  background: transparent;
  color: var(--danger);
  border: none;
  padding: 0.5rem;
}
.btn-danger-link:hover {
  color: #ff3b3b;
  opacity: 0.8;
  transform: scale(1.03);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Glassmorphism Card Style - Hardware Accelerated */
.card-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  transform: translateZ(0);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-fast);
}

.card-glass:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .card-glass {
  background: var(--bg-surface);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

/* Typography & Badges */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

/* Header & Navbar - Hardware Accelerated */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 25, 0.94);
  border-bottom: 1px solid var(--border-color);
  transform: translateZ(0);
}

[data-theme="light"] header {
  background: rgba(246, 248, 253, 0.96);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-color);
  z-index: 99;
  overflow: hidden;
  transition: height var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.open {
  height: calc(100vh - 80px);
}

.mobile-nav-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
}

.mobile-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 1rem 0;
}

.mobile-auth-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* SPA View Containers */
.active-view {
  display: block;
  animation: fade-in-view var(--transition-normal) forwards;
}

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

@keyframes fade-in-view {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------
   LANDING VIEW ELEMENTS
   -------------------------------------------------------- */

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  min-height: calc(80vh - 80px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-trust-metrics {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.metric strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

.metric-divider {
  width: 1px;
  height: 35px;
  background-color: var(--border-color);
}

/* Hero Media & Image effects */
.hero-media {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.floating-card {
  position: absolute;
  background: var(--bg-surface-opaque);
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  animation: float-slow 4s ease-in-out infinite;
  transform: translateZ(0);
  will-change: transform;
}

.floating-card i {
  font-size: 1.5rem;
}

.floating-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.floating-card p {
  font-size: 0.75rem;
  font-weight: 500;
}

.card-top-left {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.card-bottom-right {
  bottom: 12%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float-slow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Interactive Simulation Banner */
.interactive-simulation-banner {
  padding: 3rem 0;
}

.simulator-card {
  background: rgba(18, 22, 40, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

.simulator-text {
  max-width: 500px;
}

.simulator-text h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.simulator-text h3 i {
  color: var(--accent);
}

.simulator-form {
  flex-grow: 1;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-with-button {
  display: flex;
  background: var(--bg-surface-opaque);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 6px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.input-with-button:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.input-with-button input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
}

.input-with-button button {
  border-radius: 8px;
}

.input-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* How it Works / Section Header */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.subheading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.how-it-works-section {
  padding: 6rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.step-icon {
  background: linear-gradient(135deg, var(--primary-glow) 0%, rgba(168, 85, 247, 0.05) 100%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.75rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 4rem 0 6rem 0;
}

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

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-icon-alt {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.color-purple { color: #a855f7; }
.color-blue { color: #3b82f6; }
.color-green { color: #10b981; }
.color-orange { color: #f97316; }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
}

/* App Integration Section */
.app-integration-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.04) 50%, transparent 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.app-visual {
  display: flex;
  justify-content: center;
}

.mobile-mockup-container {
  width: 280px;
  position: relative;
  padding: 10px;
  background: #1e293b;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 0 10px #0f172a;
}

.mobile-img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

.app-notification-pill {
  position: absolute;
  bottom: 10%;
  left: -40px;
  right: -40px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: float-slow 3s ease-in-out infinite alternate;
}

.text-whatsapp {
  color: var(--whatsapp-color);
  font-size: 1.75rem;
}

.pill-text h5 {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 0.1rem;
}

.pill-text p {
  font-size: 0.7rem;
  color: #94a3b8;
}

.app-info h2 {
  margin-bottom: 1.25rem;
}

.app-workflow-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.workflow-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.badge-num {
  background: var(--primary-glow);
  color: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.workflow-step h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.workflow-step p {
  font-size: 0.85rem;
}

.app-download-badges {
  display: flex;
  gap: 1rem;
}

.store-btn {
  text-decoration: none;
  background-color: var(--bg-surface-opaque);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.store-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.1) 0%, rgba(18, 22, 40, 0.85) 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px var(--primary-glow);
}

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

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-surface-opaque);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.featured-badge {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 12px var(--primary-glow);
}

.pricing-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 0.15rem;
}

.price-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.period {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.pricing-features li i {
  color: var(--success);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-features li span {
  flex-grow: 1;
  color: var(--text-secondary);
}

.pricing-features li span strong {
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-policy-badge {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-policy-badge div {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.pricing-policy-badge i {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------
   ONBOARDING VIEW ELEMENTS
   -------------------------------------------------------- */

#onboarding-view {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
}

.onboarding-wrapper {
  width: 100%;
  max-width: 680px;
}

.onboarding-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.progress-step:hover .step-dot {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--primary);
  box-shadow: 0 0 14px var(--primary-glow);
}

.progress-step:hover span {
  color: var(--text-primary);
}

.progress-step:active .step-dot {
  transform: translateY(0) scale(0.98);
}

.step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-surface-opaque);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all var(--transition-normal);
}

.progress-step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.progress-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--border-color);
  margin: -1.5rem 0.5rem 0 0.5rem;
  z-index: 0;
  transition: background-color var(--transition-normal);
}

.progress-step.active .step-dot {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 12px var(--primary-glow);
}

.progress-step.active span {
  color: var(--text-primary);
}

.progress-step.complete .step-dot {
  background-color: var(--success);
  border-color: var(--success);
  color: white;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.progress-line.active {
  background-color: var(--primary);
}

.onboarding-step-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.onboarding-step-content p {
  margin-bottom: 2.5rem;
}

/* Authentication Tabs */
.auth-tabs {
  display: flex;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 2rem;
}

.auth-tab {
  flex-grow: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-tab.active {
  background-color: var(--bg-surface-opaque);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* Onboarding Onboarding forms */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1.25rem;
  color: var(--text-muted);
}

.input-wrapper input {
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem 1rem 3rem;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.input-wrapper select {
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 2.5rem 1rem 1.25rem; /* No icon on left, custom chevron room on right */
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1rem;
}

.input-wrapper select option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.validation-error {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.terms-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.terms-agree input {
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
}

.terms-agree label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.terms-agree label a {
  color: var(--primary);
  text-decoration: none;
}

.footer-auth-text {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.footer-auth-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Step 2 Selection Cards */
.board-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.selector-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.selector-card:hover {
  border-color: var(--primary);
}

.selector-card.active {
  border-color: var(--primary);
  background-color: var(--primary-glow);
}

.selector-icon {
  background: var(--bg-surface-opaque);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.selector-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.selector-card p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.selected-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
}

.selector-card.active .selected-badge {
  opacity: 1;
  transform: scale(1);
}

.class-selector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.class-btn {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.class-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.button-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

/* Onboarding Step 3 Success Dashboard Preview */
.status-illustration {
  margin-bottom: 1.5rem;
}

.success-ring {
  width: 72px;
  height: 72px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.success-summary-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.summary-row span {
  color: var(--text-secondary);
}

.summary-row strong {
  color: var(--text-primary);
}

.app-download-instructions {
  background-color: rgba(99, 102, 241, 0.05);
  border: 1px dashed var(--primary-glow);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.app-download-instructions h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
}

.app-download-instructions ol {
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --------------------------------------------------------
   PARENT DASHBOARD VIEW
   -------------------------------------------------------- */

#dashboard-view {
  padding: 4rem 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Sidebar Profile */
.sidebar-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-large {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sidebar-profile-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.user-role-badge {
  font-size: 0.75rem;
  background-color: var(--primary-glow);
  color: var(--primary);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
}

.card-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  width: 100%;
  margin: 1.5rem 0;
}

.profile-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.profile-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.profile-item .label {
  color: var(--text-secondary);
}

.profile-item .value {
  font-weight: 700;
}

/* QR Code Card */
.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.qr-card p {
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.qr-mock {
  width: 140px;
  height: 140px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.qr-icon {
  font-size: 7rem;
  color: #0b0d19;
}

.qr-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dashboard Main Workspace */
.status-banner-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.status-left {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.bg-emerald {
  background-color: var(--success);
}

.status-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.status-info p {
  font-size: 0.85rem;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.credit-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-value {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.count-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.25rem;
}

.dashboard-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

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

/* Answer Sheet Papers Lists */
.papers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.paper-card {
  padding: 1.75rem;
}

.paper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.subject-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  color: white;
}

.bg-cbse {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.bg-icse {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.date-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.paper-title {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.paper-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

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

.paper-stats .stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.paper-stats .stat .value {
  font-weight: 700;
  font-size: 1rem;
}

.status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
}

.status-pill.evaluated {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.status-pill.pending {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

/* Empty Dashboard State */
.empty-papers {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem;
}

.empty-icon {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.empty-papers h3 {
  margin-bottom: 0.5rem;
}

.empty-papers p {
  font-size: 0.9rem;
  max-width: 400px;
  margin-bottom: 2rem;
}

/* Subject Analytics */
.analytics-card {
  padding: 2rem;
}

.analytics-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.analytics-card p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.analytics-col h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet-list {
  padding-left: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --------------------------------------------------------
   MODALS AND INTERACTIVE OVERLAYS
   -------------------------------------------------------- */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 13, 25, 0.88);
  z-index: 110;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  margin: auto;
  box-sizing: border-box;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  background-color: var(--bg-surface-opaque);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--danger);
  color: var(--danger);
  transform: scale(1.05);
}

.modal-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  text-align: center;
}

.modal-card p {
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.modal-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-footer-text {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1.25rem;
  margin-bottom: 0 !important;
}

.modal-footer-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Payment Modal specific */
.payment-modal {
  max-width: 500px;
  padding: 2.25rem;
}

.modal-badge-crown {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.85rem auto;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.order-summary-box {
  background-color: var(--bg-surface-opaque);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}

.order-item.small {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  gap: 1rem;
}

.summary-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 0.5rem 0;
}

.order-item.total {
  font-size: 1.1rem;
  font-weight: 800;
  padding-top: 0.2rem;
}

.form-section-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.payment-tab {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.payment-tab:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.payment-tab.active {
  border-color: var(--primary);
  background-color: var(--primary-glow);
  color: var(--text-primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.payment-method-fields {
  animation: fade-in-view var(--transition-fast) forwards;
}

/* Paper Report/Evaluated Sheet Modal specific */
.report-view-modal {
  max-width: 980px;
  width: 95%;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  padding: 2.25rem;
  border-radius: 24px;
}

.report-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.15rem;
  margin-bottom: 1.5rem;
}

.report-header h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.report-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.report-content-scroller {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.75rem;
  max-height: none;
  padding-right: 0.25rem;
}

/* Paper Sheet Annotation Area */
.paper-evaluation-simulator {
  background-color: #ffffff;
  color: #1e293b;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.evaluated-page {
  padding: 1.75rem 2rem;
}

.page-title-banner {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  text-align: center;
  background-color: #f1f5f9;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 1rem;
  margin-bottom: 1.5rem;
}

.paper-body {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', Courier, monospace;
  font-weight: 500;
}

.question-block {
  margin-bottom: 1.75rem;
}

.q-num {
  font-weight: 800;
  color: #1e293b;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.question-text {
  color: #0f172a;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.student-answer-handwritten {
  font-style: italic;
  color: #0284c7;
  padding: 1rem 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  line-height: 2.1;
  position: relative;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.teacher-annotation {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-family);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0.25rem 0 0.25rem 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  vertical-align: middle;
}

.teacher-annotation.wrong {
  color: #b91c1c;
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  border-left: 3px solid #ef4444;
}

.teacher-annotation.check {
  color: #047857;
  background-color: #d1fae5;
  border: 1px solid #6ee7b7;
  border-left: 3px solid #10b981;
}

.teacher-annotation.correct-final {
  color: #1d4ed8;
  background-color: #dbeafe;
  border: 1px solid #93c5fd;
  border-left: 3px solid #3b82f6;
  font-size: 0.85rem;
}

.evaluation-card-comment {
  font-family: var(--font-family);
  font-size: 0.88rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  padding: 0.9rem 1.15rem;
  border-radius: 10px;
  color: #334155;
  line-height: 1.55;
}

.evaluation-card-comment strong {
  color: #0f172a;
  display: block;
  margin-bottom: 0.3rem;
}

/* Report Summary Right Panel */
.report-summary-panel {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.report-score-metric {
  background: linear-gradient(145deg, var(--bg-surface-opaque) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--border-color);
  padding: 1.65rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.report-score-metric .score-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.report-score-metric .score-grade {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.35rem;
}

.suggested-remedies h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.suggested-remedies ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.suggested-remedies li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--bg-surface-opaque);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slide-in-toast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  min-width: 250px;
}

.toast.success { border-left-color: var(--success); }
.toast.info { border-left-color: var(--primary); }
.toast.warning { border-left-color: var(--warning); }
.toast.danger { border-left-color: var(--danger); }

@keyframes slide-in-toast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.fade-out {
  animation: fade-out-toast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-out-toast {
  to { transform: translateY(10px); opacity: 0; }
}

/* Simulated Phone Notification Panel (WhatsApp Pop-up) */
.phone-notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 380px;
  background-color: #1f2c34; /* WhatsApp Web Dark style background */
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 200;
  overflow: hidden;
  font-family: var(--font-family);
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-notification.show {
  transform: translateY(0);
}

.notif-header {
  padding: 0.75rem 1rem;
  background-color: #121b22;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.notif-app-logo {
  background-color: var(--whatsapp-color);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.notif-meta {
  flex-grow: 1;
}

.notif-meta h4 {
  font-size: 0.8rem;
  color: #e9edef;
  margin: 0;
}

.notif-meta span {
  font-size: 0.7rem;
  color: #8696a0;
}

.notif-close {
  background: none;
  border: none;
  color: #8696a0;
  cursor: pointer;
  font-size: 0.9rem;
}

.notif-body {
  padding: 1rem;
  color: #d1d7db;
  font-size: 0.85rem;
  line-height: 1.4;
}

.notif-body p {
  color: #e9edef;
}

.notif-link {
  color: #29b6f6;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  word-break: break-all;
}

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */

footer {
  background-color: #070911;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  margin-top: 6rem;
  transition: background-color var(--transition-normal);
}

[data-theme="light"] footer {
  background-color: #eaeff8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  background-color: var(--bg-surface-opaque);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

footer h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-icon {
  margin-right: 0.5rem;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------- */

@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  
  .navbar { height: 70px; }
  .mobile-nav-overlay { top: 70px; }
  
  .nav-links, .nav-actions #auth-nav-buttons, .nav-actions #user-profile-nav {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .grid-2, .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-metrics {
    justify-content: center;
  }
  
  .floating-card {
    display: none; /* Hide floating cards on small mobile screens */
  }
  
  .simulator-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .board-selector-grid {
    grid-template-columns: 1fr;
  }
  
  .class-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Dashboard Responsive */
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .status-banner-card {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .status-left {
    flex-direction: column;
  }
  
  .status-right {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .papers-grid {
    grid-template-columns: 1fr;
  }
  
  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .report-content-scroller {
    grid-template-columns: 1fr;
    max-height: 70vh;
  }
  
  .phone-notification {
    width: calc(100% - 3rem);
    left: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .class-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PARIKSHAWALA LOGO & STUDENT ID VALIDATION STYLES
   ========================================================================== */

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.logo:hover .logo-img {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.logo:hover .logo-text {
  opacity: 0.95;
}

.logo-text .accent-part {
  color: var(--accent);
  font-weight: 800;
}

.modal-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Student ID validation status badge in sidebar */
.badge-validation {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-validation.unvalidated {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-validation.validated {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Validation banner at the top of dashboard main content */
.validation-banner-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--warning);
  background: rgba(245, 158, 11, 0.03);
}

.validation-left {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.validation-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.validation-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.validation-right {
  display: flex;
  align-items: center;
}

.bg-warning {
  background-color: var(--warning);
  color: #0f172a;
}

/* Lock overlay for answer sheets list when unvalidated */
.papers-grid-wrapper {
  position: relative;
}

.papers-grid.blur-grid {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.dashboard-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 16px;
}

.dashboard-lock-overlay.hidden {
  display: none !important;
}

.lock-overlay-content {
  text-align: center;
  max-width: 420px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lock-overlay-content .lock-icon {
  font-size: 2.2rem;
  color: var(--warning);
  background: rgba(245, 158, 11, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.lock-overlay-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.lock-overlay-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

/* Validation Modal design customizations */
.modal-badge-shield {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem auto;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.validation-summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.validation-modal {
  max-width: 480px;
}

.input-subtext strong {
  color: var(--warning);
  font-weight: 600;
}

/* ==========================================================================
   CHILD PROFILE SWITCHER & OVERALL ACADEMIC SCORECARD STYLES
   ========================================================================== */

/* Child Profile Switcher in Sidebar */
.child-switcher-box {
  width: 100%;
  margin-bottom: 1.25rem;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem;
}

.child-switcher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.child-switcher-header span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.child-pills-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.child-pill-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  width: 100%;
}

.child-pill-btn:hover {
  background: rgba(99, 102, 241, 0.08);
  color: var(--text-primary);
  border-color: rgba(99, 102, 241, 0.2);
}

.child-pill-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(168, 85, 247, 0.18) 100%);
  border-color: var(--primary);
  color: var(--text-primary);
}

.child-pill-btn .child-pill-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.child-pill-btn.active .child-pill-meta {
  color: var(--accent);
  font-weight: 700;
}

/* Overall Scorecard Grid */
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.scorecard-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.scorecard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.scorecard-card.card-accent::before {
  background: var(--accent);
}

.scorecard-card.card-success::before {
  background: var(--success);
}

.scorecard-card.card-warning::before {
  background: var(--warning);
}

.scorecard-icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.scorecard-card.card-accent .scorecard-icon {
  color: var(--accent);
}

.scorecard-card.card-success .scorecard-icon {
  color: var(--success);
}

.scorecard-card.card-warning .scorecard-icon {
  color: var(--warning);
}

.scorecard-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.scorecard-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.scorecard-sub {
  font-size: 0.72rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Subject Mastery Progress Bars */
.subject-mastery-card {
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.subject-bars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.subject-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.subject-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
}

.subject-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.subject-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.subject-bar-fill.fill-math {
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
}

.subject-bar-fill.fill-science {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.subject-bar-fill.fill-english {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.subject-bar-fill.fill-social {
  background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 100%);
}

/* Action Plan & Focus Card */
.focus-card {
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.focus-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.focus-item {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.focus-item h4 {
  font-size: 0.92rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.focus-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (max-width: 992px) {
  .scorecard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subject-bars-grid {
    grid-template-columns: 1fr;
  }
  .focus-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .scorecard-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------
   RESOURCE & LEGAL RICH MODALS STYLING
   -------------------------------------------------------- */
.modal-card-lg {
  max-width: 760px;
}

.modal-card-xl {
  max-width: 960px;
}

.modal-text-content {
  text-align: left;
  line-height: 1.65;
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.modal-text-content::-webkit-scrollbar {
  width: 6px;
}

.modal-text-content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 9999px;
}

.modal-text-content h3 {
  color: var(--text-primary);
  font-size: 1.08rem;
  margin: 1.5rem 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.4rem;
}

.modal-text-content h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 1rem 0 0.35rem 0;
}

.modal-text-content p {
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.modal-text-content ul, .modal-text-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.modal-text-content li {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 auto 1rem auto;
}

.policy-callout-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.policy-callout-box.warning-callout {
  border-left-color: var(--warning);
  background: rgba(245, 158, 11, 0.08);
}

.policy-callout-box.success-callout {
  border-left-color: var(--success);
  background: rgba(16, 185, 129, 0.08);
}

/* Interactive Tabs for Sample Evaluations & Syllabus Matcher */
.tab-pills-bar {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.tab-pill-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.tab-pill-btn:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.tab-pill-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.syllabus-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.syllabus-chip {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.syllabus-chip .chip-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.syllabus-chip .chip-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.syllabus-chip .chip-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
}

