@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Core Brand Colors & Unified Design System Tokens */
:root {
  --bg-deep: #06070a;
  --bg-dark: #0c0e17;
  --bg-card: rgba(15, 18, 28, 0.72);
  --bg-card-hover: rgba(22, 27, 44, 0.88);
  
  --primary: #7c3aed; /* Electric Violet */
  --primary-light: #a78bfa;
  --primary-glow: rgba(124, 58, 237, 0.18);
  --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  
  --accent: #06b6d4; /* Electric Cyan */
  --accent-light: #22d3ee;
  --accent-glow: rgba(6, 182, 212, 0.18);
  --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  
  --brand-gradient: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  --brand-gradient-btn: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --text-light: #ffffff;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(124, 58, 237, 0.35);
  --border-cyan: rgba(6, 182, 212, 0.35);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-card: inset 0 1px 0 0 rgba(255, 255, 255, 0.06), 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), 0 20px 40px -15px rgba(124, 58, 237, 0.25);
  --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.3);
  
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Typography Custom Styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Main Layout Shell */
#app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(12, 14, 23, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header.scrolled {
  top: 0.6rem;
  width: 94%;
  background: rgba(6, 7, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 58, 237, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

header .btn-primary {
  border-radius: var(--radius-full);
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--brand-gradient-btn);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.55);
}

.nav-container {
  width: 100%;
  padding: 0.75rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.brand-logo span {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
  -webkit-text-fill-color: var(--accent-light);
  margin-left: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

@media (min-width: 769px) {
  .nav-actions-mobile {
    display: none !important;
  }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  margin-bottom: 5px;
  transition: var(--transition-normal);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

/* Button & UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.55rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.btn-primary {
  background: var(--brand-gradient-btn);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5), 0 0 20px rgba(6, 182, 212, 0.2);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-accent {
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-light);
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.btn-accent:hover {
  background: rgba(6, 182, 212, 0.16);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Custom Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-primary {
  background: var(--primary-glow);
  color: var(--primary-light);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.badge-accent {
  background: var(--accent-glow);
  color: var(--accent-light);
  border: 1px solid rgba(6, 182, 212, 0.35);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(15, 18, 28, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition-normal);
}

.form-control::placeholder {
  color: var(--text-subtle);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(22, 27, 44, 0.95);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* View Sections / Transitions */
.view-container {
  display: none;
  min-height: calc(100vh - 120px);
  padding-top: 120px;
  animation: fadeIn var(--transition-slow) forwards;
}

#home-view.view-container {
  padding-top: 0;
}

.view-container.active {
  display: block;
}

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

/* Glassmorphic Grid Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at 50% 0%, rgba(124, 58, 237, 0.05), transparent 60%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
}

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

.toast {
  background: rgba(12, 14, 23, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: var(--text-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 320px;
  font-size: 0.92rem;
  animation: slideIn var(--transition-fast) forwards;
}

.toast.success {
  border-color: var(--accent);
  border-left-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.2);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   HOMEPAGE VIEW
   ========================================================================== */

/* Section Typography & Titles */
section {
  padding: 6rem 1.5rem;
  position: relative;
}

.section-bg-alt {
  background: rgba(12, 14, 23, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.75rem auto;
}

.section-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent-light);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 01 Hero Section */
.hero-section {
  padding: 7rem 1.5rem 5rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 85vh;
  position: relative;
}

@media (min-width: 1025px) {
  .hero-section {
    min-height: calc(100vh - 40px);
    padding-top: 7.5rem;
    padding-bottom: 3.5rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.hero-headline {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-light);
}

.hero-headline span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-features-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.checklist-item i {
  color: var(--accent-light);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}

.checklist-item span {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Right Side - Orbiting Circle Graphics visual */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual-container {
  width: 500px;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-outer {
  width: 90%;
  height: 90%;
  border: 1.5px dashed rgba(139, 92, 246, 0.3);
  animation: rotateClockwise 50s linear infinite;
}

.ring-inner {
  width: 74%;
  height: 74%;
  border: 2px solid rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3), inset 0 0 15px rgba(139, 92, 246, 0.12);
  animation: pulseRing 4.5s ease-in-out infinite alternate;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.98);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.25);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.5), inset 0 0 20px rgba(139, 92, 246, 0.2);
  }
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Central Avatar Circle */
.hero-avatar-circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 6px solid #8b5cf6;
  background: var(--primary);
  position: relative;
  z-index: 5;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.5), 0 12px 30px rgba(0, 0, 0, 0.5);
  animation: floatProfile 5.5s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

@keyframes floatProfile {
  0%, 100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.45), 0 12px 30px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.75), 0 20px 40px rgba(124, 58, 237, 0.35);
  }
}

