/* ═══ RESET & VARIABLES ═══ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0e0e16;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --accent-gold: #FFA500;
  --accent-gold-dim: rgba(255, 165, 0, 0.12);
  --accent-gold-hover: #e89400;
  --accent-gradient: linear-gradient(135deg, #FFA500 0%, #FFC837 100%);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.48);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(255, 165, 0, 0.2);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow: 0 0 60px rgba(255, 165, 0, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══ UTILITIES ═══ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: var(--accent-gold-dim);
  border: 1px solid rgba(255, 165, 0, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 620px;
}

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

.bg-darker {
  background: var(--bg-secondary);
}

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 165, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 4px 24px rgba(255, 165, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid rgba(255, 165, 0, 0.4);
}

.btn-secondary:hover {
  background: var(--accent-gold-dim);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══ NAVIGATION ═══ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-bar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--bg-primary);
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, var(--bg-primary) 95%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(1px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-dim);
  border: 1.5px solid rgba(255, 165, 0, 0.35);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 40px;
}

/* ═══ CERTIFICATION SECTION ═══ */
.cert-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.cert-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,165,0,0.1);
  border: 1px solid var(--border-gold);
}

.cert-img-wrapper img {
  width: 100%;
  display: block;
}

.cert-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 24px;
}

.cert-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.cert-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cert-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.cert-icon i {
  font-size: 11px;
  color: #000;
}

/* ═══ MODULES ═══ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.module-card {
  padding: 32px;
}

.module-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.module-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ═══ PRICING ═══ */
.pricing-box {
  background: var(--bg-glass);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  max-width: 500px;
  margin: 60px auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
}

.price-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer img {
  height: 40px;
  margin-bottom: 24px;
}

/* ═══ NEW SECTIONS STYLES ═══ */

/* Instructor Section */
.instructor-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.instructor-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
}

.instructor-img img {
  width: 100%;
  display: block;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Outcome Grid */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

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

.outcome-card i {
  color: var(--accent-gold);
  font-size: 20px;
  margin-top: 4px;
}

/* Bonus Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bonus-card {
  padding: 24px;
  border: 1px dashed var(--border-gold);
  position: relative;
}

.bonus-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1100;
  text-decoration: none;
  transition: transform 0.3s ease, bottom 0.3s ease;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 85px; /* Stay above the sticky CTA */
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
}

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

/* Who it's for grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.who-item {
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Testimonial Gallery */
.testimonial-gallery {
  display: flex;
  overflow-x: auto;
  padding: 20px 0 40px;
  gap: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-gallery::-webkit-scrollbar {
  display: none;
}

.testimonial-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  padding: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-item .caption {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 4px;
}

.testimonial-item .caption strong {
  color: var(--accent-gold);
  display: block;
  margin-bottom: 4px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -10px;
  color: var(--text-muted);
  font-size: 13px;
}

.scroll-hint i {
  animation: bounceX 1.5s infinite;
}

@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .instructor-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .instructor-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .instructor-stats {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}
