/* ============================================
   FLUKESYS GLOBAL ACADEMY — PREMIUM DESIGN SYSTEM
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --navy: #071B2A;
  --navy-light: #0a2540;
  --navy-medium: #0e3258;
  --primary: #0D8FDB;
  --primary-dark: #0a72b0;
  --accent: #1EA7FF;
  --accent-light: #4dbcff;
  --bg-light: #F5F7FA;
  --bg-white: #ffffff;
  --yellow: #FFC72C;
  --yellow-dark: #e6b000;
  --text-dark: #1a2332;
  --text-body: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --border: rgba(13, 143, 219, 0.12);
  --border-light: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(13, 143, 219, 0.2);
  --shadow-glow-accent: 0 0 60px rgba(30, 167, 255, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

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

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: rgba(7, 27, 42, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.2);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  height: 70px;
  width: auto;
  transition: height var(--transition-base);
}

.navbar.scrolled .navbar-logo img {
  height: 52px;
}


.navbar-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.navbar-logo .logo-accent {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(13, 143, 219, 0.3);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(13, 143, 219, 0.45);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-medium) 70%, var(--navy) 100%);
  animation: heroGradient 12s ease infinite;
  background-size: 300% 300%;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--yellow);
  top: 40%;
  right: 30%;
  opacity: 0.15;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(30, 167, 255, 0.1);
  border: 1px solid rgba(30, 167, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 24px rgba(13, 143, 219, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #4dbcff 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(13, 143, 219, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-base);
}

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

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInUp 0.8s ease 1s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.trust-badge .icon {
  font-size: 1.1rem;
}

.trust-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.3);
  max-width: 450px;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 42, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating glass cards */
.glass-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  z-index: 3;
  animation: glassFloat 5s ease-in-out infinite;
}

.glass-card-1 {
  top: 20px;
  right: -30px;
  animation-delay: 0s;
}

.glass-card-2 {
  bottom: 60px;
  left: -40px;
  animation-delay: -2s;
}

.glass-card-3 {
  bottom: 20px;
  right: -20px;
  animation-delay: -4s;
}

@keyframes glassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.glass-card .glass-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.glass-card .glass-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.glass-card .glass-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* Countdown timer */
.countdown-section {
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 1.2s both;
}

.countdown-label {
  font-size: 0.82rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.countdown {
  display: flex;
  gap: 12px;
}

.countdown-item {
  text-align: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  min-width: 60px;
}

.countdown-item .number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}

.countdown-item .label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Live indicator */
.live-registrations {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  animation: fadeInUp 0.8s ease 1.4s both;
}

.live-registrations .live-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s ease infinite;
}

.live-registrations span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.live-registrations strong {
  color: #22c55e;
}

/* Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === SECTION COMMON === */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .section-label {
  background: rgba(30, 167, 255, 0.1);
  border: 1px solid rgba(30, 167, 255, 0.2);
  color: var(--accent-light);
}

.section-light .section-label,
.section .section-label {
  background: rgba(13, 143, 219, 0.08);
  border: 1px solid rgba(13, 143, 219, 0.15);
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-dark .section-title {
  color: #fff;
}

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

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}

/* === PROBLEMS SECTION === */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 143, 219, 0.2);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13, 143, 219, 0.08), rgba(30, 167, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition-base);
}

.problem-card:hover .problem-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.1);
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.about-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.about-feature:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(30, 167, 255, 0.2);
  transform: translateY(-2px);
}

.about-feature .feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature .feature-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.about-visual {
  position: relative;
}

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

.about-stat-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  backdrop-filter: blur(8px);
}

.about-stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(30, 167, 255, 0.2);
}

.about-stat-card .stat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.about-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.about-stat-card .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* === LEARN SECTION === */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.learn-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.learn-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 143, 219, 0.2);
}

.learn-card:hover::after {
  width: 60%;
}

