/* =============================================
   ITHUB ACADEMY - Main Stylesheet
   ============================================= */

:root {
  --primary: #5c6ef8;
  --primary-dark: #4255e8;
  --primary-soft: rgba(92, 110, 248, 0.1);
  --secondary: #1a1d2e;
  --dark: #0d0f1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --section-light: #f8f9fc;
  --gradient: linear-gradient(135deg, #5c6ef8 0%, #8b5cf6 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
* { box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1d2e;
  background-color: #ffffff;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ---- Utilities ---- */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-light { background-color: var(--section-light); }
.section-dark { background-color: var(--secondary); }
.py-6 { padding-top: 80px !important; padding-bottom: 80px !important; }

/* ---- Navbar ---- */
#mainNav {
  background: rgba(13, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
  transition: var(--transition);
}
#mainNav .brand-icon { color: var(--primary); margin-right: 6px; font-size: 1.2em; }
#mainNav .navbar-brand { font-size: 1.3rem; letter-spacing: -0.5px; }
#mainNav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #fff !important;
  background: rgba(92, 110, 248, 0.15);
}
#mainNav .btn-primary { background: var(--gradient); border: none; font-weight: 600; font-size: 0.875rem; }

/* ---- Section Headers ---- */
.section-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.2; margin-top: 10px; margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ---- Hero Section ---- */
.hero-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: #8b5cf6; bottom: 50px; left: -100px; }
.shape-3 { width: 200px; height: 200px; background: #06b6d4; top: 50%; left: 50%; }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(92, 110, 248, 0.15);
  border: 1px solid rgba(92, 110, 248, 0.3);
  color: #a5b4fc;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Hero Stats */
.hero-stats { gap: 24px; }
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); height: 40px; }

/* Hero Illustration */
.hero-illustration {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-code-block {
  background: #1a1d2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0;
  width: 340px;
  box-shadow: var(--shadow-lg);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  overflow: hidden;
}
.code-header {
  background: #0d0f1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 6px; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }
.code-body { padding: 20px; line-height: 2; }
.code-line { display: block; }
.kw { color: #c792ea; }
.fn { color: #82aaff; }
.str { color: #c3e88d; }
.cm { color: #546e7a; }
.code-cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  background: var(--primary);
  margin-top: 6px;
  animation: blink 1s infinite;
  border-radius: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1d2e;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.card-1 { top: 30px; right: 30px; animation: float 3s ease-in-out infinite; }
.card-2 { bottom: 80px; right: 10px; animation: float 3s ease-in-out infinite 1s; }
.card-3 { bottom: 30px; left: 10px; animation: float 3s ease-in-out infinite 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Hero Wave */
.hero-wave { margin-bottom: -2px; line-height: 0; }

/* ---- Stats Section ---- */
.stat-card {
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon {
  width: 56px; height: 56px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--primary);
}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ---- Category Cards ---- */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 2px solid var(--border);
  transition: var(--transition);
  color: var(--secondary);
  text-align: center;
}
.category-card:hover, .category-all:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-icon {
  width: 52px; height: 52px;
  background: var(--section-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary);
  transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--primary); color: #fff; }
.category-name { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }

/* ---- Course Cards ---- */
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.course-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
}
.course-card-icon {
  background: var(--gradient);
  padding: 28px 24px 20px;
  font-size: 2.5rem;
  color: white;
  text-align: center;
  position: relative;
}
.course-card-body { padding: 20px; flex: 1; }
.course-category { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.course-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.course-description { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: var(--text-muted); }
.course-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--section-light);
}
.course-price { font-size: 1.1rem; font-weight: 800; color: var(--primary); }

/* Badge levels */
.badge.bg-beginner { background-color: #10b981 !important; }
.badge.bg-intermediate { background-color: #f59e0b !important; }
.badge.bg-advanced { background-color: #ef4444 !important; }

/* ---- Feature Cards ---- */
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}
.feature-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--primary-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-card h6 { color: #fff; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.feature-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.5; margin: 0; }
.text-muted-light { color: rgba(255,255,255,0.6); }

/* ---- Testimonial Cards ---- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-course { font-size: 0.78rem; color: var(--text-muted); }

/* ---- CTA Section ---- */
.cta-section { background: var(--gradient); }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: 12px; }
.cta-subtitle { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--gradient); }

/* ---- Page Header ---- */
.page-header {
  background: var(--dark);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(92, 110, 248, 0.3) 0%, transparent 70%);
}
.page-header-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 12px; position: relative; }
.page-header-subtitle { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 20px; position: relative; }
.page-header .breadcrumb { background: none; padding: 0; position: relative; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb-item.active,
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.badge-info-item {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  display: inline-flex; align-items: center;
}

/* ---- Filter Section ---- */
.sticky-filters {
  position: sticky;
  top: 66px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.sticky-filters .form-control,
.sticky-filters .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
}
.sticky-filters .form-control:focus,
.sticky-filters .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92, 110, 248, 0.15);
}
.input-group .input-group-text { border-radius: 10px 0 0 10px; border-right: none; }
.input-group .form-control { border-radius: 0 10px 10px 0; }

/* ---- Course Detail ---- */
.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.detail-card-title {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  margin: 0;
  background: var(--section-light);
}
.detail-card-body { padding: 24px; color: var(--text-muted); line-height: 1.8; }
.learn-item { padding: 6px 0; font-size: 0.9rem; display: flex; align-items: flex-start; }

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-course-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white;
}
.sidebar-price { font-size: 2rem; font-weight: 900; color: var(--primary); }
.sidebar-details { border-top: 1px solid var(--border); padding-top: 16px; }
.sidebar-details li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  gap: 10px;
}
.sidebar-details li i { font-size: 1rem; width: 20px; }
.sidebar-details li span { flex: 1; color: var(--text-muted); }

/* ---- About Page ---- */
.about-value-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--section-light);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
}
.about-visual { padding: 24px; }
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.about-stat-item:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-stat-icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; }
.about-stat-number { font-size: 1.8rem; font-weight: 900; color: var(--secondary); }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.mvv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mvv-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.bg-primary-soft { background: rgba(92, 110, 248, 0.1); }
.bg-success-soft { background: rgba(16, 185, 129, 0.1); }
.bg-warning-soft { background: rgba(245, 158, 11, 0.1); }
.bg-info-soft { background: rgba(6, 182, 212, 0.1); }
.mvv-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.mvv-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Team */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary); }
.team-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.team-initials {
  width: 80px; height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; font-weight: 700;
  margin: 0 auto;
}
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: 0.82rem; font-weight: 600; }
.team-bio { line-height: 1.6; }
.team-social-link {
  width: 32px; height: 32px;
  background: var(--section-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.team-social-link:hover { background: var(--primary); color: #fff; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
  color: var(--secondary);
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: none;
}
.faq-item .accordion-button::after { filter: none; }

/* ---- Contact Page ---- */
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-info-value { font-size: 0.9rem; font-weight: 500; color: var(--secondary); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.input-group-icon { position: relative; }
.input-group-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 5;
}
.input-group-icon .form-control { padding-left: 44px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92, 110, 248, 0.15);
}
.map-section { height: 300px; }
.map-placeholder {
  height: 100%;
  background: var(--section-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
}
.footer .text-muted { color: rgba(255,255,255,0.45) !important; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* ---- Empty State ---- */
.empty-state i { opacity: 0.3; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-section { padding-top: 80px; }
  .hero-title { font-size: 2.2rem; }
  .page-header { padding: 120px 0 40px; }
  .contact-form-card { padding: 20px; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .sticky-filters { position: relative; top: 0; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeup { animation: fadeInUp 0.6s ease forwards; }

/* ---- Services Page ---- */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.service-title { font-size: 1.15rem; font-weight: 700; margin: 0; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.service-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-features li {
  font-size: 0.875rem;
  color: var(--secondary);
  display: flex; align-items: center; gap: 8px;
}
.service-features li i { font-size: 1rem; flex-shrink: 0; }

/* ---- Process Steps ---- */
.process-step { position: relative; }
.process-num {
  width: 64px; height: 64px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(92,110,248,0.3);
}

/* ---- LSM Section ---- */
.lsm-section { background: var(--secondary); }
.lsm-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}
.lsm-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.lsm-feature-list { display: flex; flex-direction: column; gap: 20px; }
.lsm-feature-item {
  display: flex; align-items: center; gap: 16px;
}
.lsm-feature-icon {
  width: 48px; height: 48px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
  flex-shrink: 0;
}
.lsm-url-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex; align-items: center;
  font-size: 1rem;
}
