/* ==========================================================================
   BLACKHAT COMMANDO - MODERN LIGHT PRODUCT DESIGN SYSTEM & ANIMATIONS
   ========================================================================== */

:root {
  /* Surface & Background Colors */
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-light-alt: #f1f5f9;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-focus: #cbd5e1;

  /* Typography Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  /* Product Brand Accents */
  --color-red: #ef4444;
  --color-red-dark: #dc2626;
  --color-red-light: #fef2f2;
  --color-red-glow: rgba(239, 68, 68, 0.2);

  --color-blue: #2563eb;
  --color-blue-dark: #1d4ed8;
  --color-blue-light: #eff6ff;
  --color-blue-glow: rgba(37, 99, 235, 0.2);

  --color-purple: #7c3aed;
  --color-purple-dark: #6d28d9;
  --color-purple-light: #f5f3ff;
  --color-purple-glow: rgba(124, 58, 237, 0.2);

  --color-green: #10b981;
  --color-green-light: #ecfdf5;

  --color-emerald: #059669;
  --color-emerald-dark: #047857;
  --color-emerald-light: #ecfdf5;
  --color-emerald-glow: rgba(5, 150, 105, 0.2);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Fira Code', monospace;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.09);
  --shadow-dropdown: 0 20px 40px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Ambient Background Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent 70%);
  top: -100px;
  left: -100px;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  top: 30%;
  right: -150px;
  animation: floatOrb 22s ease-in-out infinite alternate;
}

.glow-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
  bottom: 10%;
  left: 20%;
  animation: floatOrb 25s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.08); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up { transform: translateY(35px); }
.fade-left { transform: translateX(35px); }
.fade-right { transform: translateX(-35px); }

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Utility Containers */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-container {
  padding: 6.5rem 0;
}

.bg-light-alt {
  background-color: var(--bg-light-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Typography & Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.text-white { color: #ffffff; }
.text-dim { color: #94a3b8; }

.text-gradient {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-red {
  background: linear-gradient(135deg, #ef4444 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-indigo {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-emerald { color: var(--color-emerald); }

.btn-emerald {
  background: var(--color-emerald);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-emerald-glow);
}
.btn-emerald:hover {
  background: var(--color-emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-emerald-glow);
}

.emerald-pill {
  border-color: #a7f3d0;
  background: #f0fdf4;
  color: #065f46;
}

.text-red { color: var(--color-red); }
.text-blue { color: var(--color-blue); }
.text-purple { color: var(--color-purple); }
.text-green { color: var(--color-green); }
.text-yellow { color: #f59e0b; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.font-xs { font-size: 0.75rem; }
.font-sm { font-size: 0.85rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-blue-glow);
}
.btn-primary:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-blue-glow);
}

.btn-red {
  background: var(--color-red);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-red-glow);
}
.btn-red:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-red-glow);
}

.btn-purple {
  background: var(--color-purple);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-purple-glow);
}
.btn-purple:hover {
  background: var(--color-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-purple-glow);
}

.btn-outline {
  background: var(--bg-white);
  border-color: var(--border-light);
  color: var(--text-dark);
}
.btn-outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: var(--color-blue-light);
}

.btn-outline-red {
  background: var(--bg-white);
  border-color: var(--color-red);
  color: var(--color-red);
}
.btn-outline-red:hover {
  background: var(--color-red);
  color: #ffffff;
}

.btn-outline-subtle {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-body);
}
.btn-outline-subtle:hover {
  border-color: var(--text-dark);
}

.btn-subtle {
  background: #f1f5f9;
  color: var(--text-dark);
}
.btn-subtle:hover {
  background: #e2e8f0;
}

.btn-lg { padding: 0.95rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.btn-xs { padding: 0.35rem 0.8rem; font-size: 0.75rem; }
.btn-full { width: 100%; }
.shadow-lift { box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08); }