.learn-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13, 143, 219, 0.08), rgba(30, 167, 255, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: var(--transition-base);
}

.learn-card:hover .learn-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.15) rotate(5deg);
}

.learn-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* === TIMELINE SECTION === */
.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.timeline-day {
  position: relative;
}

.timeline-day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.day-number {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

.day-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.timeline-items {
  position: relative;
  padding-left: 32px;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-light);
  z-index: 1;
}

.timeline-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 143, 219, 0.2);
}

.timeline-item .timeline-icon {
  margin-right: 10px;
}

.timeline-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  display: inline;
}

/* === EXPERTS SECTION === */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.expert-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(135deg, rgba(13, 143, 219, 0.05), rgba(30, 167, 255, 0.1));
  z-index: 0;
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 143, 219, 0.3);
}

.expert-avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  z-index: 1;
}

.expert-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateZ(0);
  transition: var(--transition-base);
}

.expert-card:hover .expert-avatar {
  transform: scale(1.05);
}

.expert-info {
  position: relative;
  z-index: 1;
}

.expert-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.expert-title {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.expert-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

.expert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.expert-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 500;
}


/* === BONUS SECTION === */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.bonus-card::before {
  content: 'FREE';
  position: absolute;
  top: 14px;
  right: -28px;
  padding: 4px 32px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: rotate(45deg);
}

.bonus-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(30, 167, 255, 0.3);
  box-shadow: 0 10px 40px rgba(13, 143, 219, 0.15);
}

.bonus-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 167, 255, 0.15), rgba(13, 143, 219, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: var(--transition-base);
}

.bonus-card:hover .bonus-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.1);
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.bonus-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(13, 143, 219, 0.08);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 143, 219, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* === STATS SECTION === */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

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

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

.faq-item:hover {
  border-color: rgba(13, 143, 219, 0.2);
}

.faq-item.active {
  border-color: rgba(13, 143, 219, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 143, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
  font-size: 0.9rem;
  color: var(--primary);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
}

.final-cta .cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.final-cta .cta-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.12;
  top: -200px;
  left: -100px;
}

.final-cta .cta-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  opacity: 0.1;
  bottom: -150px;
  right: -100px;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  padding: 16px 32px;
  background: rgba(255, 199, 44, 0.1);
  border: 1px solid rgba(255, 199, 44, 0.25);
  border-radius: var(--radius-lg);
}

.price-original {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

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

.price-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-align: left;
  line-height: 1.4;
}

.seats-warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-full);
  margin: 16px 0;
  color: #fca5a5;
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.45);
  background: #1ebe5c;
}

.final-countdown {
  margin-top: 32px;
}

.final-countdown .countdown {
  justify-content: center;
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  cursor: pointer;
  animation: whatsappPulse 3s ease-in-out infinite;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .live-registrations {
    justify-content: center;
  }

  .learn-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-features {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .experts-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
}

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

  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-wrapper {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .section {
    padding: 70px 0;
  }

  .price-highlight {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-brand {
      flex-direction: column;
      gap: 8px;
  }
}

@media (max-width: 480px) {
  .countdown {
    gap: 8px;
  }

  .countdown-item {
    padding: 8px 10px;
    min-width: 50px;
  }

  .countdown-item .number {
    font-size: 1.2rem;
  }

  .hero-trust {
    gap: 10px;
  }

  .trust-badge {
    padding: 6px 10px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--yellow));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* === SELECTION STYLE === */
::selection {
  background: rgba(13, 143, 219, 0.2);
  color: var(--text-dark);
}

/* === PAYMENT BUTTON PULSE === */
.btn-pay-now {
  animation: buttonPulse 2.5s infinite ease-in-out;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-pay-now:hover {
  animation: none !important;
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 15px 40px rgba(30, 167, 255, 0.7) !important;
}

@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(30, 167, 255, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(30, 167, 255, 0.6), 0 0 0 10px rgba(30, 167, 255, 0.15);
  }
}

