:root {
  --bg-gradient-start: #43216f;
  --bg-gradient-end: #1d1448;
  --bg-darker: #120b2f;
  --accent-neon: #32d5ff;
  --accent-secondary: #ff7af5;
  --text-main: #f9f5ff;
  --text-muted: #c9b8ff;
  --card-bg: rgba(20, 8, 60, 0.8);
  --border-glass: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.55);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-full: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.28s ease-out;
}

* , *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #7a3cff 0, transparent 55%),
    radial-gradient(circle at bottom right, #00d4ff 0, transparent 55%),
    linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(6, 0, 28, 0.92),
    rgba(6, 0, 28, 0.55),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #ffffff, transparent 55%),
    linear-gradient(135deg, var(--accent-neon), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050016;
  font-weight: 800;
  font-size: 1rem;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.logo-text .dot {
  color: var(--accent-neon);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 0;
  height: 2px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    90deg,
    var(--accent-neon),
    var(--accent-secondary)
  );
  transition: width var(--transition-med);
}

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

.btn {
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background-image: linear-gradient(
    135deg,
    var(--accent-neon),
    #5ce1ff,
    var(--accent-secondary)
  );
  color: #05001a;
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 240, 255, 0.45);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 8px 22px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-neon);
  border: 1px solid rgba(137, 255, 255, 0.7);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}

.btn-secondary:hover {
  background: rgba(137, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  margin-top: 0.3rem;
}

.btn-large {
  padding: 0.85rem 1.8rem;
  font-size: 1.02rem;
}

.btn-nav {
  background: transparent;
  border: 1px solid rgba(137, 255, 255, 0.7);
  color: var(--accent-neon);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.18rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.hero-text h1 span {
  color: var(--accent-neon);
}

.hero-sub {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.mentor-badge {
  margin: 0.6rem 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 18px;
  background: radial-gradient(
      circle at -10% -10%,
      rgba(41, 243, 255, 0.25),
      transparent 55%
    ),
    rgba(6, 0, 36, 0.92);
  border: 1px solid rgba(178, 246, 255, 0.6);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
}

.mentor-photo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mentor-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(180, 255, 255, 0.9);
}

.mentor-copy strong {
  font-size: 0.86rem;
}

.mentor-copy p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}

.hero-guarantee {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  background: radial-gradient(
      circle at 0 0,
      rgba(41, 243, 255, 0.35),
      transparent 55%
    ),
    rgba(9, 1, 52, 0.9);
  border: 1px solid rgba(180, 255, 255, 0.35);
  box-shadow: 0 14px 36px rgba(3, 0, 30, 0.72);
}

.badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(143, 255, 210, 0.8);
  position: relative;
}

.badge-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: conic-gradient(
    from 45deg,
    #3cf2ff,
    #9efff0,
    #ffffff,
    #ff8bf5,
    #3cf2ff
  );
  mask: radial-gradient(circle at 50% 50%, transparent 50%, #000 51%);
}

.badge-text strong {
  font-size: 0.85rem;
}

.badge-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

/* Review carousel on hero right */
.review-carousel {
  max-width: 280px;
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  padding: 0.8rem;
}

.review-carousel-inner {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 0.4rem;
}