/* TOP ANNOUNCEMENT BAR */
.top-announcement {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

.announcement-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge-new {
  background: var(--color-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  margin-right: 0.5rem;
}

.promo-code {
  background: rgba(255, 255, 255, 0.15);
  font-family: var(--font-mono);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: #38bdf8;
  font-weight: 600;
}

.announcement-link {
  color: #38bdf8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.announcement-link:hover {
  text-decoration: underline;
  color: #7dd3fc;
}

/* NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 0.75rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* NAV LINKS & DROPDOWN */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.mobile-nav-icon {
  display: none;
}

.mobile-drawer-footer {
  display: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-blue);
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 340px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 105;
}

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

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-light-alt);
}

.d-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.d-icon.red { background: var(--color-red-light); color: var(--color-red); }
.d-icon.blue { background: var(--color-blue-light); color: var(--color-blue); }
.d-icon.purple { background: var(--color-purple-light); color: var(--color-purple); }

.d-text {
  display: flex;
  flex-direction: column;
}

.d-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.d-tag {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-pill);
}
.d-tag.blue { background: var(--color-blue-light); color: var(--color-blue); }
.d-tag.purple { background: var(--color-purple-light); color: var(--color-purple); }

.d-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 0.15rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.4rem;
}

/* HERO SECTION */
.hero-section {
  padding: 5rem 0 6rem;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.95rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}
.pulse-dot.blue { background: var(--color-blue); }

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
  line-height: 1.12;
}

.hero-subtext {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 580px;
}
.hero-subtext strong { color: var(--text-dark); }

.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 620px;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* HERO INTERACTIVE PRODUCT CARD */
.hero-visual-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.product-tabs-bar {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

.product-tab-btn {
  flex: 1;
  padding: 0.95rem 0.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.product-tab-btn:hover { color: var(--text-dark); }
.product-tab-btn.active {
  color: var(--color-blue);
  background: #ffffff;
  border-bottom-color: var(--color-blue);
}

.product-tab-pane { display: none; }
.product-tab-pane.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

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

.preview-card-inner { padding: 2.2rem; }

.preview-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}
.red-tag { background: var(--color-red-light); color: var(--color-red); }
.blue-tag { background: var(--color-blue-light); color: var(--color-blue); }
.purple-tag { background: var(--color-purple-light); color: var(--color-purple); }

.live-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.purple-pill { color: var(--color-purple); font-weight: 600; }

.dot-green {
  width: 7px;
  height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  display: inline-block;
}

.preview-card-inner h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.preview-card-inner p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.55; }

.preview-feature-chips {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.chip {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-action-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.promo-callout-box {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1px solid #bfdbfe;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.promo-text strong { display: block; font-size: 0.92rem; color: var(--color-blue-dark); }
.promo-text span { font-size: 0.8rem; color: var(--text-muted); }
.code-highlight {
  font-family: var(--font-mono);
  background: #ffffff;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  color: var(--color-green);
  border: 1px solid #86efac;
  font-weight: 700;
}

/* SECTION TITLES */
.section-title-wrap { margin-bottom: 3.5rem; }

.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-blue);
  display: inline-block;
  margin-bottom: 0.6rem;
}

.section-heading { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.8rem; }
.section-subtext { font-size: 1.1rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; }

.split-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* PRODUCTS GRID 3 */
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.featured-card {
  border-color: #93c5fd;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.p-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}
.p-card-badge.red { background: var(--color-red-light); color: var(--color-red); }
.p-card-badge.blue { background: var(--color-blue-light); color: var(--color-blue); }
.p-card-badge.purple { background: var(--color-purple-light); color: var(--color-purple); }

.p-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.red-bg { background: var(--color-red-light); color: var(--color-red); }
.blue-bg { background: var(--color-blue-light); color: var(--color-blue); }
.purple-bg { background: var(--color-purple-light); color: var(--color-purple); }

.product-card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.product-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; }

.p-bullet-list { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.p-bullet-list li {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.p-card-action { margin-top: auto; }

/* ACADEMY PATH COMPARISON */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.path-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.path-recommended {
  border-color: var(--color-red);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.12);
  transform: scale(1.03);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.path-header {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.path-header h4 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.path-header p { font-size: 0.88rem; color: var(--text-muted); }

.path-list { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.path-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* ACADEMY FEATURED COURSES */
.academy-courses-wrap { padding-top: 1.5rem; }
.courses-subheading { font-size: 1.6rem; margin-bottom: 2rem; text-align: center; }

.courses-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.academy-cta-row, .mt-8 {
  margin-top: 3.5rem;
}

.course-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.course-box:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.course-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.course-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}
.course-tag.red { background: var(--color-red-light); color: var(--color-red); }
.course-tag.blue { background: var(--color-blue-light); color: var(--color-blue); }
.course-tag.green { background: var(--color-green-light); color: var(--color-green); }

.course-rating { font-size: 0.82rem; font-weight: 700; color: #f59e0b; }

.course-box h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.course-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.5; }

.course-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.course-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.old-price { font-size: 0.88rem; text-decoration: line-through; color: var(--text-dim); margin-right: 0.3rem; }
.new-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--color-red); }

/* REACHOUT SPOTLIGHT */
.reachout-spotlight-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.coupon-banner-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  gap: 1.2rem;
  margin: 1.8rem 0;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.08);
}

