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

:root {
  --primary-color: #FF7700;
  --primary-hover: #E06600;
  --primary-glow: rgba(255, 119, 0, 0.25);
  --primary-border: #FFD3AD;
  --primary-light: #FFF5ED;
  --dark-bg: #041C33;
  --dark-bg-alt: #031424;
  --white: #FFFFFF;
  --black: #0F172A;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-orange: #FF7700;
  --green: #10B981;
  --red: #EF4444;
  --blue-deep: #1E3A8A;
  --card-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
  --button-shadow: 0 4px 14px 0 rgba(255,119,0,0.3);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ===== BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-orange { color: var(--text-orange); }
.text-white { color: var(--white); }
.font-extrabold { font-weight: 800; }

/* ===== HEADER ===== */
header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2E8F0;
  z-index: 50; padding: 12px 0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
header .header-content {
  display: flex; justify-content: space-between; align-items: center;
}
.logo-container { display: flex; align-items: center; gap: 10px; }
.logo-bull-svg { width: 52px; height: 44px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-prime {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 20px; color: var(--blue-deep); letter-spacing: -0.3px;
}
.logo-research {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 13px; color: #374151; letter-spacing: 1px; text-transform: uppercase;
}
.header-right { display: flex; align-items: center; gap: 14px; }
.sebi-badge {
  background: #EFF6FF; border: 1px solid #BFDBFE;
  color: #1E40AF; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 9999px;
  display: flex; align-items: center; gap: 6px;
}
.sebi-text-mobile {
  display: none;
}
.sebi-text-desktop {
  display: inline;
}
.sebi-top-bar-mobile {
  display: none;
}
.sebi-dot {
  width: 6px; height: 6px; background: #2563EB;
  border-radius: 50%; display: inline-block;
  animation: blink 1.5s infinite;
}
.header-logo {
  height: 90px;
  max-height: 90px;
  object-fit: contain;
  transform: scale(1.6);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.header-logo:hover {
  transform: scale(1.7);
}
@media (max-width: 768px) {
  header {
    padding: 0 0 10px 0;
  }
  .sebi-top-bar-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #EFF6FF;
    border-bottom: 1px solid #BFDBFE;
    color: #1E40AF;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
  }
  .header-logo {
    height: 75px;
    max-height: 75px;
    transform: scale(1.4);
    transform-origin: left center;
  }
  .sebi-badge {
    display: none;
  }
  .header-call-btn {
    font-size: 11px;
    padding: 6px 10px;
    gap: 4px;
  }
  .header-call-btn svg {
    width: 13px;
    height: 13px;
  }
  .header-right {
    gap: 8px;
  }
}
.header-call-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--primary-color); color: white;
  font-weight: 600; font-size: 13px;
  padding: 8px 16px; border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  border: none; cursor: pointer;
}
.header-call-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* ===== HERO TOP TAG ===== */
.hero-top-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FFF5ED, #FFEDD5);
  border: 1.5px solid var(--primary-border);
  color: var(--primary-color);
  font-weight: 600; font-size: 14px;
  padding: 6px 18px; border-radius: 9999px;
  margin-bottom: 18px;
  animation: pulse-glow 2s infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600;
  padding: 14px 28px; border-radius: var(--border-radius-sm);
  border: none; cursor: pointer;
  transition: all var(--transition-normal); font-size: 16px;
}
.btn-primary {
  background: var(--primary-color); color: var(--white);
  box-shadow: var(--button-shadow); border-bottom: 4px solid #D66400;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-hover); box-shadow: 0 6px 20px 0 rgba(255,119,0,0.4); }
.btn-primary:active { transform: translateY(1px); border-bottom-width: 1px; }
.btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background: var(--primary-light); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 18px; border-radius: var(--border-radius-md); }

/* ===== HERO SECTION ===== */
.hero-section { padding: 60px 0; background: var(--white); }
.hero-header { margin-bottom: 40px; }
.hero-title { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 12px; color: var(--black); }
.hero-subtitle { font-size: 20px; color: var(--text-dark); font-weight: 500; }
.hero-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }

/* Detail cards */
.details-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 28px; }
.detail-card {
  background: var(--primary-light); border: 2px solid var(--primary-border);
  padding: 16px; border-radius: var(--border-radius-md);
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition-normal);
}
.detail-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,119,0,0.1); }
.detail-icon {
  width: 42px; height: 42px; background: var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.detail-icon svg { width: 22px; height: 22px; stroke: var(--white); }
.detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); font-weight: 600; }
.detail-value { font-size: 15px; font-weight: 700; color: var(--black); }