.hero-avatar-circle:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.85), 0 25px 45px rgba(124, 58, 237, 0.45);
}

.hero-avatar-circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.hero-avatar-circle:hover img {
  transform: scale(1.05);
}

.avatar-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(124, 58, 237, 0.25) 60%, transparent 80%);
  z-index: -1;
  filter: blur(14px);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* Orbiting Floating Icon Nodes */
.orbit-icons-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbit-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7c3aed;
  font-size: 1.15rem;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 16px rgba(124, 58, 237, 0.35);
  pointer-events: auto;
  transform: translate(-50%, -50%);
  animation: floatIconNode 4s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

@keyframes floatIconNode {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px) scale(1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 16px rgba(124, 58, 237, 0.35);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px) scale(1.06);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 24px rgba(124, 58, 237, 0.6);
  }
}

.orbit-icon:hover {
  transform: translate(-50%, -50%) translateY(-14px) scale(1.2) !important;
  color: #ffffff;
  background: var(--brand-gradient-btn);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.7), 0 0 25px rgba(6, 182, 212, 0.6);
  z-index: 30;
  animation-play-state: paused;
}

.orbit-icon::after {
  content: attr(data-label);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(12, 14, 23, 0.95);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  white-space: nowrap;
  color: var(--text-light);
  font-weight: 600;
  transition: var(--transition-fast);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.orbit-icon:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Position 8 Orbiting Nodes with Staggered Floating Delays */
.icon-1 { top: 5%; left: 50%; animation-delay: 0s; }
.icon-2 { top: 18%; left: 82%; animation-delay: 0.5s; }
.icon-3 { top: 50%; left: 95%; animation-delay: 1.0s; }
.icon-4 { top: 82%; left: 82%; animation-delay: 1.5s; }
.icon-5 { top: 95%; left: 50%; animation-delay: 2.0s; }
.icon-6 { top: 82%; left: 18%; animation-delay: 2.5s; }
.icon-7 { top: 50%; left: 5%; animation-delay: 3.0s; }
.icon-8 { top: 18%; left: 18%; animation-delay: 3.5s; }

/* 02 Trust / USP Strip */
.usp-strip {
  padding: 2.75rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 11, 18, 0.75);
}

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

.usp-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.usp-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.usp-strip-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: var(--text-light);
}

.usp-strip-info p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* 03 Why Thynk Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  padding: 2.25rem 2rem;
}

.why-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* 04 About Gokul */
.about-gokul-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-gokul-visual {
  position: relative;
}

.about-gokul-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-card);
}

.about-gokul-image {
  height: 440px;
  border-radius: var(--radius-lg);
  background: #11131e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  overflow: hidden;
}

.about-gokul-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-gokul-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-gokul-info h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-gokul-info h2 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-gokul-info p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about-pill-container {
  display: flex;
  gap: 0.75rem;
  margin: 0.25rem 0;
}

.about-pill {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-pill.consultant {
  background: rgba(124, 58, 237, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.about-pill.trainer {
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-light);
  border: 1px solid rgba(6, 182, 212, 0.35);
}

/* 05 Skills Grid Section (9 Framework Areas) */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.skill-category-card {
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.skill-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.skill-header-tag {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
}

.skill-tag-1 { background: rgba(6, 182, 212, 0.12); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.25); }
.skill-tag-2 { background: rgba(139, 92, 246, 0.12); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.25); }
.skill-tag-3 { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.skill-tag-4 { background: rgba(244, 63, 94, 0.12); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.25); }
.skill-tag-5 { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.skill-tag-6 { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.25); }
.skill-tag-7 { background: rgba(217, 70, 239, 0.12); color: #e879f9; border: 1px solid rgba(217, 70, 239, 0.25); }
.skill-tag-8 { background: rgba(20, 184, 166, 0.12); color: #2dd4bf; border: 1px solid rgba(20, 184, 166, 0.25); }
.skill-tag-9 { background: rgba(249, 115, 22, 0.12); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.25); }

.skill-category-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.skill-items-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.skill-category-card .skill-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.skill-category-card .skill-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-1px);
}

/* 06 Personal Branding Section */
.pb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pb-content h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pb-content h2 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pb-steps-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pb-step-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.pb-step-box:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateX(8px);
}

