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

/* --- DESIGN SYSTEM VARIABLES --- */
:root {
  --bg-primary: #080b11;
  --bg-secondary: #111524;
  --bg-tertiary: #192035;
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.15);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.15);
  --accent-gold: #f59e0b;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(139, 92, 246, 0.5);
  --success: #10b981;
  --danger: #ef4444;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glass-bg: rgba(17, 21, 36, 0.7);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(16px);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- BASIC RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

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

button {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

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

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

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.glow-btn {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all var(--transition-slow);
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.glow-btn:hover::before {
  left: 100%;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-normal);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
  border-color: rgba(139, 92, 246, 0.2);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border-color: rgba(245, 158, 11, 0.25);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 11, 17, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

header.scrolled {
  background: rgba(8, 11, 17, 0.9);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

header.scrolled .container {
  height: 65px;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-normal);
}

header.scrolled .logo-img {
  height: 34px;
}
.nav-cta {
  padding: 10px 24px;
  font-size: 0.95rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 10% 20%, var(--accent-purple-glow) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, var(--accent-cyan-glow) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero .instructor {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero .instructor strong {
  color: #ffffff;
  position: relative;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.hero-features span::before {
  content: '•';
  color: var(--accent-purple);
  font-weight: bold;
}

.software-tags-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 15px;
  margin-bottom: -5px;
}

.software-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.software-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.software-tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.software-tag.pr { border-left: 3px solid #ea77ff; }
.software-tag.ae { border-left: 3px solid #9999ff; }
.software-tag.ps { border-left: 3px solid #31a8ff; }
.software-tag.au { border-left: 3px solid #00e5a3; }
.software-tag.ai { border-left: 3px solid var(--accent-gold); }

.hero-cta-box {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}

.cta-subtitle span {
  color: var(--accent-gold);
  font-weight: bold;
}

.cta-bullets {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-bullets svg {
  color: var(--success);
  flex-shrink: 0;
}

.scarcity-warning {
  color: var(--danger);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.scarcity-warning svg {
  animation: pulse-danger 1.5s infinite;
}

@keyframes pulse-danger {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* --- HERO VIDEO CARD --- */
.hero-visual {
  position: relative;
}

.video-preview-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  aspect-ratio: 16/9;
}

.video-preview-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 11, 17, 0.8), transparent);
  transition: opacity var(--transition-normal);
}

.video-preview-wrapper:hover::after {
  opacity: 0.6;
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-preview-wrapper:hover .video-thumbnail-img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  transition: all var(--transition-normal);
  color: white;
}

.play-btn-circle svg {
  margin-left: 5px; /* Offset to center the play triangle visually */
  transition: transform var(--transition-normal);
}

.video-preview-wrapper:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.8);
}

.video-preview-wrapper:hover .play-btn-circle svg {
  transform: scale(1.1);
}

.play-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.live-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.8);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: pulse-danger-dot 1s infinite alternate;
}

@keyframes pulse-danger-dot {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* --- TRUST BAR --- */
.trust-bar {
  background: rgba(17, 21, 36, 0.5);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  overflow: hidden;
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item strong {
  color: #ffffff;
}

.trust-item svg {
  color: var(--accent-cyan);
}

.trust-item.stars svg {
  color: var(--accent-gold);
}

/* --- SECTION GENERAL --- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
}

/* --- SECTION 2: IMAGINE THIS --- */
.imagine {
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

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

.imagine-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.imagine-left h3 {
  font-size: 2.2rem;
  line-height: 1.3;
}

.imagine-cards {
  display: grid;
  gap: 16px;
}

.imagine-card {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.imagine-card:hover {
  transform: translateX(5px);
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.imagine-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.imagine-card h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.imagine-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.imagine-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.live-classroom-box {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.15);
  background: linear-gradient(135deg, rgba(17, 21, 36, 0.8) 0%, rgba(8, 11, 17, 0.8) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.live-classroom-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.classroom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.classroom-badge span {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-cyan-dot 1s infinite alternate;
}

@keyframes pulse-cyan-dot {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.live-classroom-box h4 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.live-classroom-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.live-classroom-bullets {
  display: grid;
  gap: 14px;
}

.live-classroom-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
}

.live-classroom-bullets svg {
  color: var(--accent-cyan);
}

/* --- WHAT YOU WILL LEARN --- */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.learn-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  height: 100%;
}

.learn-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.1);
}

.learn-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.software-logo-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.5rem;
}

.pr-logo { background: rgba(234, 119, 255, 0.1); color: #ea77ff; border: 1px solid rgba(234, 119, 255, 0.2); }
.ae-logo { background: rgba(153, 153, 255, 0.1); color: #9999ff; border: 1px solid rgba(153, 153, 255, 0.2); }
.ps-logo { background: rgba(49, 168, 255, 0.1); color: #31a8ff; border: 1px solid rgba(49, 168, 255, 0.2); }
.au-logo { background: rgba(0, 229, 163, 0.1); color: #00e5a3; border: 1px solid rgba(0, 229, 163, 0.2); }
.ai-logo { background: rgba(245, 158, 11, 0.1); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.25); }

.learn-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.learn-topics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.learn-topics-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.learn-topics-list svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Span columns for wide layouts */
.learn-grid .learn-card.wide-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.wide-card-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.learn-grid .learn-card.wide-card .learn-topics-list {
  grid-column: 2;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* --- WHY THIS COURSE IS DIFFERENT --- */
.different {
  background: rgba(17, 21, 36, 0.3);
}

.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.diff-col {
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diff-col.wrong {
  background: rgba(239, 68, 68, 0.02);
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.diff-col.right {
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.05);
  position: relative;
}

.diff-col.right::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.diff-col h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.diff-col.wrong h3 { color: var(--danger); }
.diff-col.right h3 { color: #ffffff; }

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 500;
}

.diff-col.wrong .diff-item { color: var(--text-muted); }
.diff-col.right .diff-item { color: #ffffff; }

.diff-item svg {
  flex-shrink: 0;
}

.diff-col.wrong .diff-item svg { color: var(--danger); }
.diff-col.right .diff-item svg { color: var(--success); }

/* --- COURSE DETAILS & TRAINER --- */
.details-trainer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.course-details-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-row {
  display: flex;
  gap: 16px;
  padding: 24px;
  align-items: flex-start;
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.detail-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

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

/* Trainer details styling */
.trainer-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.trainer-info h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.trainer-title {
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 20px;
  display: block;
}

.trainer-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trainer-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trainer-bullets svg {
  color: var(--success);
  flex-shrink: 0;
}

.trainer-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-md);
}

.trainer-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.trainer-card:hover .trainer-image-wrapper img {
  transform: scale(1.05);
}

/* --- WHO CAN JOIN? & WHAT YOU WILL ACHIEVE --- */
.who-achieve-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}

.who-box, .achieve-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.who-box h3, .achieve-box h3 {
  font-size: 2.2rem;
  font-weight: 800;
}

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

.who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.who-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.who-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

.achieve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.achieve-tag {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.achieve-tag:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

/* --- LIVE CLASS EXPERIENCE --- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-normal);
}

.exp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.01);
}

.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
}

.exp-card h4 {
  font-size: 1.25rem;
}

.exp-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- STUDENT LOVE SECTION --- */
.testimonials {
  background: rgba(17, 21, 36, 0.2);
}
.testimonials-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-ticker 35s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.test-card {
  width: 380px;
  flex-shrink: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .test-card {
    width: 310px;
    padding: 24px;
  }
}

.test-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.test-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: white;
}

.test-info h4 {
  font-size: 1rem;
}

.test-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- REGISTRATION WIDGET SECTION --- */
.registration-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, var(--accent-purple-glow) 0%, transparent 60%);
}

.register-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.register-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.register-left h2 {
  font-size: 3rem;
  line-height: 1.2;
}

.register-left p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.bonus-box {
  margin-top: 15px;
}

.bonus-box h4 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-main);
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  padding: 12px 18px;
  border-radius: 8px;
}

.bonus-item svg {
  color: var(--accent-gold);
}

/* INTERACTIVE REGISTRATION WIDGET */
.reg-widget {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(17, 21, 36, 0.9) 0%, rgba(8, 11, 17, 0.95) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.reg-widget-header {
  text-align: center;
  margin-bottom: 24px;
}

.reg-widget-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.reg-steps-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
  padding: 0 10px;
}

.reg-steps-line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.reg-steps-progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0%; /* Dynamic */
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  z-index: 2;
  transition: width var(--transition-normal);
}

.reg-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 3;
  transition: all var(--transition-normal);
}

.reg-step-dot.active {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px var(--accent-purple);
  color: white;
}

.reg-step-dot.completed {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

/* WIDGET SCARCITY INFO */
.widget-scarcity {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seats-count-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.seats-remaining-alert {
  color: var(--accent-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.seats-remaining-alert span {
  font-size: 1.1rem;
  padding: 2px 8px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.progressbar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.progressbar-fill {
  height: 100%;
  width: 82%; /* Start high, ticks down slightly */
  background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-gold) 100%);
  border-radius: 9999px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* COUNTDOWN TIMER styling inside widget */
.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.timer-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-display {
  display: flex;
  gap: 12px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 48px;
  text-align: center;
}

.timer-unit-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* WIDGET FORMS AND STEPS */
.widget-step {
  display: none;
}

.widget-step.active {
  display: block;
}

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

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

.form-group input, .form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--border-focus);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
  outline: none;
}

.batch-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.batch-radio-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.batch-radio-label:hover {
  background: rgba(255, 255, 255, 0.04);
}

.batch-radio-input {
  display: none;
}

.batch-radio-input:checked + .batch-radio-label {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.05);
}

.batch-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-fast);
}

.batch-radio-input:checked + .batch-radio-label .custom-radio {
  border-color: var(--accent-purple);
}

.custom-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-purple);
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.batch-radio-input:checked + .batch-radio-label .custom-radio::after {
  transform: scale(1);
}

.batch-details h4 {
  font-size: 1rem;
}

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

.batch-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

/* WIDGET PRICING TABLE */
.widget-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.price-left {
  display: flex;
  flex-direction: column;
}

.price-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-now {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.price-was {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-guarantee {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

.widget-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  margin-top: 10px;
}

.widget-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
}

.widget-secure-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.widget-secure-text svg {
  color: var(--success);
}

/* Success step */
.success-content {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--success);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--success);
  margin-bottom: 10px;
  animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scale-up {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-content h4 {
  font-size: 1.5rem;
  color: var(--success);
}

.success-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(17, 21, 36, 0.4);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(17, 21, 36, 0.6);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.faq-arrow {
  transition: transform var(--transition-normal);
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 1rem;
  border-top: 1px solid transparent;
}

/* Active FAQ states */
.faq-item.active {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(17, 21, 36, 0.6);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.faq-item.active .faq-answer {
  padding: 0 28px 22px 28px;
  border-color: rgba(255, 255, 255, 0.05);
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
  position: relative;
  background: radial-gradient(circle at top, var(--accent-purple-glow) 0%, transparent 60%);
}

.final-cta-card {
  padding: 80px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta-card h2 {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
}

.final-cta-card p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
}

/* --- FOOTER --- */
footer {
  background: #04060b;
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
.footer-right {
  display: flex;
  gap: 24px;
}

/* --- FLOATING & OVERLAY COMPONENTS --- */

/* 1. Exit-Intent Popup Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 11, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(17, 21, 36, 0.95) 0%, rgba(8, 11, 17, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.2rem;
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.modal-badge {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-card h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}

.modal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
}

.modal-form input:focus {
  border-color: var(--border-focus);
  outline: none;
}

.modal-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.modal-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* 2. Intro Video Lightbox Modal */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 11, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.video-container {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  background: black;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.video-lightbox.active .video-container {
  transform: scale(1);
}

.video-container iframe, .video-container video {
  width: 100%;
  height: 100%;
  border: none;
}

.close-video-btn {
  position: absolute;
  top: -45px;
  right: 0;
  color: white;
  font-size: 2rem;
  background: none;
}

/* 3. Floating WhatsApp Support Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* 4. Mobile Sticky Bottom CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 21, 36, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  display: none; /* JS will toggle, responsive rules apply */
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  transform: translateY(100%);
  transition: transform var(--transition-normal) ease-out;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-cta-info {
  display: flex;
  flex-direction: column;
}

.mobile-cta-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.mobile-cta-price span {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 6px;
  font-weight: 500;
}

.mobile-cta-label {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.mobile-cta-btn {
  padding: 12px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

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

/* Desktop / Large screens (up to 1200px) */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* Tablet (up to 992px) */
@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .imagine-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .learn-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .learn-grid .learn-card.wide-card {
    grid-column: span 2;
  }
  
  .different-grid {
    grid-template-columns: 1fr;
  }
  
  .details-trainer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .who-achieve-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .register-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 120px 0 60px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-bullets {
    flex-direction: column;
    gap: 8px;
  }
  
  .learn-grid {
    grid-template-columns: 1fr;
  }
  
  .learn-grid .learn-card.wide-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .learn-grid .learn-card.wide-card .learn-topics-list {
    grid-column: 1;
  }
  
  .trainer-card {
    grid-template-columns: 1fr;
  }
  
  .trainer-image-wrapper {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .who-grid {
    grid-template-columns: 1fr;
  }
  
  .reg-widget {
    padding: 24px;
  }
  
  .modal-card {
    padding: 24px;
  }
  
  .modal-card h3 {
    font-size: 1.5rem;
  }
  
  .final-cta-card {
    padding: 40px 20px;
  }
  
  .final-cta-card h2 {
    font-size: 2rem;
  }
  
  /* Mobile sticky bottom CTA active */
  .mobile-sticky-cta {
    display: flex;
  }
  
  /* Give body extra padding at bottom to clear mobile CTA */
  body {
    padding-bottom: 76px;
  }
  
  .whatsapp-float {
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .nav-cta {
    display: flex;
    padding: 8px 16px;
    font-size: 0.85rem;
    gap: 6px;
  }
}

/* --- FLASH EFFECT FOR SCARCITY TICK --- */
.flash-effect {
  animation: flash-animation 1.0s ease-out;
}
@keyframes flash-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); color: var(--accent-gold); }
  100% { transform: scale(1); }
}