.review-carousel-inner::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: rgba(6, 0, 30, 0.92);
  border: 1px solid rgba(141, 228, 255, 0.5);
  border-radius: 12px;
  padding: 0.9rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.5s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #080019;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.2;
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.review-stars {
  color: #ffd700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.review-text {
  font-size: 0.82rem;
  color: #e0e0ff;
  line-height: 1.4;
  margin-top: 0.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .review-carousel {
    max-width: 240px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .review-carousel {
    max-width: 100%;
    height: 260px;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  background: rgba(4, 0, 35, 0.8);
  border: 1px solid rgba(183, 255, 243, 0.6);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.stat-value {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
}

.hero-progress {
  margin-top: 1.4rem;
}

.hero-progress span {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 75%;
  border-radius: inherit;
  background-image: linear-gradient(
    90deg,
    var(--accent-secondary),
    var(--accent-neon)
  );
  box-shadow: 0 0 18px rgba(41, 243, 255, 0.78);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.proofs {
  padding: 3.2rem 0;
}

.slideshow {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.4rem 2.4rem;
}

.slides {
  position: relative;
  height: 340px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: radial-gradient(circle at center, #1f143f, #090415);
}

.slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(4, 0, 30, 0.9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.slide-btn:hover {
  background: rgba(35, 0, 105, 0.98);
  transform: translateY(-50%) scale(1.03);
}

.slide-btn.prev {
  left: 0.6rem;
}

.slide-btn.next {
  right: 0.6rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: width var(--transition-med), background var(--transition-med),
    transform var(--transition-med);
}

.dots button.active {
  width: 20px;
  background: linear-gradient(
    90deg,
    var(--accent-neon),
    var(--accent-secondary)
  );
  transform: translateY(-1px);
}

.learn {
  padding: 3.4rem 0;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.learn-card {
  padding: 1.3rem 1.2rem 1.4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at -10% -10%,
      rgba(41, 243, 255, 0.18),
      transparent 55%
    ),
    var(--card-bg);
}

.learn-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(
      135deg,
      rgba(41, 243, 255, 0.7),
      rgba(255, 122, 245, 0.7)
    )
    border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.learn-card:hover::after {
  opacity: 1;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff, transparent 60%),
    linear-gradient(135deg, var(--accent-neon), var(--accent-secondary));
  display: inline-block;
  margin-bottom: 0.8rem;
  position: relative;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}

.icon-circle::after {
  content: "★";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #080019;
  font-weight: 700;
}

.learn-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.learn-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.why {
  padding: 3.6rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: center;
}

.why-text h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.why-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.why-text p + p {
  margin-top: 0.7rem;
}

.why-info {
  padding: 1.5rem 1.4rem;
}

.why-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.why-row:last-of-type {
  margin-bottom: 1.2rem;
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: conic-gradient(
    from 120deg,
    var(--accent-neon),
    var(--accent-secondary),
    var(--accent-neon)
  );
  box-shadow: 0 0 18px rgba(41, 243, 255, 0.7);
}

.why-row h3 {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
}

.why-row p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.why-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.why-stat {
  padding: 0.8rem 0.7rem;
  border-radius: 16px;
  background: rgba(12, 3, 50, 0.95);
}

.why-stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.why-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.curriculum {
  padding: 3.5rem 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.accordion-item {
  width: 100%;
  text-align: left;
  background: rgba(10, 0, 48, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 135, 255, 0.7);
  padding: 0.7rem 1rem;
  cursor: pointer;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background var(--transition-med), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.accordion-item:hover {
  background: rgba(23, 5, 92, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.98rem;
}

.accordion-icon {
  font-size: 1.1rem;
  color: var(--accent-neon);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-body p {
  margin: 0.2rem 0 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment {
  padding: 3.6rem 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.payment-info {
  padding: 1.7rem 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.payment-info::before {
  content: "";
  position: absolute;
  inset: -80%;
  background: radial-gradient(
    circle at top left,
    rgba(41, 243, 255, 0.32),
    transparent 55%
  );
}

.payment-info > * {
  position: relative;
}

.price-tag {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.price-tag span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0 0.8rem;
}

.pay-card {
  padding: 0.9rem 0.8rem;
  border-radius: 16px;
  background: rgba(10, 0, 50, 0.9);
}

.pay-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-bottom: 0.55rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
}

.crypto-icon {
  background: conic-gradient(
    from 180deg,
    #00f5ff,
    #ffd600,
    #ff8a00,
    #00f5ff
  );
}

.upi-icon {
  background: linear-gradient(135deg, #00ffb8, #00f5ff);
}

.pay-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.pay-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.payment-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 1.1rem 0 1rem;
}

.secure-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.after-payment {
  padding: 1.7rem 1.5rem 1.6rem;
  background: rgba(10, 0, 50, 0.9);
}

.after-payment h2 {
  margin-top: 0;
}

.after-payment p {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.9rem;
}

label {
  font-size: 0.85rem;
}

input[type="text"],
input[type="email"],
input[type="file"] {
  border-radius: 12px;
  border: 1px solid rgba(164, 151, 255, 0.7);
  background: rgba(7, 0, 30, 0.94);
  padding: 0.55rem 0.7rem;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), transform var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="file"]:focus {
  border-color: var(--accent-neon);
  box-shadow: 0 0 0 1px rgba(41, 243, 255, 0.4);
  background: rgba(13, 0, 55, 0.98);
  transform: translateY(-1px);
}

input[type="file"] {
  padding: 0.45rem 0.7rem;
}

.input-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-message {
  margin-top: 0.9rem;
  font-size: 0.85rem;
}

.form-message.success {
  color: #76ffb5;
}

.form-message.error {
  color: #ff9f9f;
}

.faq {
  padding: 3.3rem 0 3.6rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.faq-item {
  padding: 1.1rem 1rem;
  background: rgba(13, 1, 55, 0.96);
}

.faq-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(89, 51, 255, 0.7),
    rgba(0, 0, 0, 0.9)
  );
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease;
  z-index: 60;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
  z-index: 70;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.modal-content {
  max-width: 520px;
  width: 100%;
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.modal-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-content p + p {
  margin-top: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  cursor: pointer;
}

/* How to Pay Section */
.how-to-pay {
  padding: 3.4rem 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(41, 243, 255, 0.03) 20%,
    rgba(41, 243, 255, 0.03) 80%,
    transparent
  );
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at -10% -10%,
      rgba(41, 243, 255, 0.15),
      transparent 55%
    ),
    var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #080019;
  box-shadow: 0 8px 20px rgba(41, 243, 255, 0.4);
}

.step-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.step-card p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-details li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #e0e0ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-details li::before {
  content: "✓";
  color: var(--accent-secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

.important-note {
  padding: 1.8rem 2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
}

.important-note h3 {
  margin: 0 0 1rem;
  color: #ef4444;
  font-size: 1.1rem;
}

.important-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.important-note li {
  padding: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.important-note li:last-child {
  border-bottom: none;
}

.important-note strong {
  color: #ffffff;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  
  .step-card {
    padding: 1.5rem 1.2rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .important-note {
    padding: 1.5rem 1.2rem;
  }
}

/* WhatsApp Button Styles */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128C7E, #0F5132);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

.whatsapp-icon {
  font-size: 1.3rem;
}

.whatsapp-section {
  text-align: center;
  margin: 2rem 0;
}

.whatsapp-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.whatsapp-note br {
  display: block;
  margin: 0.3rem 0;
}

@media (max-width: 768px) {
  .after-payment {
    padding: 1.5rem;
    max-width: 100%;
  }
}

/* Instamojo Payment Modal */
.instamojo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.instamojo-modal.active {
  opacity: 1;
  visibility: visible;
}

.instamojo-modal-content {
  background: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 100000;
}

.instamojo-modal.active .instamojo-modal-content {
  transform: scale(1);
}

.instamojo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.instamojo-close:hover {
  background: #e0e0e0;
  color: #333;
}

.instamojo-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}

.instamojo-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--accent-neon);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.instamojo-loading p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 0, 26, 0.96);
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  margin: 0;
  display: flex;
  gap: 0.6rem;
}

.footer-link {
  background: none;
  border: none;
  color: var(--accent-neon);
  cursor: pointer;
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .why-grid,
  .payment-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    justify-content: center;
    margin-top: 1.4rem;
  }

  .slides {
    height: 260px;
  }

  .learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-methods {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.7rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    padding: 0.8rem 1rem 0.9rem;
    background: rgba(6, 0, 30, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(109, 94, 255, 0.7);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav.open {
    opacity: 1;
    transform: translateY(4px);
    pointer-events: auto;
  }

  .btn-nav {
    align-self: stretch;
    text-align: center;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.1rem;
  }

  .learn-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .slides {
    height: 220px;
  }

  .mentor-badge {
    align-items: flex-start;
  }
}