.pb-step-num {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pb-step-detail h4 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.pb-step-detail p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pb-arrow {
  display: flex;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.3rem;
  margin: -0.35rem 0;
  opacity: 0.6;
}

/* 07 Pick Your Starting Point - Course Cards & Bootcamp */
.featured-bootcamp-card {
  padding: 3rem;
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%), var(--bg-card);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.featured-bootcamp-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.bootcamp-header {
  margin-bottom: 2rem;
}

.bootcamp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.badge-live {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-live i {
  color: #ef4444;
  animation: pulseLive 1.5s ease-in-out infinite;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.bootcamp-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bootcamp-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bootcamp-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.bootcamp-price-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.bootcamp-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.price-current {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-light);
}

.price-original {
  font-size: 1.35rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-discount {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.curriculum-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light);
}

.bootcamp-days-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bootcamp-days-list li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.bootcamp-days-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateX(4px);
}

.day-badge {
  background: var(--primary-glow);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  flex-shrink: 0;
}

/* Core Programs Grid (3 Columns x 2 Rows on Desktop) */
.courses-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .courses-programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-program-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.4rem;
  height: 100%;
  position: relative;
  transition: var(--transition-normal);
  border-radius: var(--radius-lg);
}

.course-program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.featured-canva-card {
  border-color: rgba(6, 182, 212, 0.55);
  background: linear-gradient(170deg, rgba(6, 182, 212, 0.08) 0%, rgba(14, 18, 30, 0.95) 100%);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.12);
}

.featured-canva-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.28);
}

.course-program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.course-program-price {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-light);
}

.course-program-title {
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.course-program-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 2.6rem;
}

.course-program-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.course-program-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-main);
}

.course-program-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 0.95rem;
}

.course-program-footer {
  margin-top: auto;
}

/* ==========================================================================
   08 The THYNK Method (Distinct Futuristic Stepper Grid - 5 Columns, 1 Row)
   ========================================================================== */
.framework-section-distinct {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 80% 90%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
              var(--bg-dark);
}

.thynk-method-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}

/* Horizontal Pipeline Beam */
.thynk-pipeline-track {
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(139, 92, 246, 0.4) 0%, 
    rgba(6, 182, 212, 0.5) 25%, 
    rgba(244, 63, 94, 0.5) 50%, 
    rgba(16, 185, 129, 0.5) 75%, 
    rgba(245, 158, 11, 0.4) 100%
  );
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.thynk-pipeline-glow {
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 8px;
  background: inherit;
  filter: blur(5px);
  opacity: 0.7;
}

/* 5 Column Grid */
.thynk-method-grid, .framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Individual Monolithic Letter Card */
.thynk-letter-card, .framework-card {
  position: relative;
  background: linear-gradient(170deg, rgba(20, 24, 38, 0.9) 0%, rgba(10, 13, 22, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.35rem 2rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 14px 35px -10px rgba(0, 0, 0, 0.6);
}

.thynk-letter-card:hover, .framework-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.8);
}

/* Big Ambient Watermark Letter in background */
.thynk-watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  opacity: 0.03;
  pointer-events: none;
  transition: all 0.4s ease;
  user-select: none;
}

.thynk-letter-card:hover .thynk-watermark {
  opacity: 0.08;
  transform: scale(1.08) translate(-5px, -5px);
}