.coupon-icon-wrap {
  width: 46px;
  height: 46px;
  background: #f59e0b;
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.coupon-title { font-size: 1.05rem; font-weight: 700; color: #92400e; margin-bottom: 0.2rem; }
.coupon-details p { font-size: 0.88rem; color: #78350f; margin-bottom: 0.6rem; }
.coupon-code-row { display: flex; align-items: center; gap: 0.6rem; }

.code-box {
  background: #ffffff;
  border: 1px dashed #d97706;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: #b45309;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
}

.btn-copy-code {
  background: #ffffff;
  border: 1px solid #d97706;
  color: #92400e;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.btn-copy-code:hover { background: #fef3c7; }

.reachout-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.r-feat { display: flex; gap: 0.85rem; }
.r-feat i { font-size: 1.3rem; margin-top: 2px; }
.r-feat h5 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.r-feat p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.reachout-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* REACHOUT MOCKUP */
.mockup-window {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mockup-header {
  background: #f8fafc;
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mockup-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  background: #cbd5e1;
  margin-right: 3px;
}

.mockup-url {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100%;
}

.mockup-body { padding: 1.8rem; }

.mockup-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.m-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.8rem;
}
.m-card-title { font-size: 0.72rem; color: var(--text-muted); display: block; }
.m-card-num { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; }

.channel-dispatch-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.2rem;
}

.dispatch-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.badge-status-green {
  background: var(--color-green-light);
  color: var(--color-green);
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}

.dispatch-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
}
.dispatch-bar-wrap {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.dispatch-bar { height: 100%; border-radius: 4px; }
.bar-email { background: var(--color-blue); }
.bar-whatsapp { background: var(--color-green); }
.bar-sms { background: var(--color-purple); }

.contact-dropdown-menu {
  width: 320px;
}

/* ==========================================================================
   AFFILIATE PARTNER PROGRAM STYLES
   ========================================================================== */
.affiliate-spotlight-wrapper {
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.06);
  position: relative;
  overflow: hidden;
}

.affiliate-spotlight-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.affiliate-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.affiliate-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 260px;
}

.affiliate-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.aff-card {
  background: #ffffff;
  border: 1px solid #dcfce7;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.aff-card:hover {
  transform: translateY(-5px);
  border-color: #86efac;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.08);
}

.aff-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.emerald-bg { background: #d1fae5; color: #059669; }
.yellow-bg { background: #fef3c7; color: #d97706; }

.aff-card h4 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.aff-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.aff-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: #047857;
  display: inline-block;
  align-self: flex-start;
}

.aff-badge.blue-b { background: #eff6ff; color: #1d4ed8; }
.aff-badge.purple-b { background: #f5f3ff; color: #6d28d9; }
.aff-badge.yellow-b { background: #fffbeb; color: #b45309; }

.affiliate-bottom-terms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #dcfce7;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   CRUD UNIVERSAL LMS PRODUCT STYLING
   ========================================================================== */

.education-sectors-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.sector-pill {
  background: var(--bg-white);
  border: 1px solid #e9d5ff;
  color: var(--color-purple);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.sector-pill:hover {
  background: var(--color-purple);
  color: #ffffff;
  transform: translateY(-2px);
}

.lms-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.lms-compare-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.problem-card {
  border: 1px solid #fee2e2;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfb 100%);
}

.solution-card {
  border: 1px solid #dcfce7;
  background: linear-gradient(180deg, #ffffff 0%, #f7fef9 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}
.red-badge { background: var(--color-red-light); color: var(--color-red); }
.green-badge { background: var(--color-green-light); color: var(--color-green); }

.lms-compare-card h4 { font-size: 1.35rem; margin-bottom: 1.5rem; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-list li {
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.compare-list li i {
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   CRUD UNIVERSAL LMS PILLAR CARDS REDESIGN
   ========================================================================== */

.lms-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.lms-pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Individual Card Accent Theming */
.lms-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-light);
  transition: height 0.3s ease;
}

.pillar-purple::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.pillar-blue::before { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.pillar-green::before { background: linear-gradient(90deg, #10b981, #34d399); }
.pillar-red::before { background: linear-gradient(90deg, #ef4444, #f97316); }

.lms-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.pillar-purple:hover { border-color: #d8b4fe; }
.pillar-blue:hover { border-color: #93c5fd; }
.pillar-green:hover { border-color: #86efac; }
.pillar-red:hover { border-color: #fca5a5; }

.pillar-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.pillar-icon-box.purple { background: var(--color-purple-light); color: var(--color-purple); }
.pillar-icon-box.blue { background: var(--color-blue-light); color: var(--color-blue); }
.pillar-icon-box.green { background: var(--color-green-light); color: var(--color-green); }
.pillar-icon-box.red { background: var(--color-red-light); color: var(--color-red); }

.pillar-tag-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}
.pillar-tag-badge.purple { background: var(--color-purple-light); color: var(--color-purple); }
.pillar-tag-badge.blue { background: var(--color-blue-light); color: var(--color-blue); }
.pillar-tag-badge.green { background: var(--color-green-light); color: var(--color-green); }
.pillar-tag-badge.red { background: var(--color-red-light); color: var(--color-red); }

.pillar-card-title {
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.pillar-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.pillar-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.p-chip {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: background-color 0.2s ease;
}
.lms-pillar-card:hover .p-chip {
  background: #ffffff;
}

.pillar-bottom-bar {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-footer-stat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lms-window {
  border-color: #e9d5ff;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
  margin-bottom: 3rem;
}

.lms-header {
  background: #faf5ff;
  border-bottom: 1px solid #f3e8ff;
  justify-content: space-between;
}

.badge-status-purple {
  background: var(--color-purple-light);
  color: var(--color-purple);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.lms-console-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 380px;
}

.lms-sidebar {
  background: #f8fafc;
  border-right: 1px solid var(--border-light);
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lms-nav-item {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lms-nav-item:hover { background: #ffffff; color: var(--text-dark); }
.lms-nav-item.active { background: var(--color-purple-light); color: var(--color-purple); }

.lms-main-content { padding: 1.8rem; background: #ffffff; }

.lms-top-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.l-metric {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}
.l-metric span { font-size: 0.72rem; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.l-metric strong { font-family: var(--font-heading); font-size: 1.1rem; }

.lms-table-preview {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-header-flex {
  padding: 0.85rem 1.2rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-header-flex h5 { font-size: 0.95rem; }
.table-sub-label { font-size: 0.72rem; display: block; }

.crud-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.crud-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.crud-table th, .crud-table td {
  padding: 0.75rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

.mobile-table-hint {
  display: none;
  font-size: 0.74rem;
  color: var(--text-muted);
  background: #f8fafc;
  padding: 0.55rem 0.9rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.crud-table th {
  background: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.table-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.table-chip.green { background: #dcfce7; color: #15803d; }
.table-chip.purple { background: #f3e8ff; color: #7e22ce; }
.table-chip.blue { background: #eff6ff; color: #1d4ed8; }

.status-live { font-size: 0.72rem; font-weight: 800; color: var(--color-green); }
.action-btn { color: var(--color-purple); font-weight: 600; cursor: pointer; }
.action-btn:hover { text-decoration: underline; }

.lms-cta-strip {
  background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
  border: 1px solid #d8b4fe;
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-strip-text h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.cta-strip-text p { font-size: 0.95rem; color: var(--text-muted); }
.cta-strip-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* PARTNERS & TESTIMONIALS */
.partners-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.partner-tag {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.partner-tag i { color: var(--color-blue); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.testi-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars { color: #f59e0b; margin-bottom: 1rem; font-size: 1.1rem; }
.testi-quote { font-size: 0.95rem; color: var(--text-body); font-style: italic; margin-bottom: 1.8rem; line-height: 1.6; }

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.red-avatar { background: var(--color-red); }
.blue-avatar { background: var(--color-blue); }
.purple-avatar { background: var(--color-purple); }

.testi-user h5 { font-size: 0.98rem; }
.testi-user span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ ACCORDION */
.faq-accordion-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-head {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.faq-accordion-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-accordion-item.active .faq-body {
  max-height: 250px;
  padding: 0 1.6rem 1.3rem 1.6rem;
}

.link-styled {
  color: var(--color-blue);
  text-decoration: underline;
}

/* ==========================================================================
   REDESIGNED MODERN PRODUCT FOOTER & SOCIAL ICONS
   ========================================================================== */

.site-footer {
  background: linear-gradient(180deg, #090d16 0%, #030712 100%);
  color: #f8fafc;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), rgba(37, 99, 235, 0.6), transparent);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  margin-bottom: 1.2rem;
  display: inline-flex;
}

.footer-logo .brand-name,
.site-footer .brand-name {
  color: #ffffff !important;
  font-size: 1.25rem;
}

.footer-logo .brand-tag,
.site-footer .brand-tag {
  color: #cbd5e1 !important;
}

.footer-mission {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
  max-width: 400px;
}
.footer-mission strong { color: #ffffff; }

/* SOCIAL CHANNELS BAR & ICONS */
.social-channels-bar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.social-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
}

.social-icons-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual Brand Hover States */
.social-icon.in:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.4);
}

.social-icon.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.social-icon.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.social-icon.tg:hover {
  background: #24a1de;
  border-color: #24a1de;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(36, 161, 222, 0.4);
}

.social-icon.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.4);
}

.social-icon.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Footer Navigation Links */
.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
}

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

.footer-links-list li a {
  color: #cbd5e1;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
}

.footer-links-list li a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.footer-contact-list li i {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-copy {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.pulse-dot-green {
  animation: pulseDotGreen 2s infinite;
}

@keyframes pulseDotGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* MODAL STYLES */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(15px);
  transition: transform 0.25s ease;
}
.modal-backdrop.open .modal-card { transform: translateY(0); }

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}
.modal-close-btn:hover { color: var(--text-dark); }

.modal-syllabus-title { font-size: 1.6rem; margin-bottom: 0.4rem; }
.modal-syllabus-meta { font-size: 0.85rem; color: var(--color-blue); font-weight: 600; margin-bottom: 1.2rem; }
.syllabus-list-wrap { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.5rem 0; }
.mod-item { background: #f8fafc; border: 1px solid var(--border-light); padding: 1rem; border-radius: var(--radius-md); }
.mod-item h5 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.mod-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   LEGAL TERMS & POLICIES MODAL STYLES (PREMIUM REDESIGN)
   ========================================================================== */

.legal-modal-card {
  max-width: 820px;
  width: 95%;
  padding: 2.8rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid var(--border-light);
}

.legal-modal-top {
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-blue);
  background: var(--color-blue-light);
  border: 1px solid #bfdbfe;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
}

.legal-modal-heading {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.legal-modal-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.legal-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.legal-product-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.legal-product-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.academy-box::before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.reachout-box::before {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.legal-box-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}

.legal-brand-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.legal-brand-badge.red-badge {
  background: var(--color-red-light);
  color: var(--color-red);
}

.legal-brand-badge.blue-badge {
  background: var(--color-blue-light);
  color: var(--color-blue);
}

.legal-box-header h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.legal-domain {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: 'Fira Code', monospace;
}

.legal-box-info {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.4rem;
}

.legal-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.legal-action-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.l-action-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.l-action-icon.red-icon { background: #fee2e2; color: #ef4444; }
.l-action-icon.blue-icon { background: #dbeafe; color: #2563eb; }

.l-action-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.l-action-content strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
  transition: color 0.2s ease;
}

.l-action-content span {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.l-arrow {
  font-size: 0.8rem;
  color: #94a3b8;
  transition: all 0.2s ease;
}

/* Hover States */
.legal-action-card.red-hover:hover {
  border-color: #fca5a5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.08);
}
.legal-action-card.red-hover:hover .l-action-content strong { color: var(--color-red); }
.legal-action-card.red-hover:hover .l-arrow { color: var(--color-red); transform: translate(2px, -2px); }

.legal-action-card.blue-hover:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}
.legal-action-card.blue-hover:hover .l-action-content strong { color: var(--color-blue); }
.legal-action-card.blue-hover:hover .l-arrow { color: var(--color-blue); transform: translate(2px, -2px); }

.legal-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-legal-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
}

.footer-legal-btn:hover {
  color: #38bdf8;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: underline;
}

.footer-legal-divider {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .legal-cards-grid {
    grid-template-columns: 1fr;
  }
  .legal-modal-card {
    padding: 1.8rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & PHONES) - COMPREHENSIVE POLISH
   ========================================================================== */

/* Medium Screens & Small Desktops (< 1200px) */
@media (max-width: 1200px) {
  .container { padding: 0 1.5rem; }
  .footer-top-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
}

/* Tablet Optimization (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-layout, 
  .reachout-spotlight-box, 
  .lms-comparison-grid, 
  .lms-console-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title { font-size: 2.8rem; }
  
  .footer-top-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 2.5rem; 
  }
  
  .nav-menu { gap: 1.2rem; }
  .path-recommended { transform: none; }
  
  .lms-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem;
    gap: 0.5rem;
  }
  
  .lms-top-metrics { grid-template-columns: 1fr 1fr; }
  .lms-cta-strip { flex-direction: column; text-align: center; }
  .affiliate-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Mobile & Small Tablet (< 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
  }

  *, *::before, *::after {
    box-sizing: border-box !important;
    max-width: 100%;
  }

  .container {
    padding: 0 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-container {
    padding: 3rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .top-announcement { display: none !important; }
  
  .site-header { 
    padding: 0.75rem 0; 
    width: 100% !important;
  }

  .brand-logo-img {
    height: 34px;
    width: 34px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  /* Hide Desktop Launch Button in Navbar Header on Mobile */
  .desktop-header-btn {
    display: none !important;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mobile-menu-btn { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
  }

  /* Mobile Slide-down Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 58px);
    background: #ffffff;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 1rem 2.5rem;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
    overflow-y: auto;
    display: none;
    z-index: 999;
  }

  .nav-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
  }

  .mobile-nav-icon {
    display: inline-block !important;
    width: 20px;
    margin-right: 0.35rem;
    color: var(--text-muted);
  }

  .nav-menu.open {
    display: flex;
    animation: slideDownMobile 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideDownMobile {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark);
    border-bottom: 1px solid #f8fafc;
    background: transparent;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #f8fafc;
    color: var(--color-red);
  }

  .nav-dropdown { 
    width: 100%; 
  }

  .dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
  }

  .dropdown-arrow {
    transition: transform 0.25s ease;
  }

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

  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    margin: 0.4rem 0 0.8rem;
    padding: 0.5rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.open .dropdown-menu { 
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .dropdown-item {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown-item .d-title {
    font-size: 0.92rem;
    font-weight: 700;
  }

  .dropdown-item .d-desc {
    font-size: 0.76rem;
    color: var(--text-muted);
  }

  .mobile-drawer-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
    display: flex !important;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }

  .mobile-drawer-support {
    text-align: center;
  }

  .mobile-wa-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: #166534;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    justify-content: center;
    text-decoration: none;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2rem 0 3rem;
  }

  .hero-title { 
    font-size: clamp(1.75rem, 6.5vw, 2.3rem); 
    line-height: 1.22;
    margin-bottom: 1.2rem;
    word-break: break-word;
  }
  
  .hero-title br {
    display: none;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .hero-button-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-button-group .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-trust-row { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 1.8rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .trust-divider { display: none; }
  
  .trust-item {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .trust-item strong {
    font-size: 1.25rem;
    display: block;
  }
  
  .trust-item span {
    font-size: 0.72rem;
    display: block;
  }

  /* Hero Visual Tab Bar */
  .product-tabs-bar {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    gap: 0.35rem;
    width: 100%;
  }
  
  .product-tab-btn {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.6rem 0.8rem;
    flex-shrink: 0;
  }

  .preview-card-inner { 
    padding: 1.4rem 1.1rem; 
    width: 100%;
    box-sizing: border-box;
  }

  .preview-card-inner h3 {
    font-size: 1.2rem;
  }

  .preview-feature-chips {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .preview-action-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .preview-action-row .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Section Headings */
  .section-kicker {
    font-size: 0.72rem;
  }

  .section-heading { 
    font-size: clamp(1.55rem, 5.5vw, 1.95rem); 
    line-height: 1.25;
    margin-bottom: 0.8rem;
    word-break: break-word;
  }

  .section-subtext {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* 1. PRODUCTS TRIFECTA OVERVIEW SECTION MOBILE */
  .products-grid-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.6rem 1.2rem !important;
    position: relative;
    min-width: 0 !important;
  }

  .p-card-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .p-icon-circle {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
  }

  .p-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .p-bullet-list li {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .p-card-action {
    margin-top: 1.25rem;
    width: 100%;
  }

  .p-card-action .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* ACADEMY SECTION MOBILE */
  .split-section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .header-action-side {
    width: 100%;
  }

  .header-action-side .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .paths-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
  }

  .path-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.5rem 1.2rem !important;
    min-width: 0 !important;
  }

  .courses-3-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .course-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.5rem 1.2rem !important;
    min-width: 0 !important;
  }

  .course-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .academy-cta-row .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
  }

  /* 2. REACHOUT SAAS SECTION MOBILE */
  .reachout-spotlight-box {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.5rem 1rem !important;
    border-radius: var(--radius-lg);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    gap: 1.5rem !important;
  }

  .reachout-content-side,
  .reachout-mockup-side {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .coupon-banner-card { 
    display: flex !important;
    flex-direction: column !important; 
    align-items: stretch !important;
    gap: 0.85rem !important;
    padding: 1.2rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .coupon-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .coupon-code-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.55rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .code-box {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 1rem !important;
    padding: 0.6rem !important;
    box-sizing: border-box !important;
  }

  .btn-copy-code {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    padding: 0.6rem !important;
    box-sizing: border-box !important;
  }

  .reachout-features-grid { 
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin: 1.25rem 0 !important;
    width: 100% !important;
  }

  .r-feat {
    padding: 0.85rem !important;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    gap: 0.75rem;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .r-feat h5 {
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
  }

  .r-feat p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .reachout-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .reachout-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .mockup-window {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .mockup-header {
    padding: 0.55rem 0.75rem;
  }

  .mockup-url {
    font-size: 0.68rem;
    max-width: 160px;
  }

  .mockup-body {
    padding: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .mockup-stats-bar { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
    gap: 0.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .m-card {
    padding: 0.65rem 0.5rem;
    min-width: 0;
    box-sizing: border-box;
  }

  .m-card span {
    font-size: 0.65rem;
  }

  .m-card strong {
    font-size: 1rem;
  }

  .channel-dispatch-box {
    padding: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .dispatch-row {
    font-size: 0.74rem;
    gap: 0.45rem;
  }

  .sample-message-bubble {
    padding: 0.75rem;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* AFFILIATE SECTION MOBILE */
  .affiliate-spotlight-wrapper {
    padding: 1.8rem 1rem !important;
    border-radius: var(--radius-lg);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .affiliate-header-flex {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.8rem;
    width: 100%;
  }

  .affiliate-cta-box {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .affiliate-cta-box .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .affiliate-grid-4 { 
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .aff-card {
    padding: 1.3rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .affiliate-bottom-terms-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  /* CRUD LMS SECTION MOBILE */
  .education-sectors-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .sector-pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .lms-comparison-grid { 
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    margin-bottom: 2rem;
    width: 100% !important;
  }

  .lms-compare-card {
    padding: 1.5rem 1.2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .lms-pillars-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    margin-bottom: 2rem;
    width: 100% !important;
  }

  .lms-pillar-card {
    padding: 1.5rem 1.2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .lms-window {
    border-radius: var(--radius-md);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .lms-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .badge-status-purple {
    font-size: 0.68rem;
  }

  .lms-console-body {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .lms-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem;
    gap: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }

  .lms-nav-item {
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
    flex-shrink: 0;
  }

  .lms-main-content {
    padding: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lms-top-metrics { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
    gap: 0.55rem !important;
    margin-bottom: 1rem;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .l-metric {
    padding: 0.65rem 0.5rem;
    min-width: 0;
    box-sizing: border-box;
  }

  .l-metric span {
    font-size: 0.68rem;
  }

  .l-metric strong {
    font-size: 0.98rem;
  }

  /* 3. CRUD LMS CONSOLE & LIVE TABLE PREVIEW MOBILE */
  .lms-table-preview {
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .table-header-flex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .table-header-flex .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.55rem;
    box-sizing: border-box;
  }

  .crud-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border: none;
    box-sizing: border-box !important;
  }

  .crud-table { 
    width: 100%;
    min-width: 520px; 
    font-size: 0.78rem;
    border-collapse: collapse;
  }

  .crud-table th, .crud-table td {
    padding: 0.6rem 0.75rem;
  }

  .lms-cta-strip {
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    padding: 1.8rem 1.2rem !important;
    gap: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .cta-strip-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Clients & FAQs */
  .partners-logo-strip {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .partner-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .testimonials-grid { 
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
  }

  .testi-card {
    padding: 1.4rem 1.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  /* 4. FAQ SECTION MOBILE */
  .faq-accordion-box {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0.75rem !important;
    box-sizing: border-box !important;
  }

  .faq-accordion-item {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .faq-head {
    font-size: 0.92rem;
    font-weight: 700;
    padding: 1rem 0.95rem;
    line-height: 1.4;
    gap: 0.75rem;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .faq-head span {
    flex: 1;
    text-align: left;
    word-break: break-word;
  }

  .faq-chevron {
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .faq-body {
    padding: 0 0.95rem;
    font-size: 0.86rem;
    line-height: 1.55;
    word-break: break-word;
  }

  .faq-accordion-item.active .faq-body {
    max-height: 400px;
    padding: 0 0.95rem 1.1rem 0.95rem;
  }

  /* Footer Section */
  .site-footer {
    padding-top: 3rem;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .footer-top-grid { 
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important; 
    margin-bottom: 2.2rem;
    width: 100% !important;
  }

  .footer-mission {
    max-width: 100%;
  }

  .footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  /* Modals */
  .modal-backdrop {
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .modal-card {
    padding: 1.5rem 1rem;
    max-height: 90vh;
    border-radius: var(--radius-md);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .modal-close-btn {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.4rem;
  }

  .modal-syllabus-title {
    font-size: 1.2rem;
  }

  .legal-cards-grid { 
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .legal-modal-card {
    padding: 1.5rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .legal-modal-heading {
    font-size: 1.25rem;
  }

  .legal-action-card {
    padding: 0.75rem 0.8rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Extra Small Phones (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem !important;
  }

  .hero-title { 
    font-size: 1.7rem; 
  }
  
  .btn-lg { 
    padding: 0.8rem 1rem; 
    font-size: 0.88rem; 
    width: 100%; 
  }
  
  .product-card, 
  .path-card, 
  .lms-compare-card, 
  .lms-pillar-card,
  .course-box,
  .testi-card { 
    padding: 1.3rem 0.95rem !important; 
  }
  
  .hero-trust-row {
    grid-template-columns: 1fr;
  }
  
  .lms-top-metrics {
    grid-template-columns: 1fr !important;
  }

  .mockup-stats-bar {
    grid-template-columns: 1fr !important;
  }

  .social-icons-group { 
    gap: 0.4rem; 
  }
  
  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}