/* Stats row */
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: var(--white);
  border: 1.5px solid #E2E8F0; border-radius: var(--border-radius-md);
  overflow: hidden; margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}
.stat-item { flex: 1; padding: 20px 10px; text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--primary-color); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
.stat-divider { width: 1px; height: 50px; background: #E2E8F0; }

/* Callout box */
.callout-box {
  background: var(--primary-light); border: 2px dashed var(--primary-border);
  padding: 18px 24px; border-radius: var(--border-radius-md);
  font-size: 15px; font-weight: 500; line-height: 1.6;
}

/* Registration Card */
.register-card {
  background: var(--white); border: 1px solid #E2E8F0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-radius: var(--border-radius-lg);
  padding: 32px; position: sticky; top: 90px;
  margin-top: -30px;
}
.register-card-header { margin-bottom: 24px; text-align: center; }
.price-container { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 8px; }
.price-free { font-size: 42px; font-family: var(--font-heading); font-weight: 800; color: var(--primary-color); animation: pulse-animation 2s infinite; }
.price-label { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.slots-urgency {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  background: #F8FAFC; border: 1px solid #E2E8F0;
  padding: 6px 14px; border-radius: 9999px;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; display: inline-block;
  animation: blink 1s infinite;
}

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #CBD5E1; border-radius: var(--border-radius-sm);
  font-family: var(--font-sans); font-size: 15px;
  transition: all var(--transition-fast); background: white; color: var(--text-dark);
}
.form-input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.phone-input-wrap { display: flex; align-items: center; gap: 0; }
.phone-prefix {
  background: #F1F5F9; border: 1.5px solid #CBD5E1; border-right: none;
  padding: 12px 12px; font-size: 15px; font-weight: 600; color: var(--text-dark);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm); white-space: nowrap;
}
.phone-field { border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0; }
.form-help { font-size: 11px; color: var(--text-muted); margin-top: 5px; display: flex; align-items: center; gap: 4px; }
.form-bottom-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--dark-bg); color: white;
  padding: 10px 0; display: flex; align-items: center; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ticker-label {
  background: var(--primary-color); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 14px; flex-shrink: 0; z-index: 1;
}
.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-content {
  display: inline-flex; gap: 50px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap; padding-left: 50px;
}
.tick { font-size: 13px; font-weight: 500; }
.tick.green { color: #4ADE80; }
.tick.red { color: #F87171; }

/* ===== NAVY SECTION ===== */
.navy-section { background: var(--dark-bg); color: var(--text-light); padding: 80px 0; }
.navy-section h2 { color: var(--white); font-size: 36px; margin-bottom: 48px; }

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.benefit-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 30px 24px; border-radius: var(--border-radius-md);
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  transition: all var(--transition-normal);
}
.benefit-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); border-color: rgba(255,119,0,0.4); }
.benefit-icon-wrapper {
  width: 52px; height: 52px; background: var(--primary-color);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.benefit-icon-wrapper svg { width: 26px; height: 26px; stroke: white; fill: none; }
.benefit-title { font-size: 18px; font-family: var(--font-heading); font-weight: 700; color: white; }
.benefit-text { font-size: 15px; color: #94A3B8; line-height: 1.6; }

/* Outcomes */
.outcomes-container { display: flex; flex-direction: column; gap: 18px; max-width: 800px; margin: 0 auto 10px auto; }
.outcome-row {
  background: var(--white); color: var(--text-dark);
  display: flex; align-items: stretch; border-radius: var(--border-radius-md);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform var(--transition-normal);
}
.outcome-row:hover { transform: translateX(6px); }
.outcome-number {
  background: var(--primary-light); color: var(--primary-color);
  font-family: var(--font-heading); font-weight: 800; font-size: 26px;
  width: 70px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border-right: 1px solid var(--primary-border);
}
.outcome-content { padding: 22px 28px; font-size: 16px; font-weight: 500; }
.outcome-content span { color: var(--primary-color); font-weight: 700; }

/* ===== PRICING SECTION ===== */
.pricing-section { padding: 90px 0; background: #F8FAFC; }
.section-subtitle { font-size: 16px; color: var(--text-muted); margin-top: 8px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-grid-two { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; align-items: start; max-width: 820px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border: 1.5px solid #E2E8F0;
  border-radius: var(--border-radius-lg); padding: 32px 28px;
  position: relative; transition: all var(--transition-normal);
  box-shadow: var(--card-shadow);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.pricing-card-featured {
  background: var(--dark-bg); border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(255,119,0,0.2); transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary-color); color: white;
  font-size: 12px; font-weight: 700; padding: 4px 18px; border-radius: 9999px;
  white-space: nowrap;
}
.plan-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary-color); margin-bottom: 8px;
}
.plan-name {
  font-family: var(--font-heading); font-size: 26px; font-weight: 800;
  color: var(--black); margin-bottom: 4px;
}
.pricing-card-featured .plan-name { color: white; }
.plan-segment { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card-featured .plan-segment { color: #94A3B8; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 24px; }
.plan-currency { font-size: 20px; font-weight: 700; color: var(--primary-color); }
.plan-amount { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--primary-color); line-height: 1; }
.plan-duration { font-size: 14px; color: var(--text-muted); margin-left: 4px; }
.pricing-card-featured .plan-duration { color: #94A3B8; }
.plan-price-custom { margin-bottom: 24px; min-height: 48px; display: flex; flex-direction: column; justify-content: center; }
.plan-amount-custom { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--dark-bg); line-height: 1.1; }
.pricing-card-featured .plan-amount-custom { color: var(--primary-color); }
.plan-validity-custom { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
.pricing-card-featured .plan-features li { color: #CBD5E1; }
.plan-check { color: var(--green); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.plan-cross { color: #94A3B8; font-size: 16px; flex-shrink: 0; }
.plan-feature-off { opacity: 0.5; }
.plan-gst-note {
  font-size: 12px; color: var(--text-muted); text-align: center;
  margin-bottom: 20px; font-style: italic;
}
.pricing-card-featured .plan-gst-note { color: #94A3B8; }


/* ===== MENTOR SECTION ===== */
.mentor-section { padding: 80px 0; background: var(--dark-bg-alt); color: var(--text-light); }
.mentor-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.mentor-image-container {
  border-radius: var(--border-radius-lg); overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 4px solid rgba(255,255,255,0.05);
}
.mentor-content h2 { color: var(--white); font-size: 36px; margin-bottom: 24px; }
.mentor-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mentor-item { display: flex; gap: 16px; font-size: 16px; line-height: 1.6; }
.mentor-bullet { color: var(--primary-color); font-size: 20px; line-height: 1; }
.mentor-item b { color: var(--primary-color); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1.5px solid #E2E8F0;
  border-radius: var(--border-radius-lg); padding: 28px 24px;
  transition: all var(--transition-normal); box-shadow: var(--card-shadow);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--primary-border); box-shadow: 0 15px 30px rgba(255,119,0,0.1); }
.testimonial-stars { color: #FBBF24; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; background: var(--primary-color);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--black); }
.testimonial-loc { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; border-top: 1px solid #F1F5F9; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #F8FAFC; border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md); overflow: hidden; transition: all var(--transition-normal);
}
.faq-item:hover { border-color: var(--primary-border); background: var(--white); }
.faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.faq-title { font-weight: 600; font-size: 16px; color: var(--black); display: flex; gap: 8px; }
.faq-title b { color: var(--primary-color); }
.faq-icon-toggle { flex-shrink: 0; transition: transform var(--transition-normal); }
.faq-icon-toggle svg { width: 20px; height: 20px; stroke: var(--text-dark); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 24px; font-size: 15px; color: var(--text-muted); border-top: 1px solid transparent; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active { border-color: var(--primary-border); background: var(--white); box-shadow: 0 4px 12px rgba(255,119,0,0.05); }
.faq-item.active .faq-icon-toggle { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; padding: 18px 24px; border-top-color: #F1F5F9; }

/* ===== FOOTER ===== */
footer { background: #0B132A; color: #94A3B8; padding: 60px 0 40px; font-size: 13px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 30px; margin-bottom: 20px; flex-wrap: wrap; gap: 24px; }
.footer-logo-wrap {}
.footer-logo { font-weight: 800; font-size: 22px; color: white; font-family: var(--font-heading); }
.footer-logo span { color: var(--primary-color); }
.footer-tagline { font-size: 12px; color: #64748B; margin-top: 4px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a:hover { color: white; }
.footer-contact-row { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13px; }
.footer-disclaimer { line-height: 1.8; margin-bottom: 24px; padding: 18px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--border-radius-sm); font-size: 12px; }
.footer-disclaimer b { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: white; border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
  padding: 12px 20px; z-index: 40; align-items: center; justify-content: space-between;
}
.sticky-bar-price .tag { display: flex; align-items: center; gap: 8px; }
.sticky-bar-price b { color: var(--primary-color); font-size: 22px; font-family: var(--font-heading); }
.sticky-bar-price span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.sticky-bar-timer { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-top: 2px; }

/* ===== MOBILE DRAWER ===== */
.mobile-submit-card {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: white; padding: 24px; border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15); border-top: 1px dashed var(--primary-border);
  transform: translateY(100%); transition: transform var(--transition-normal);
}
.mobile-submit-card.open { transform: translateY(0); }
.mobile-submit-overlay { display: none; position: fixed; top:0;bottom:0;left:0;right:0; background: rgba(4,28,51,0.7); z-index: 90; backdrop-filter: blur(4px); }
.mobile-submit-overlay.open { display: block; }
.mobile-submit-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-submit-card-header h3 { font-size: 20px; }
.close-mobile-form { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--text-muted); }

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
  position: fixed; top:0;left:0;right:0;bottom:0;
  background: rgba(4,28,51,0.88); backdrop-filter: blur(8px);
  z-index: 99999; display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition-normal); padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.success-modal {
  background: white; max-width: 460px; width: 100%;
  border-radius: var(--border-radius-lg); padding: 40px 30px; text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: scale(0.9); transition: transform var(--transition-normal);
}
.modal-overlay.open .success-modal { transform: scale(1); }
.success-icon-wrapper { width: 72px; height: 72px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon-wrapper svg { width: 36px; height: 36px; stroke: #16A34A; }
.success-modal h3 { font-size: 26px; margin-bottom: 12px; }
.success-modal p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; line-height: 1.6; }
.success-info-box { background: var(--primary-light); border: 1px solid var(--primary-border); border-radius: var(--border-radius-sm); padding: 14px 18px; margin-bottom: 24px; text-align: left; }
.success-info-box p { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.success-info-box p:last-child { margin-bottom: 0; }

/* ===== POPUP FORM MODAL ===== */
.popup-modal-card {
  background: white;
  max-width: 480px;
  width: 100%;
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .popup-modal-card {
  transform: scale(1);
}
.close-popup-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.close-popup-modal:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}
.popup-modal-header {
  margin-bottom: 20px;
}
.popup-top-badge {
  display: inline-block;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
}
.popup-title {
  font-size: 24px;
  color: var(--black);
  margin-bottom: 6px;
}
.popup-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTION DIVIDER ===== */
.section-divider { width: 60px; height: 4px; background: var(--primary-color); margin: 12px auto 16px; border-radius: 9999px; }

/* ===== KEYFRAMES ===== */
@keyframes pulse-animation { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
@keyframes pulse-glow { 0%,100%{box-shadow:0 0 0 0 rgba(255,119,0,0.3);} 50%{box-shadow:0 0 0 8px rgba(255,119,0,0);} }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes ticker-scroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { display: flex; flex-direction: column; }
  .hero-details { display: contents; }
  .details-grid { order: 1; }
  .register-card { order: 2; position: static; max-width: 560px; margin: 20px auto 30px; width: 100%; box-sizing: border-box; }
  .stats-row { order: 3; width: 100%; }
  .callout-box { order: 4; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-grid-two { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card-featured { transform: scale(1); }
  .mentor-layout { grid-template-columns: 1fr; gap: 40px; }
  .mentor-image-container { max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  body { padding-bottom: 80px; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .hero-section { padding: 40px 0; }
  .details-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .stats-row { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .navy-section { padding: 50px 0; }
  .navy-section h2 { font-size: 26px; margin-bottom: 28px; }
  .mentor-content h2 { font-size: 26px; }
  .hero-layout .register-card { display: block; margin-top: 20px; }
  .mobile-sticky-bar { display: flex; }
  .mobile-submit-card { display: block; }
  .footer-top { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 10px; }
  .footer-contact-row { flex-direction: column; gap: 8px; }
}

/* ===== Form Checkbox & Terms ===== */
.form-checkbox-group {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #CBD5E1;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  margin-top: 2px;
  transition: all 0.2s ease;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #000000;
  border-color: #000000;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.checkbox-text {
  flex: 1;
}

.terms-link {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.terms-link:hover {
  color: var(--primary-light);
}

/* ===== FOOTER CONTACT CARDS ===== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-fast);
}
.contact-card:hover {
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: white;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
}
.contact-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  word-break: break-all;
}
.contact-card-value[href] {
  text-decoration: underline;
}