/* Card Top Row */
.thynk-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.thynk-step-pill {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.thynk-icon-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

/* Glowing Central Monogram Badge */
.thynk-monogram-badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.thynk-monogram-badge .letter {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.thynk-letter-card:hover .thynk-monogram-badge {
  transform: scale(1.1) rotate(2deg);
}

/* Card Heading & Focus Tag */
.thynk-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.45rem;
  position: relative;
  z-index: 2;
}

.thynk-focus-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.95rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.thynk-card-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.thynk-letter-card:hover .thynk-card-desc {
  color: var(--text-main);
}

/* Bottom Glow Indicator Line */
.thynk-card-footer-glow {
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.35s ease;
}

.thynk-letter-card:hover .thynk-card-footer-glow {
  opacity: 1;
  left: 0;
  right: 0;
  height: 3px;
}

/* ==========================================================================
   Letter Signature Color Accents (T - H - Y - N - K)
   ========================================================================== */

/* T: THINK (Electric Indigo / Violet) */
.card-t .thynk-monogram-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}
.card-t .thynk-monogram-badge .letter {
  background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-t .thynk-focus-tag {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.card-t .thynk-card-footer-glow {
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  box-shadow: 0 0 12px #8b5cf6;
}
.card-t:hover {
  border-color: rgba(139, 92, 246, 0.55);
}
.card-t:hover .thynk-step-pill, .card-t:hover .thynk-icon-ring {
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
}

/* H: HANDS-ON (Cyber Cyan) */
.card-h .thynk-monogram-badge {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18) 0%, rgba(8, 145, 178, 0.08) 100%);
  border: 1.5px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.card-h .thynk-monogram-badge .letter {
  background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-h .thynk-focus-tag {
  background: rgba(6, 182, 212, 0.12);
  color: #67e8f9;
  border: 1px solid rgba(6, 182, 212, 0.25);
}
.card-h .thynk-card-footer-glow {
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
  box-shadow: 0 0 12px #06b6d4;
}
.card-h:hover {
  border-color: rgba(6, 182, 212, 0.55);
}
.card-h:hover .thynk-step-pill, .card-h:hover .thynk-icon-ring {
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.1);
}

/* Y: YOUR BRAND (Neon Rose / Pink) */
.card-y .thynk-monogram-badge {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.18) 0%, rgba(225, 29, 72, 0.08) 100%);
  border: 1.5px solid rgba(244, 63, 94, 0.4);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.2);
}
.card-y .thynk-monogram-badge .letter {
  background: linear-gradient(135deg, #fda4af 0%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-y .thynk-focus-tag {
  background: rgba(244, 63, 94, 0.12);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.25);
}
.card-y .thynk-card-footer-glow {
  background: linear-gradient(90deg, transparent, #f43f5e, transparent);
  box-shadow: 0 0 12px #f43f5e;
}
.card-y:hover {
  border-color: rgba(244, 63, 94, 0.55);
}
.card-y:hover .thynk-step-pill, .card-y:hover .thynk-icon-ring {
  color: #fda4af;
  border-color: rgba(244, 63, 94, 0.4);
  background: rgba(244, 63, 94, 0.1);
}

/* N: NAVIGATE (Emerald Green) */
.card-n .thynk-monogram-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(5, 150, 105, 0.08) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}
.card-n .thynk-monogram-badge .letter {
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-n .thynk-focus-tag {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.card-n .thynk-card-footer-glow {
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  box-shadow: 0 0 12px #10b981;
}
.card-n:hover {
  border-color: rgba(16, 185, 129, 0.55);
}
.card-n:hover .thynk-step-pill, .card-n:hover .thynk-icon-ring {
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
}

/* K: KNOWLEDGE (Radiant Solar Amber / Gold) */
.card-k .thynk-monogram-badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}
.card-k .thynk-monogram-badge .letter {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-k .thynk-focus-tag {
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.card-k .thynk-card-footer-glow {
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  box-shadow: 0 0 12px #f59e0b;
}
.card-k:hover {
  border-color: rgba(245, 158, 11, 0.55);
}
.card-k:hover .thynk-step-pill, .card-k:hover .thynk-icon-ring {
  color: #fde68a;
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.1);
}

/* ==========================================================================
   09 Who It's For Grid (5 Columns, 1 Row)
   ========================================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.who-card {
  padding: 2.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.who-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px -10px rgba(6, 182, 212, 0.25);
}

.who-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.who-card:hover .who-card-icon {
  transform: scale(1.1);
  background: rgba(6, 182, 212, 0.16);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.who-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-light);
}

.who-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* 22 Consulting Session Card */
.consulting-showcase {
  background: radial-gradient(circle at 100% 0%, var(--primary-glow) 0%, transparent 40%), var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

.consulting-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.consulting-text-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.consulting-text-side h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.consulting-text-side h2 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.consulting-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.consulting-area-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-muted);
}

.consulting-box-side {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

.consulting-price {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-light);
}

.consulting-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.consulting-benefits {
  text-align: left;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.consulting-benefits li {
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.consulting-benefits li::before {
  content: '⚡';
  color: var(--accent);
}

/* 23 Learn It vs Get It Done Options */
.options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.option-box {
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.option-box.learn {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, transparent 100%), var(--bg-card);
}

.option-box.execute {
  border-color: rgba(6, 182, 212, 0.3);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.06) 0%, transparent 100%), var(--bg-card);
}

.option-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.option-box.learn .option-label { color: var(--primary-light); }
.option-box.execute .option-label { color: var(--accent-light); }

.option-box h3 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}

.option-box p {
  font-size: 0.98rem;
  line-height: 1.6;
}

.option-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.option-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

/* 24 Core Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-light);
}

.service-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* 28 Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  color: var(--text-main);
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: rgba(124, 58, 237, 0.25);
  position: absolute;
  top: -1.75rem;
  left: -0.75rem;
  z-index: 0;
  line-height: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-light);
  overflow: hidden;
  border: 2px solid rgba(124, 58, 237, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* 29 YouTube / Free Content Section */
.youtube-showcase {
  background: linear-gradient(135deg, rgba(20, 24, 38, 0.95) 0%, rgba(12, 15, 26, 0.98) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(239, 68, 68, 0.08);
}

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

.yt-preview-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.yt-preview-box {
  background: #080a12;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.yt-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.yt-preview-box:hover img {
  transform: scale(1.04);
  opacity: 0.98;
}

.yt-preview-box:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.25);
}

.yt-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.yt-play-btn i {
  margin-left: 4px;
}

.yt-preview-box:hover .yt-play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.9);
}

.yt-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.yt-overlay-badge i {
  color: #ef4444;
}

.yt-video-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  gap: 1rem;
}

.yt-video-title-bar h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.yt-badge-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-light);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.youtube-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.youtube-info-side h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.youtube-info-side h2 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.youtube-topics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  list-style: none;
}

.youtube-topics-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-main);
}

.youtube-topics-list li::before {
  content: '🔴';
  font-size: 0.7rem;
}

.youtube-action-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ==========================================================================
   30 Premium Free Resource / Lead Magnet Showcase
   ========================================================================== */
.lead-magnet-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.lead-magnet-card-premium {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 20, 32, 0.95) 0%, rgba(10, 13, 22, 0.98) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-xl);
  padding: 4rem 4rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px rgba(124, 58, 237, 0.15);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Glowing background ambient orbs */
.lead-glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
}

.lead-glow-1 {
  width: 380px;
  height: 380px;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.lead-glow-2 {
  width: 420px;
  height: 420px;
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}

.lead-magnet-content-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Side: Info & Value Showcase */
.lead-magnet-info-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.lead-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.lead-pill-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.lead-headline {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.lead-headline span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-subdesc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.lead-subdesc strong {
  color: var(--text-light);
}

/* Perks List */
.lead-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2.25rem;
}

.lead-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.lead-perk-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateX(4px);
}

.perk-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.perk-text strong {
  font-size: 0.95rem;
  color: var(--text-light);
}

.perk-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Social Proof Bar */
.lead-social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.lead-avatar-group {
  display: flex;
  align-items: center;
}

.lead-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e2436;
  border: 2px solid #0f121d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.lead-avatar:first-child {
  margin-left: 0;
}

.lead-rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lead-rating-info .stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 0.78rem;
}

.lead-rating-info .stars span {
  margin-left: 0.35rem;
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.82rem;
}

.proof-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Right Side: Floating High-Conversion Form Box */
.lead-magnet-form-side {
  display: flex;
  justify-content: center;
}

.lead-form-box {
  width: 100%;
  max-width: 440px;
  background: rgba(14, 18, 30, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(124, 58, 237, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

.lead-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}

.lead-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
  flex-shrink: 0;
}

.form-header-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--text-light);
}

.form-header-text p {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 500;
  margin: 0;
}

.lead-form-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group-custom label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.form-group-custom label i {
  color: var(--accent-light);
  font-size: 0.8rem;
}

.form-group-custom .form-control {
  width: 100%;
  background: rgba(8, 11, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  transition: var(--transition-normal);
}

.form-group-custom .form-control:focus {
  border-color: var(--accent);
  background: rgba(12, 16, 28, 0.95);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
  outline: none;
}

.lead-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.lead-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.55), 0 0 20px rgba(6, 182, 212, 0.35);
}

.lead-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.lead-guarantee-note i {
  color: #10b981;
}

/* Responsive adjustments for lead magnet */
@media (max-width: 1024px) {
  .lead-magnet-card-premium {
    padding: 3rem 2.5rem;
  }
  .lead-magnet-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lead-magnet-form-side {
    width: 100%;
  }
  .lead-form-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lead-magnet-card-premium {
    padding: 2.25rem 1.5rem;
  }
  .lead-headline {
    font-size: 2rem;
  }
}

/* 16 FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(124, 58, 237, 0.35);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.4rem;
  max-height: 250px;
}

.faq-icon {
  transition: var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-light);
}

/* 17 Final CTA Section */
.final-cta-section {
  text-align: center;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.final-cta-card {
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-radius: var(--radius-lg);
}

.final-cta-icon {
  font-size: 2.75rem;
  margin-bottom: 0.25rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.final-cta-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

/* 18 Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.social-circle-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-circle-link:hover {
  background: var(--brand-gradient-btn);
  color: var(--text-light);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.contact-form-panel {
  padding: 2.75rem 2.5rem;
}

.contact-form-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Footer Section */
footer {
  background: #040507;
  border-top: 1px solid var(--border);
  padding: 5rem 1.5rem 2.5rem 1.5rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

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

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

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

/* Modal Form styling (Consulting Booking Modal) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 550px;
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: modalIn var(--transition-normal) forwards;
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-light);
}

.modal h3 {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.modal p {
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
}

/* Course Checkout & Payment Modal */
.checkout-modal-content {
  max-width: 580px;
  padding: 2.5rem 2.25rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
}

.checkout-header {
  margin-bottom: 1.25rem;
  text-align: left;
}

.checkout-price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.checkout-price-info {
  display: flex;
  flex-direction: column;
}

.checkout-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.checkout-price-amount {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-light);
}

.checkout-badge-pill {
  font-size: 0.8rem;
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.payment-method-container {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
}

.payment-method-card.active {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
  color: var(--text-light);
}

.payment-details-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  animation: fadeIn 0.3s ease;
}

.upi-box-flex {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.upi-qr-mock {
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed var(--accent);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.upi-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.checkout-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

/* Locked Course Card in LMS Dashboard */
.lms-locked-card {
  opacity: 0.8;
  border-style: dashed;
  position: relative;
  transition: var(--transition-normal);
}

.lms-locked-card:hover {
  opacity: 1;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.badge-locked {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   STUDENT LOGIN & PORTAL / LMS VIEWS
   ========================================================================== */

/* Login View Layout */
.login-view-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.login-card {
  width: 100%;
  max-width: 450px;
  padding: 3rem;
  border-radius: var(--radius-xl);
}

.login-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.login-header h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.login-options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.forgot-password {
  color: var(--primary-light);
}

.forgot-password:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.login-notice {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Dashboard View (Student LMS Dashboard) */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.dashboard-welcome h2 {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.dashboard-welcome p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.dashboard-logout-btn {
  margin-bottom: 0.25rem;
}

/* LMS Layout Grid */
.lms-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

.lms-sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lms-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lms-nav-item:hover, .lms-nav-item.active {
  background: var(--bg-card);
  color: var(--text-light);
  border-left: 3px solid var(--primary);
}

.lms-nav-icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.lms-content-panel {
  display: none;
}

.lms-content-panel.active {
  display: block;
}

.lms-panel-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Course Progress Cards in LMS Dashboard */
.my-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.lms-course-card {
  display: flex;
  flex-direction: column;
}

.lms-course-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.lms-course-progress-box {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.progress-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.progress-bar-outer {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: var(--brand-gradient);
  border-radius: 9999px;
  width: 0%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Downloads and other dashboards */
.download-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.download-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.download-info p {
  font-size: 0.8rem;
}

/* Assignments dashboard */
.assignment-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.assignment-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.assignment-info p {
  font-size: 0.8rem;
}

.assignment-status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.assignment-status.pending { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.assignment-status.submitted { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.assignment-status.graded { background: rgba(16, 185, 129, 0.1); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.2); }

/* Certificate System UI */
.certificate-showcase {
  background: linear-gradient(135deg, rgba(20, 24, 38, 0.8) 0%, rgba(12, 14, 23, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.certificate-mock-frame {
  width: 100%;
  aspect-ratio: 1.414; /* Standard landscape ratio */
  background: #11131e;
  border: 8px double #7c3aed;
  padding: 2rem;
  margin: 2rem auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cert-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.cert-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cert-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 1rem 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.cert-details {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cert-sig-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 2rem;
  font-size: 0.75rem;
}

.cert-sig-box {
  border-top: 1px solid var(--border);
  width: 150px;
  padding-top: 0.5rem;
}

.cert-lock-message {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* Support and Profile Panel */
.profile-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ==========================================================================
   COURSE VIEWER VIEW (LMS Lesson Player)
   ========================================================================== */
.course-viewer-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  min-height: calc(100vh - 80px);
}

/* Video Side */
.player-main-panel {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.player-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
}

.player-top-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.player-back-link {
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.player-back-link:hover {
  color: #fff;
  transform: translateX(-2px);
}

.player-top-divider {
  color: var(--text-muted);
  opacity: 0.4;
}

.player-top-course {
  color: var(--text-light);
  font-weight: 700;
}

.player-lesson-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.player-video-box {
  width: 100%;
  aspect-ratio: 16/9;
  background: #07090e;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.player-video-title {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.player-mock-playbtn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-normal);
}

.player-mock-playbtn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.7);
}

.player-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.player-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
  font-size: 0.9rem;
}

.video-progress-slider {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.video-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  background: var(--accent);
  border-radius: 2px;
}

.player-info-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.player-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-title-row h2 {
  font-size: 1.8rem;
}

.player-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
  margin-top: 1rem;
}

.player-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.player-tab-btn.active {
  color: var(--text-light);
}

.player-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.player-tab-content {
  padding: 1.5rem 0;
  font-size: 0.95rem;
}

.player-resource-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

/* Video Upload & Source Styling */
.video-source-switcher {
  display: flex;
  gap: 0.5rem;
  background: rgba(6, 7, 10, 0.6);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.video-source-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.video-source-btn.active {
  background: var(--brand-gradient-btn);
  color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.video-upload-dropzone {
  border: 2px dashed rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.03);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.video-upload-dropzone:hover,
.video-upload-dropzone.dragover {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-2px);
}

.upload-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
}

.video-file-info-badge {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  word-break: break-all;
}

.upload-progress-bar-wrap {
  display: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.75rem;
}

.upload-progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--brand-gradient);
  transition: width 0.3s ease;
}

/* Sidebar Sidebar View (Lessons) */
.player-sidebar {
  border-left: 1px solid var(--border);
  background: rgba(6, 7, 10, 0.4);
  display: flex;
  flex-direction: column;
}

.player-sidebar-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

.player-sidebar-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.player-sidebar-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.player-lessons-list {
  list-style: none;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.player-lesson-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.player-lesson-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.player-lesson-item.active {
  background: rgba(124, 58, 237, 0.08);
  border-left: 4px solid var(--primary);
}

.lesson-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: transparent;
  flex-shrink: 0;
}

.player-lesson-item.completed .lesson-check {
  border-color: var(--accent);
  background: var(--accent);
  color: black;
}

.lesson-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lesson-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.player-lesson-item.active .lesson-title {
  color: var(--text-light);
}

.lesson-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-grid, .about-gokul-grid, .pb-layout, .consulting-layout, .youtube-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-pill-strip {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .usp-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid, .courses-grid, .who-grid, .framework-grid, .thynk-method-grid, .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .thynk-pipeline-track {
    display: none;
  }
  .courses-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bootcamp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .options-container {
    grid-template-columns: 1fr;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
  .lms-grid {
    grid-template-columns: 1fr;
  }
  .course-viewer-layout {
    grid-template-columns: 1fr;
  }
  .player-sidebar {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-actions {
    display: none; /* Hide actions in mobile, can put in menu */
  }
  .nav-menu .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }
  .hero-headline {
    font-size: 3rem;
  }
  .usp-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .why-grid, .courses-grid, .courses-programs-grid, .who-grid, .framework-grid, .thynk-method-grid, .services-grid, .testimonials-grid, .skills-grid, .mini-courses-grid {
    grid-template-columns: 1fr;
  }
  .featured-bootcamp-card {
    padding: 1.75rem;
  }
  .bootcamp-title {
    font-size: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .my-courses-grid {
    grid-template-columns: 1fr;
  }
  .consulting-showcase {
    padding: 2rem;
  }
  .consulting-box-side {
    padding: 1.5rem;
  }
  .youtube-showcase {
    padding: 1.5rem;
  }
  .lead-form {
    flex-direction: column;
  }
  .lead-magnet-card {
    padding: 2rem;
  }
  .contact-form-panel {
    padding: 1.5rem;
  }
  .player-main-panel {
    padding: 1.5rem;
  }
  .hero-visual-container {
    width: 360px;
    height: 360px;
  }
  .hero-avatar-circle {
    width: 190px;
    height: 190px;
    border-width: 6px;
  }
  .orbit-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   31 DYNAMIC ENROLLMENT & PAYMENT FLOW STYLES
   ========================================================================== */

.enrollment-page-wrapper, .payment-page-wrapper {
  padding: 2.5rem 0 5rem;
  min-height: calc(100vh - 80px);
  position: relative;
}

/* Stepper Component */
.enrollment-stepper-container {
  background: rgba(14, 18, 30, 0.7);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.enrollment-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto;
  gap: 1rem;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0.45;
  transition: var(--transition-normal);
}

.stepper-step.active {
  opacity: 1;
}

.stepper-step.completed {
  opacity: 0.9;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stepper-step.active .step-num {
  background: var(--brand-gradient);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.stepper-step.completed .step-num {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.stepper-divider {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  min-width: 30px;
}

.stepper-divider.active {
  background: linear-gradient(90deg, #10b981, var(--primary));
}

/* Enrollment Layout */
.enrollment-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.course-overview-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.enroll-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.enroll-format-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.enroll-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-light);
}

.enroll-lead-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.enroll-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.meta-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.meta-strip-item i {
  font-size: 1.35rem;
  color: var(--accent-light);
}

.meta-strip-item .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.meta-strip-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
}

.enroll-info-box {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
}

.enroll-info-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
}

.enroll-learnings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.learn-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.learn-check-item i {
  color: #10b981;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Curriculum Accordion */
.curriculum-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.curriculum-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.15rem;
  transition: var(--transition-fast);
}

.curriculum-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 58, 237, 0.35);
}

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

.curriculum-index {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  background: rgba(6, 182, 212, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.curriculum-title {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
}

.curriculum-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.enroll-guarantee-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.guarantee-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.guarantee-tag i {
  color: var(--accent);
}

/* Sticky Registration Form Side */
.enrollment-form-side {
  position: sticky;
  top: 100px;
}

.enroll-sticky-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(124, 58, 237, 0.15);
  background: linear-gradient(160deg, rgba(16, 20, 32, 0.96) 0%, rgba(10, 13, 22, 0.98) 100%);
}

.enroll-price-box {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.enroll-price-box .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.35rem;
}

.enroll-price-box .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}

.enroll-price-val {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-light);
}

.enroll-orig-val {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.enroll-discount-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.form-group-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.enroll-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Payment Layout */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: flex-start;
}

.payment-order-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
}

.order-course-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.course-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.course-highlight-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.highlight-badge {
  font-size: 0.75rem;
  color: var(--accent-light);
}

.student-details-preview {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.student-details-preview .detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.student-details-preview .label {
  color: var(--text-muted);
}

.student-details-preview strong {
  color: var(--text-light);
}

.fee-calculation-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.calc-row.discount {
  color: #34d399;
}

.calc-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.calc-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
}

.calc-row.total .total-val {
  color: var(--accent-light);
  font-size: 1.45rem;
  font-family: var(--font-heading);
}

.payment-checkout-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.checkout-card-header {
  margin-bottom: 1.75rem;
}

.checkout-card-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-light);
}

.checkout-card-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.payment-method-card .method-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-method-card .method-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.payment-details-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.upi-box-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.upi-qr-preview {
  display: flex;
  justify-content: center;
}

.qr-mock-box {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed var(--accent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.qr-mock-box i {
  font-size: 2.75rem;
  color: var(--accent-light);
}

.qr-mock-box span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.upi-id-row {
  width: 100%;
  text-align: left;
}

.upi-id-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.4rem;
}

.pay-now-btn {
  width: 100%;
  font-size: 1.05rem;
  font-weight: 700;
}

.payment-security-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.payment-security-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Mobile Curriculum Drawer & Backdrop */
.curriculum-drawer-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.curriculum-drawer-backdrop.active {
  display: block;
  opacity: 1;
}

.curriculum-drawer-close-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.curriculum-drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #f87171;
}

.player-curriculum-mobile-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .enrollment-layout, .payment-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .enrollment-form-side {
    position: static;
  }
  .enroll-meta-strip {
    grid-template-columns: 1fr;
  }
  .course-viewer-layout {
    grid-template-columns: 1fr;
  }
  
  .player-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #0b0e18;
    z-index: 1001;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
  }

  .player-sidebar.drawer-open {
    right: 0;
  }

  .curriculum-drawer-close-btn {
    display: flex;
  }

  .player-curriculum-mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .lms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .my-courses-grid {
    grid-template-columns: 1fr;
  }
  .profile-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .enrollment-stepper {
    gap: 0.5rem;
  }
  .step-label {
    display: none;
  }
  .form-group-row-2 {
    grid-template-columns: 1fr;
  }
  .payment-tabs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .player-main-panel {
    padding: 1rem;
    gap: 1rem;
  }
  .player-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .player-lesson-nav-bar {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }
  .player-lesson-nav-bar button {
    width: 100%;
  }
  .player-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.25rem;
    gap: 1rem;
  }
  .player-tab-btn {
    font-size: 0.9rem;
  }
  .enroll-title {
    font-size: 1.85rem !important;
  }
  .enroll-sticky-card, .payment-order-card, .payment-checkout-card {
    padding: 1.25rem !important;
  }
  .order-course-highlight {
    flex-direction: column;
    text-align: center;
  }
  .hero-headline {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
  .enroll-price-val {
    font-size: 1.8rem;
  }
  .stepper-divider {
    min-width: 15px;
  }
}

/* Print-Optimized Verified Certificate Output */
@media print {
  body * {
    visibility: hidden;
  }
  #certificate-print-area, #certificate-print-area * {
    visibility: visible;
  }
  #certificate-print-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    border: 12px double #7c3aed !important;
    background: #ffffff !important;
    color: #111827 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 3rem !important;
    box-shadow: none !important;
    aspect-ratio: auto !important;
  }
  #certificate-print-area .cert-title {
    color: #7c3aed !important;
    font-size: 2.4rem !important;
    font-weight: 800 !important;
  }
  #certificate-print-area .cert-name {
    color: #111827 !important;
    font-size: 2.8rem !important;
    border-bottom: 2px solid #111827 !important;
  }
  #certificate-print-area .cert-text, #certificate-print-area .cert-details {
    color: #374151 !important;
    font-size: 1rem !important;
  }
  #certificate-print-area .cert-sig-box {
    color: #111827 !important;
    border-top: 1px solid #111827 !important;
  }
}
