/* ==========================================================================
   NIAT Offline AI Workshop — Official NIAT AI Bootcamp Design System
   Brand Harmony: Warm Alabaster (#FEF8F0), Soft Blush Porcelain (#FBF2F3),
   Sunlit Cream (#FFF8EB / #FFF1C6), Crisp White (#FFFFFF), Deep Slate (#0F172A),
   and Vibrant NIAT Amber Gold (#FFB218) & Crimson Accents (#991B1B).
   (Zero Maroon Backgrounds, Zero Black)
   ========================================================================== */

:root {
  /* Official NIAT Brand Accent Tokens */
  --color-primary: #991B1B;
  --color-primary-dark: #7F1D1D;
  --color-primary-deep: #580F1E;
  --color-primary-light: #DC2626;
  --color-primary-soft: #FBF2F3;
  --color-primary-tint: #FEE2E2;
  --color-primary-glow: rgba(153, 27, 27, 0.25);
  
  /* NIAT Amber & Gold Tokens */
  --color-gold: #FFB218;
  --color-gold-light: #FFF1C6;
  --color-gold-dark: #D97706;
  --color-gold-gradient: linear-gradient(90deg, #FFB218 0%, #F59E0B 50%, #D97706 100%);
  
  /* Clean Light Backgrounds from https://www.niatindia.com/ai-bootcamp */
  --color-bg-hero: linear-gradient(180deg, #FFFFFF 0%, #FFF8EB 45%, #FBF2F3 100%);
  --color-bg-dark: #F1F5F9;
  --color-bg-dark-card: #FFFFFF;
  --color-bg-dark-surface: #F8FAFC;
  
  --color-bg-light: #FEF8F0;
  --color-bg-light-alt: #FBF2F3;
  --color-bg-cream: #FFF8EB;
  --color-bg-surface: #FFFFFF;
  
  /* Typography Colors (NIAT Slate Tokens) */
  --color-text-dark: #0F172A;
  --color-text-dark-muted: #475569;
  --color-text-light: #0F172A;
  --color-text-light-muted: #64748B;
  
  /* Borders */
  --color-border-subtle: #E2E8F0;
  --color-border-dark: rgba(15, 23, 42, 0.1);
  --color-border-gold: rgba(255, 178, 24, 0.45);
  --color-border-primary: rgba(153, 27, 27, 0.18);
  
  /* Typography Families */
  --font-hero-condensed: 'Anton', 'Bebas Neue', 'Oswald', sans-serif;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Caveat', cursive;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Radii & Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --max-width: 1260px;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-dark: 0 25px 60px rgba(15, 23, 42, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 3.85rem;
  padding-bottom: 3.85rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.35rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1.05rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
}

.section-tag.dark {
  background: #FFF8EB;
  color: #D97706;
  border-color: rgba(255, 178, 24, 0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0.95rem;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.section-title.text-white {
  color: var(--color-text-dark);
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.section-subtitle.dark {
  color: var(--color-text-dark-muted);
}

.gradient-text-maroon {
  color: var(--color-primary);
}

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

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="slide-right"] { transform: translateX(-30px); }
[data-animate="slide-right"].is-visible { transform: translateX(0); opacity: 1; }

[data-animate="slide-left"] { transform: translateX(30px); }
[data-animate="slide-left"].is-visible { transform: translateX(0); opacity: 1; }

[data-animate="scale-up"] { transform: scale(0.94); }
[data-animate="scale-up"].is-visible { transform: scale(1); opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-hero-gold {
  background: linear-gradient(135deg, #FFB218 0%, #F59E0B 50%, #D97706 100%);
  color: #0F172A !important;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 178, 24, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: ctaZoomPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.btn-hero-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 178, 24, 0.5);
  animation-play-state: paused;
}

.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(153, 27, 27, 0.25);
  border: 1px solid var(--color-primary);
  animation: ctaZoomPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(153, 27, 27, 0.35);
  animation-play-state: paused;
}

@keyframes ctaZoomPulse {
  0% {
    transform: scale(1.00);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1.00);
  }
}

/* ==========================================================================
   STICKY HEADER & ANNOUNCEMENT BAR
   ========================================================================== */
.sticky-header-group {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.top-bar {
  background: #FFF8EB;
  color: #991B1B;
  font-size: 0.8125rem;
  padding: 0.45rem 1rem;
  text-align: center;
  border-bottom: 1px solid #FEE2E2;
}

.top-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
  animation: announcementPulse 1.5s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes announcementPulse {
  0% {
    transform: scale(1.00);
  }
  50% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1.00);
  }
}

.badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E2E8F0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.niat-shield-logo-img,
.niat-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo-wrapper:hover .niat-shield-logo-img,
.logo-wrapper:hover .niat-logo-img {
  transform: scale(1.03);
}

.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-link-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  transition: var(--transition-fast);
  padding: 0.35rem 0.15rem;
}

.nav-link-item:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0F172A;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .header-nav-menu {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    opacity: 0;
    visibility: hidden;
  }

  .header-nav-menu.mobile-open,
  .header-nav-menu.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  .nav-container {
    height: 56px;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .niat-shield-logo-img,
  .niat-logo-img {
    height: 34px;
    max-width: 170px;
  }
  .nav-actions .open-reg-modal {
    display: none;
  }
}

/* ==========================================================================
   SECTION 1 — HERO (UNIFIED 1750 × 900 COMPOSITION WITH ORGANIC MAROON INTEGRATION)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: auto;
  background-color: #FAF8F5;
  background-image: 
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.95) 0%, transparent 60%),
    radial-gradient(circle at 88% 45%, rgba(244, 63, 94, 0.06) 0%, transparent 60%),
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #E2E8F0;
}

@media (min-width: 1200px) {
  .hero-section {
    height: auto;
    min-height: auto;
    max-height: none;
  }
}

.hero-canvas-container {
  width: 100%;
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: flex-start;
  z-index: 2;
}

@media (max-width: 1200px) {
  .hero-canvas-container {
    padding: 0.75rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-canvas-container {
    padding: 0.5rem 1rem 1.5rem;
  }
}

.hero-grid-split {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 2.25rem;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 0.35rem;
}

@media (max-width: 1100px) {
  .hero-grid-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0.25rem;
  }
}

/* LEFT SIDE (44%) */
.hero-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  width: 100%;
  z-index: 3;
  padding-top: 0.25rem;
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-brand-col {
    order: 1;
    max-width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-brand-col {
    gap: 0.95rem;
  }
}

.hero-main-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 3.6rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0B1730;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-main-heading {
    font-size: clamp(1.42rem, 5.6vw, 2.15rem);
    line-height: 1.16;
  }
  .hero-line-nowrap {
    white-space: normal;
  }
}

.hero-line-nowrap {
  white-space: nowrap;
  display: inline-block;
}

.hero-highlight-smarter {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #9F1239 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}

/* Hero Audience Line: FOR CLASS 12 STUDENTS (Static Maroon Bold Display) */
.hero-class12-wrap {
  display: flex;
  align-items: center;
  margin: 0.25rem 0 0.45rem 0;
  max-width: 100%;
}

.hero-meta-for-class {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #991B1B;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 0.2rem;
  border-bottom: 3px solid rgba(153, 27, 27, 0.35);
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .hero-meta-for-class {
    font-size: clamp(1.45rem, 3.6vw, 2.25rem);
    border-bottom-width: 2.5px;
  }
}

@media (max-width: 768px) {
  .hero-class12-wrap {
    margin: 0.2rem 0 0.35rem 0;
  }
  .hero-meta-for-class {
    font-size: clamp(1.25rem, 5.5vw, 1.85rem);
    border-bottom-width: 2px;
  }
}

@media (max-width: 360px) {
  .hero-meta-for-class {
    font-size: 1.18rem;
  }
}

/* CTA Area */
.cta-whatsapp-supporting,
.whatsapp-cta-supporting {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
  margin: 0 auto 0.45rem auto;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-sizing: border-box;
}

.hero-cta-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 0.15rem;
}

.hero-cta-supporting {
  text-align: left;
  margin: 0 0 0.45rem 0;
}

@media (max-width: 768px) {
  .hero-cta-action-wrap {
    align-items: center;
    width: 100%;
  }
  .hero-cta-supporting {
    text-align: center;
    margin: 0 auto 0.4rem auto;
  }
}

.btn-hero-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 430px;
  height: clamp(54px, 5.5vw, 68px);
  background: #FFB51B;
  color: #0B1730;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  font-weight: 800;
  border-radius: clamp(28px, 3vw, 36px);
  border: 2px solid #FDE047;
  box-shadow: 0 12px 30px rgba(255, 181, 27, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  animation: ctaZoomPulse 1.3s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 768px) {
  .btn-hero-cta-yellow {
    max-width: 360px;
    height: 54px;
    font-size: 1.02rem;
    padding: 0.75rem 1.25rem;
  }
}

.btn-hero-cta-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(255, 181, 27, 0.5);
  background: #F59E0B;
  animation-play-state: paused;
}

.hero-arrow-icon {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.btn-hero-cta-yellow:hover .hero-arrow-icon {
  transform: translateX(5px);
}

/* Two Compact Information Rows Below CTA with Circular Icon Badges */
.hero-event-specs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.spec-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  border: 1px solid #BFDBFE;
}

.spec-icon-badge.maroon {
  background: #FFF1F2;
  border-color: #FECDD3;
}

.spec-icon-badge.purple {
  background: #F5F3FF;
  border-color: #DDD6FE;
}

.spec-icon-badge.red {
  background: #FEF2F2;
  border-color: #FECACA;
}

.spec-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 850;
  color: #0B1730;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.spec-sep {
  color: #CBD5E1;
  font-weight: 300;
  font-size: 0.85rem;
}

/* ==========================================================================
   RIGHT SIDE: BALANCED STUDENT PHOTOGRAPHY WITH ORGANIC MAROON INTEGRATION
   ========================================================================== */
.hero-workshop-scene-col {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.hero-stage-immersive {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 485px;
  max-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .hero-stage-immersive {
    height: auto;
    min-height: 0;
    max-height: none;
    width: 100%;
    max-width: 600px;
    justify-content: center;
    margin: 0 auto;
  }
}

/* Light Maroon Organic Gradient Blob */
.hero-maroon-blob {
  position: absolute;
  top: 2%;
  right: 2%;
  width: 96%;
  height: 96%;
  border-radius: 42% 58% 68% 32% / 48% 38% 62% 52%;
  background: radial-gradient(circle at 60% 40%, rgba(159, 18, 57, 0.13) 0%, rgba(136, 19, 55, 0.07) 45%, rgba(244, 63, 94, 0.03) 75%, transparent 100%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
  animation: maroonBlobFloat 12s ease-in-out infinite alternate;
}

@keyframes maroonBlobFloat {
  0% {
    transform: scale(0.97) rotate(0deg);
    border-radius: 42% 58% 68% 32% / 48% 38% 62% 52%;
  }
  100% {
    transform: scale(1.02) rotate(4deg);
    border-radius: 54% 46% 38% 62% / 36% 58% 42% 64%;
  }
}

/* Soft Blush & Burgundy Ambient Glow */
.hero-blush-glow {
  position: absolute;
  top: 10%;
  right: 12%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.11) 0%, rgba(251, 113, 133, 0.05) 50%, transparent 80%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

/* Decorative Maroon Dots Pattern */
.hero-maroon-dots {
  position: absolute;
  left: -12px;
  top: 10%;
  width: 55px;
  height: 95px;
  background-image: radial-gradient(#9F1239 1.6px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

/* Thin Curved Maroon Line Accents */
.hero-curved-accents {
  position: absolute;
  left: -18px;
  top: 6%;
  width: 200px;
  height: 140px;
  pointer-events: none;
  z-index: 2;
}

/* Authentic Indian Class 12 Student Photography with Soft Organic Left Edge */
.hero-student-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 100%;
  max-height: 485px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-maroon-student-img {
  width: 100%;
  height: 100%;
  max-height: 485px;
  object-fit: cover;
  object-position: 68% 28%;
  display: block;
  border: none;
  box-shadow: none;
  /* Organic soft feathered transition on the left edge */
  -webkit-mask-image: radial-gradient(ellipse 96% 92% at 86% 50%, rgba(0, 0, 0, 1) 48%, rgba(0, 0, 0, 0.9) 68%, rgba(0, 0, 0, 0) 98%), linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 1) 24%);
  mask-image: radial-gradient(ellipse 96% 92% at 86% 50%, rgba(0, 0, 0, 1) 48%, rgba(0, 0, 0, 0.9) 68%, rgba(0, 0, 0, 0) 98%), linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 1) 24%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  transition: transform 0.4s ease;
}

.hero-stage-immersive:hover .hero-maroon-student-img {
  transform: scale(1.012);
}

@media (max-width: 1100px) {
  .hero-workshop-scene-col {
    order: 2;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .hero-student-photo-wrapper {
    height: auto;
    max-height: none;
    max-width: 100%;
    justify-content: center;
  }
  .hero-maroon-student-img {
    height: auto;
    max-height: 320px;
    width: 100%;
    border-radius: 18px;
    object-position: 50% 25%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-maroon-blob,
  .hero-blush-glow,
  .hero-maroon-dots,
  .hero-curved-accents {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-maroon-student-img {
    max-height: 250px;
    border-radius: 14px;
  }
}

@media (max-width: 1080px) {
  .hero-epic-stage {
    max-width: 600px;
  }
  .stage-card-notes { left: 0; top: 0; }
  .stage-card-project { right: 0; top: 0; }
  .stage-card-doubt { left: 0; bottom: 10px; }
  .stage-flow-badge { right: 0; bottom: 10px; }
}

@media (max-width: 680px) {
  .hero-epic-stage {
    min-height: auto;
    flex-direction: column;
    padding-top: 1rem;
  }
  .stage-float-card,
  .stage-flow-badge {
    position: static;
    margin: 0.35rem auto;
    width: 100%;
    max-width: 300px;
    animation: none;
  }
}

/* BOTTOM HORIZONTAL EVENT INFO STRIP */
.hero-bottom-info-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-spec-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-spec-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 850;
  color: #0F172A;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-spec-sep {
  color: #CBD5E1;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .hero-bottom-info-strip {
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 680px) {
  .hero-bottom-info-strip {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-xl);
    gap: 0.65rem;
  }
  .hero-spec-sep {
    display: none;
  }
  .hero-dotted-matrix {
    display: none;
  }
}

.hero-badge-top-left {
  top: -12px;
  left: -14px;
}

.hero-badge-bottom-right {
  bottom: 24px;
  right: -14px;
}

/* ==========================================================================
   MOBILE HERO BADGE OVERRIDES
   ========================================================================== */

@media (max-width: 600px) {
  .hero-badge-top-left,
  .hero-badge-bottom-right {
    position: static;
    margin-bottom: 0.75rem;
  }
}

.hero-badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF8EB;
  border: 1px solid #FFB218;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-title {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.hero-badge-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #166534;
  margin-top: 0.15rem;
}

.hero-badge-sub.maroon {
  color: #991B1B;
}

.hero-student-location-strip {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* ==========================================================================
   INFINITE MARQUEE TICKER LOOP
   ========================================================================== */
.marquee-ticker-section {
  background: #FFF8EB;
  color: #1E293B;
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid #FEE2E2;
  border-bottom: 1px solid #FEE2E2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
  gap: 2rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1E293B;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  color: #D97706;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION 2 — WHY ATTEND (WARM ALABASTER CREAM SURFACE #FEF8F0)
   ========================================================================== */
.why-attend-section {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-bottom: 2.75rem;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }
}

.why-card {
  background: var(--color-bg-surface);
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #FFB218;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

@media (max-width: 600px) {
  .why-card {
    border-radius: var(--radius-lg);
  }
}

.why-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
}

@media (max-width: 1024px) {
  .why-card-img-wrap {
    height: 170px;
  }
}

@media (max-width: 600px) {
  .why-card-img-wrap {
    height: 115px;
  }
}

.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-card:hover .why-card-img {
  transform: scale(1.05);
}

.why-card-caption {
  padding: 1.15rem 1rem 1.25rem 1rem;
  background: #FFFFFF;
  text-align: center;
  border-top: 1.5px solid #F1F5F9;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .why-card-caption {
    padding: 0.65rem 0.5rem;
  }
}

.why-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .why-card-title {
    font-size: 0.84rem;
    line-height: 1.25;
  }
}

.why-highlight-banner {
  background: linear-gradient(135deg, #FFF8EB 0%, #FFF1C6 100%);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 800px) {
  .why-highlight-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }
  .why-highlight-banner .btn {
    width: 100%;
    max-width: 320px;
  }
}
    text-align: center;
    padding: 1.85rem 1.35rem;
  }
}

.why-banner-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  color: #0F172A;
}

.why-banner-text span {
  color: #991B1B;
}

/* ==========================================================================
   SECTION 3 — OPEN 3D LANDSCAPE WINDING ROADMAP (NO RECTANGULAR CARDS)
   ========================================================================== */
.learn-section {
  background-color: #FFFFFF;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px;
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.landscape-roadmap-canvas {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Winding Highway SVG Backdrop */
.landscape-highway-svg {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  pointer-events: none;
  z-index: 1;
}

/* START & FINISH Terminal Gates */
.landscape-gate-row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 3.5rem 0;
}

.landscape-gate-row.finish-gate {
  margin: 3.5rem 0 1.5rem 0;
}

.landscape-gate-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  border: 2px solid;
  text-align: center;
  transition: transform 0.3s ease;
}

.landscape-gate-pill:hover {
  transform: translateY(-3px) scale(1.02);
}

.landscape-gate-pill.start {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: #FFFFFF;
  border-color: #93C5FD;
}

.landscape-gate-pill.finish {
  background: linear-gradient(135deg, #FFB218 0%, #D97706 100%);
  color: #0F172A;
  border-color: #FDE047;
  box-shadow: 0 14px 35px rgba(217, 119, 6, 0.28);
}

.gate-sub-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}

.gate-main-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* Individual Open Milestone Station Zone (NO RECTANGULAR CARD BOXES) */
.landscape-station-zone {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin: 5.5rem 0;
  width: 100%;
}

/* Odd rows: Node is on the Left side of the canvas */
.landscape-station-zone.left-zone {
  justify-content: flex-start;
}

/* Even rows: Node is on the Right side of the canvas */
.landscape-station-zone.right-zone {
  justify-content: flex-end;
}

/* Station Unit: Photo + Clean Typography (No Card Background) */
.station-unit {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  max-width: 460px;
  position: relative;
  transition: transform 0.35s ease;
}

.landscape-station-zone.left-zone .station-unit {
  flex-direction: row;
}

.landscape-station-zone.right-zone .station-unit {
  flex-direction: row-reverse;
  text-align: right;
}

.station-unit:hover {
  transform: translateY(-4px);
}

/* 3D Realistic Circular Photo Node */
.station-photo-circle-wrap {
  position: relative;
  width: 115px;
  height: 115px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 5px;
  background: #FFFFFF;
  border: 3.5px solid;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16), 0 0 25px rgba(37, 99, 235, 0.18);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.station-unit:hover .station-photo-circle-wrap {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.26);
}

.station-photo-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.station-step-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

/* Station Typography in clean white rounded box */
.station-info-box {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: 1.15rem 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 260px;
}

.landscape-station-zone.right-zone .station-info-box {
  text-align: right;
  align-items: flex-end;
}

.station-unit:hover .station-info-box {
  border-color: #93C5FD;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.station-tag-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.station-headline-text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 850;
  color: #0F172A;
  margin: 0;
  line-height: 1.35;
}

/* Color Themes for each Milestone */
.theme-1 .station-photo-circle-wrap { border-color: #2563EB; }
.theme-1 .station-step-badge { border-color: #2563EB; color: #1E40AF; background: #EFF6FF; }
.theme-1 .station-tag-label { color: #2563EB; }

.theme-2 .station-photo-circle-wrap { border-color: #10B981; }
.theme-2 .station-step-badge { border-color: #10B981; color: #065F46; background: #ECFDF5; }
.theme-2 .station-tag-label { color: #10B981; }

.theme-3 .station-photo-circle-wrap { border-color: #F59E0B; }
.theme-3 .station-step-badge { border-color: #F59E0B; color: #92400E; background: #FFFBEB; }
.theme-3 .station-tag-label { color: #D97706; }

.theme-4 .station-photo-circle-wrap { border-color: #8B5CF6; }
.theme-4 .station-step-badge { border-color: #8B5CF6; color: #5B21B6; background: #F5F3FF; }
.theme-4 .station-tag-label { color: #8B5CF6; }

.theme-5 .station-photo-circle-wrap { border-color: #EC4899; }
.theme-5 .station-step-badge { border-color: #EC4899; color: #9D174D; background: #FDF2F8; }
.theme-5 .station-tag-label { color: #EC4899; }

.theme-6 .station-photo-circle-wrap { border-color: #06B6D4; }
.theme-6 .station-step-badge { border-color: #06B6D4; color: #155E75; background: #ECFEFF; }
.theme-6 .station-tag-label { color: #0891B2; }

.theme-7 .station-photo-circle-wrap { border-color: #EAB308; }
.theme-7 .station-step-badge { border-color: #EAB308; color: #854D0E; background: #FEFCE8; }
.theme-7 .station-tag-label { color: #854D0E; }

.theme-8 .station-photo-circle-wrap { border-color: #16A34A; }
.theme-8 .station-step-badge { border-color: #16A34A; color: #15803D; background: #F0FDF4; }
.theme-8 .station-tag-label { color: #15803D; }

@media (max-width: 820px) {
  .landscape-station-zone,
  .landscape-station-zone.left-zone,
  .landscape-station-zone.right-zone {
    justify-content: flex-start;
    margin: 2.25rem 0;
    position: relative;
    z-index: 2;
  }

  .station-unit,
  .landscape-station-zone.right-zone .station-unit {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    gap: 1.15rem;
  }

  .landscape-station-zone.right-zone .station-info-box {
    text-align: left;
    align-items: flex-start;
  }

  .station-photo-circle-wrap {
    width: 80px;
    height: 80px;
    z-index: 3;
  }

  .station-headline-text {
    font-size: 1.05rem;
  }

  .landscape-highway-svg {
    display: block !important;
    opacity: 0.9 !important;
    visibility: visible !important;
  }
}

@media (max-width: 600px) {
  .learn-section {
    padding-top: 2.85rem;
    padding-bottom: 3.25rem;
  }
  .landscape-highway-svg {
    display: block !important;
    opacity: 0.85 !important;
    visibility: visible !important;
    left: 0;
    width: 100%;
    top: 20px;
    bottom: 20px;
    height: calc(100% - 40px);
  }
  .landscape-roadmap-canvas {
    padding: 0.5rem 0;
  }
  .landscape-station-zone {
    margin: 1.45rem 0;
    position: relative;
    z-index: 2;
  }
  .station-unit {
    gap: 0.85rem;
    width: 100%;
  }
  .station-photo-circle-wrap {
    width: 66px;
    height: 66px;
    border-width: 2.5px;
    z-index: 3;
    background: #FFFFFF;
  }
  .station-step-badge {
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
    bottom: -2px;
    right: -2px;
  }
  .station-info-box {
    padding: 0.75rem 0.95rem;
    min-width: 0;
    flex: 1;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    position: relative;
    z-index: 3;
  }
  .station-tag-label {
    font-size: 0.7rem;
  }
  .station-headline-text {
    font-size: 0.94rem;
    line-height: 1.3;
  }
  .landscape-gate-row {
    margin: 0.75rem 0 1.75rem 0;
    position: relative;
    z-index: 4;
  }
  .landscape-gate-row.finish-gate {
    margin: 1.75rem 0 0.75rem 0;
  }
  .landscape-gate-pill {
    padding: 0.6rem 1.25rem;
  }
  .gate-main-title {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   SECTION 4 — CREDIBILITY / TOP IITIANS (CLEAN SLATE & IVORY CARDS)
   ========================================================================== */
.credibility-section {
  background: #F1F5F9;
  color: #0F172A;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }
}

.cred-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cred-card:hover {
  border-color: #FFB218;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}

@media (max-width: 600px) {
  .cred-card {
    border-radius: var(--radius-lg);
  }
}

.cred-card-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
}

@media (max-width: 1024px) {
  .cred-card-img-wrap {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .cred-card-img-wrap {
    height: 115px;
  }
}

.cred-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cred-card:hover .cred-card-img {
  transform: scale(1.05);
}

.cred-card-caption {
  padding: 1.15rem 1.15rem 1.3rem 1.15rem;
  background: #FFFFFF;
  text-align: center;
  border-top: 1.5px solid #F1F5F9;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .cred-card-caption {
    padding: 0.65rem 0.5rem;
  }
}

.cred-card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #D97706;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

@media (max-width: 600px) {
  .cred-card-num {
    font-size: 0.65rem;
    margin-bottom: 0.15rem;
  }
}

.cred-card-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .cred-card-title {
    font-size: 0.84rem;
    line-height: 1.25;
  }
}

.mentor-spotlight {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8EB 100%);
  border: 1.5px solid #FFB218;
  border-radius: var(--radius-xl);
  padding: 1.85rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .mentor-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
}

.mentor-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.mentor-desc {
  font-size: 0.92rem;
  color: #475569;
}

.mentor-badges {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .mentor-badges {
    justify-content: center;
  }
}

.iit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.15rem;
  background: #FFF8EB;
  border: 1px solid #FFB218;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  color: #991B1B;
}

/* ==========================================================================
   SECTION 5 — TAKEAWAYS (WARM ALABASTER CREAM SURFACE)
   ========================================================================== */
.takeaways-section {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-subtle);
}

.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

@media (max-width: 1024px) {
  .takeaways-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .takeaways-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
}

.takeaway-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.takeaway-card:hover {
  border-color: #FFB218;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}

@media (max-width: 600px) {
  .takeaway-card {
    border-radius: var(--radius-lg);
  }
}

.takeaway-card-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
}

@media (max-width: 1024px) {
  .takeaway-card-img-wrap {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .takeaway-card-img-wrap {
    height: 115px;
  }
}

.takeaway-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.takeaway-card:hover .takeaway-card-img {
  transform: scale(1.05);
}

.takeaway-card-caption {
  padding: 1.15rem 1.15rem 1.3rem 1.15rem;
  background: #FFFFFF;
  text-align: center;
  border-top: 1.5px solid #F1F5F9;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .takeaway-card-caption {
    padding: 0.65rem 0.5rem;
  }
}

.takeaway-card-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #991B1B;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

@media (max-width: 600px) {
  .takeaway-card-tag {
    font-size: 0.65rem;
    margin-bottom: 0.15rem;
  }
}

.takeaway-heading {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .takeaway-heading {
    font-size: 0.84rem;
    line-height: 1.25;
  }
}

/* KEY TAKEAWAYS — HIGHLIGHTED OPPORTUNITY BOX */
.takeaways-opportunity-box {
  margin-top: 2rem;
  padding: 1.35rem 2.25rem;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1.5px solid #FCD34D;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.takeaways-opp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 850;
  color: #B45309;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.takeaways-opp-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 800;
  color: #1E293B;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 480px) {
  .takeaways-opportunity-box {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    gap: 0.35rem;
  }
  .takeaways-opp-badge {
    font-size: 0.64rem;
  }
  .takeaways-opp-text {
    font-size: 0.92rem;
    line-height: 1.38;
  }
}

/* ==========================================================================
   SECTION 6 — PHYSICAL CERTIFICATE SHOWCASE (WARM BUTTER & GOLD AMBIENT)
   ========================================================================== */
.certificate-section {
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-gold-light) 100%);
  border-bottom: 1px solid var(--color-border-subtle);
}

.cert-showcase-container,
.cert-showcase-card {
  background: #FFFFFF;
  border: 2px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), 0 0 45px rgba(255, 178, 24, 0.25);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .cert-showcase-container,
  .cert-showcase-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.85rem;
  }
}

.cert-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid var(--color-primary-tint);
}

.cert-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cert-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cert-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.cert-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.cert-check {
  color: #16A34A;
  font-weight: 800;
}

.cert-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.cert-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.cert-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1.5px solid #A7F3D0;
  margin-top: 0.1rem;
}

.cert-image-frame {
  position: relative;
  background: #FAF8F5;
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.cert-image-frame:hover {
  transform: translateY(-3px) scale(1.01);
}

.cert-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px);
  display: block;
}

/* ==========================================================================
   SECTION 7 — WORKSHOP DETAILS PANEL (CLEAN BLUSH & GOLD CONTAINER)
   ========================================================================== */
.details-section {
  background: #FBF2F3;
  color: #0F172A;
}

.details-panel-container {
  background: #FFFFFF;
  border: 2px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 3.25rem 2.75rem;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .details-panel-container {
    padding: 1.85rem 1.25rem;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .details-panel-container {
    padding: 1.35rem 0.85rem;
  }
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}

.detail-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}

.detail-card:hover {
  border-color: var(--color-gold);
}

.detail-card-clickable {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  border-color: rgba(255, 178, 24, 0.5);
  background: #FFFDF9;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.detail-card-clickable:hover {
  transform: translateY(-4px);
  border-color: #FFB218;
  box-shadow: 0 12px 28px rgba(255, 178, 24, 0.2);
  background: #FFFFFF;
}

.detail-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.detail-card-header-row .detail-card-label {
  margin-bottom: 0;
}

.venue-action-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.55rem;
  background: #FFF8EB;
  border: 1px solid rgba(255, 178, 24, 0.75);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: #B45309;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  width: fit-content;
  white-space: nowrap;
}

.detail-card-clickable:hover .venue-action-badge {
  background: #FFB218;
  color: #0F172A;
  border-color: #F59E0B;
  box-shadow: 0 2px 8px rgba(255, 178, 24, 0.35);
}

.venue-action-arrow {
  display: inline-block;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.detail-card-clickable:hover .venue-action-arrow {
  transform: translateX(3px);
}

.detail-card-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #D97706;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.detail-card-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 450;
  color: #334155;
  line-height: 1.35;
}

.detail-card-sub {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 0.2rem;
  line-height: 1.35;
}

.venue-map-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
  display: inline;
}

.venue-map-link:hover {
  text-decoration: underline;
  color: #D97706;
}

.fee-strike {
  text-decoration: line-through;
  color: #94A3B8;
  font-size: 0.88rem;
  font-weight: 400;
  margin-right: 0.35rem;
}

.free-pill {
  display: inline-block;
  background: #22C55E;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-sm);
}

.details-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR DETAILS CARDS
   ========================================================================== */
@media (max-width: 860px) {
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.6rem;
  }
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
  }
  .detail-card {
    padding: 0.45rem 0.55rem;
    min-height: 52px;
    height: 100%;
    border-radius: var(--radius-md);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.12rem;
  }
  .detail-card-label {
    font-size: 0.58rem;
    margin-bottom: 0;
    line-height: 1.1;
  }
  .detail-card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.2rem;
    margin-bottom: 0;
  }
  .detail-card-value {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 450;
    color: #334155;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .venue-action-badge {
    font-size: 0.52rem;
    padding: 0.05rem 0.28rem;
  }
  .free-pill {
    font-size: 0.62rem;
    padding: 0.05rem 0.28rem;
    font-weight: 600;
  }
  .fee-strike {
    font-size: 0.78rem;
    font-weight: 400;
    margin-right: 0.2rem;
  }
}

@media (max-width: 360px) {
  .details-grid {
    gap: 0.35rem;
  }
  .detail-card {
    padding: 0.38rem 0.45rem;
    min-height: 48px;
    gap: 0.1rem;
  }
  .detail-card-label {
    font-size: 0.52rem;
  }
  .detail-card-value {
    font-size: 0.76rem;
    font-weight: 450;
    color: #334155;
  }
  .venue-action-badge {
    font-size: 0.46rem;
    padding: 0.04rem 0.2rem;
  }
  .free-pill {
    font-size: 0.55rem;
    padding: 0.04rem 0.22rem;
  }
  .fee-strike {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .details-footer-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 1.25rem;
  }
  .seats-warning {
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
  }
  .details-footer-bar .btn {
    width: 100%;
    max-width: 360px;
  }
}

.seats-warning {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #991B1B;
  font-weight: 700;
}

/* ==========================================================================
   STUDENT TESTIMONIALS — CONTINUOUS HORIZONTAL MARQUEE CAROUSEL
   ========================================================================== */
.testimonials-section {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-subtle);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.testimonials-marquee-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.25rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
  will-change: transform;
}

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

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

.testimonial-card {
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #FCD34D;
  box-shadow: 0 14px 32px rgba(180, 83, 9, 0.1);
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px dashed #E2E8F0;
  padding-top: 0.75rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #991B1B 0%, #7F1D1D 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.author-tag {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: #64748B;
  font-weight: 700;
  margin-top: 0.1rem;
}

@media (max-width: 480px) {
  .testimonials-marquee-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    padding: 0.65rem 0;
  }
  .testimonials-track {
    gap: 0.85rem;
    animation-duration: 34s;
  }
  .testimonial-card {
    width: 270px;
    min-width: 270px;
    max-width: 270px;
    padding: 1.05rem 0.95rem;
    border-radius: 14px;
    gap: 0.75rem;
  }
  .testimonial-rating {
    font-size: 0.8rem;
  }
  .testimonial-quote {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .author-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
  .author-name {
    font-size: 0.8rem;
  }
  .author-tag {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-wrapper {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .testimonials-track {
    animation: none;
  }
}

/* ==========================================================================
   SECTION 10 — FAQS (SOFT BLUSH SURFACE #FBF2F3)
   ========================================================================== */
.faq-section {
  background: var(--color-bg-light-alt);
  border-bottom: 1px solid var(--color-border-subtle);
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.faq-item {
  background: var(--color-bg-surface);
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.4rem;
}

.faq-item.active .faq-answer-panel {
  padding-bottom: 1.25rem;
}

.faq-answer-content {
  font-size: 0.92rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 0.75rem;
}

/* ==========================================================================
   SECTION 10 — READY TO EXPERIENCE AI FOR YOURSELF (PREMIUM EDUTECH SHOWCASE)
   ========================================================================== */
.final-cta-section {
  background-color: #FFFFFF;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(254, 240, 138, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(99, 102, 241, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.05) 0%, transparent 45%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 32px 32px, 32px 32px;
  color: #0F172A;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  border-top: 1px solid #E2E8F0;
}

/* ==========================================================================
   SECTION 10 — FINAL CTA (CLEAN HIGH-IMPACT TEXT CARD WITHOUT IMAGE)
   SECTION 11 — STANDALONE CLOSING CTA (1750 × 900 COMPOSITION)
   ========================================================================== */
.experience-cta-section {
  position: relative;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: #FDFBF7;
  background-image: 
    radial-gradient(circle at 50% 20%, #FFFFFF 0%, #FAF6EE 55%, #F4ECE1 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.experience-cta-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TOP HEADLINE (Large, Bold & High-Impact Display Typography) */
.exp-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.85rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0F172A;
  margin: 0 0 20px 0;
  white-space: normal;
}

@media (min-width: 1200px) {
  .exp-main-title {
    font-size: 3.85rem;
    white-space: nowrap;
  }
}

/* SECOND LINE: RED ACCENT STATEMENT (24px - 28px) */
.exp-red-statement {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 650;
  color: #DC2626;
  line-height: 1.35;
  margin: 0 0 18px 0;
}

/* DESCRIPTION (20px - 23px, Max Width ~850px) */
.exp-desc-text {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: #334155;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 65px auto;
  font-weight: 500;
}

/* MAIN IMAGE STAGE (~1600px Max, ~500px Height, Rounded Top 28px) */
.exp-image-stage-wrap {
  position: relative;
  width: 100%;
  max-width: 1360px;
  border-radius: 28px 28px 20px 20px;
  box-shadow: 
    0 25px 55px -10px rgba(15, 23, 42, 0.15),
    0 0 45px rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.exp-stage-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 28px 28px 20px 20px;
  display: block;
}

/* CTA BUTTON OVERLAPPING LOWER-MIDDLE OF IMAGE (460px x 70px, R: 35px) */
.exp-cta-overlay-wrap {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.btn-exp-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 460px;
  height: 68px;
  background: linear-gradient(135deg, #FFB218 0%, #F59E0B 100%);
  color: #0F172A;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 850;
  border-radius: 35px;
  border: 2px solid #FDE047;
  box-shadow: 
    0 12px 30px rgba(245, 158, 11, 0.45),
    0 4px 10px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.01em;
}

.btn-exp-cta-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.55);
}

/* BOTTOM INFORMATION PILL BAR (950px - 1050px x 58px, R: 30px) */
.exp-info-pill-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 1020px;
  min-height: 58px;
  padding: 0.75rem 2rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 800;
  color: #334155;
  margin-top: 45px;
  flex-wrap: wrap;
}

.exp-info-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.exp-info-pill-sep {
  color: #CBD5E1;
}

.exp-info-pill-green {
  color: #16A34A;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .exp-stage-img {
    height: 380px;
  }
  .exp-desc-text {
    margin-bottom: 45px;
  }
}

@media (max-width: 768px) {
  .experience-cta-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .exp-main-title {
    font-size: clamp(1.45rem, 5.2vw, 2.2rem);
    line-height: 1.16;
    margin-bottom: 12px;
  }
  .exp-red-statement {
    font-size: clamp(0.92rem, 3.2vw, 1.25rem);
    margin-bottom: 10px;
  }
  .exp-desc-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 0.5rem;
  }
  .exp-stage-img {
    height: 240px;
    border-radius: 18px;
  }
  .exp-cta-overlay-wrap {
    position: static;
    transform: none;
    margin-top: 1rem;
    max-width: 100%;
  }
  .btn-exp-cta-gold {
    max-width: 340px;
    width: 100%;
    height: 54px;
    font-size: 0.98rem;
    padding: 0.75rem 1.25rem;
  }
  .exp-info-pill-bar {
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-lg);
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.74rem;
  }
  .exp-info-pill-sep {
    display: inline-block;
  }
}

/* ==========================================================================
   DYNAMIC ENTRY PASS & REGISTRATION MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.85rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  position: relative;
  box-sizing: border-box;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-close-btn:hover {
  background: var(--color-primary-tint);
  color: var(--color-primary);
}

.modal-form-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.modal-badge-pill {
  display: inline-block;
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FCD34D;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.modal-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.modal-subheading {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.4;
}

.req-star {
  color: #DC2626;
  font-weight: 700;
}

.form-group {
  margin-bottom: 0.95rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.3rem;
}

.form-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: #F8FAFC;
  color: #0F172A;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #991B1B;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.12);
}

select.form-input,
.form-select {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 0.85rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background-color: #F8FAFC;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 14px !important;
  color: #0F172A;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
  line-height: 1.35;
}

select.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #991B1B;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 14px !important;
  box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.12);
}

select.form-input option,
.form-select option {
  background: #FFFFFF;
  color: #0F172A;
  font-size: 0.9rem;
  padding: 0.5rem;
}

select.form-input option[disabled],
.form-select option[disabled] {
  color: #94A3B8;
}

.form-textarea {
  resize: vertical;
  min-height: 60px;
}

.radio-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 0.95rem 0;
}

.radio-options-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.radio-option-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  color: #334155;
  transition: all 0.2s ease;
}

.radio-option-item:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.radio-option-item input[type="radio"] {
  accent-color: #991B1B;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option-item:has(input[type="radio"]:checked) {
  border-color: #991B1B;
  background: #FEF2F2;
  color: #991B1B;
  font-weight: 600;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 550px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   STAGE 2 — STANDARD 4:5 DYNAMIC ENTRY PASS CREDENTIAL
   ========================================================================== */
.standard-entry-pass-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto 1.25rem;
  background: 
    radial-gradient(ellipse at 50% 12%, rgba(136, 19, 55, 0.07) 0%, rgba(80, 7, 36, 0.03) 50%, transparent 80%),
    radial-gradient(circle at 50% 50%, rgba(159, 18, 57, 0.04) 0%, transparent 70%),
    repeating-radial-gradient(circle at 50% 25%, transparent 0, transparent 24px, rgba(136, 19, 55, 0.025) 25px, transparent 26px),
    #FFFDFD;
  border: 1.5px solid #FBCFE8;
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 2px 10px rgba(159, 18, 57, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
  text-align: left;
  box-sizing: border-box;
}

.pass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #CBD5E1;
  padding-bottom: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.pass-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.pass-brand-logo {
  height: 32px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  display: block;
}

.pass-type-badge {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 0 0.85rem;
  height: 28px;
  line-height: 26px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.pass-type-badge span {
  display: inline-block;
  line-height: 1;
  text-align: center;
}

.pass-event-banner {
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.pass-badge-gold {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  color: #D97706;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.pass-sub-badge {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.pass-main-title {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 900;
  color: #0B1730;
  letter-spacing: 0.06em;
  margin: 0.12rem 0 0 0;
  text-align: center;
  line-height: 1.15;
}

.pass-participant-box {
  background: #FFF1F2;
  border: 1.5px solid #FECDD3;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  min-height: 78px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(159, 18, 57, 0.03);
}

.pass-meta-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 850;
  color: #881337;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.pass-student-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  color: #9F1239;
  letter-spacing: 0.02em;
  word-break: break-word;
  line-height: 1.15;
  margin: 0;
  text-align: center;
  width: 100%;
}

.pass-id-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.pass-id-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.75rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  min-height: 72px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.pass-unique-id {
  font-family: var(--font-mono);
  font-size: 0.98rem;
  font-weight: 900;
  color: #2563EB;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.35rem;
  line-height: 1.2;
}

.pass-date-val {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  color: #0B1730;
  margin-top: 0.35rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.pass-time-val {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: #059669;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.pass-specs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  color: #334155;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.pass-specs-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.modal-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
}

/* Clean polished single information card for WhatsApp community message */
.pass-whatsapp-info-box {
  background: #FFFDF8;
  border: 1px solid #EFE4D6;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pass-whatsapp-info-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1E293B !important;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

@media (max-width: 480px) {
  .pass-whatsapp-info-box {
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
  }
  .pass-whatsapp-info-text {
    font-size: 0.76rem;
    line-height: 1.35;
  }
}

.modal-sub-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.btn-whatsapp-community {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-whatsapp-community:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.btn-download-pass-png {
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  box-sizing: border-box;
  text-align: center;
}

.btn-add-calendar {
  padding: 0.85rem 1.15rem;
  font-weight: 750;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 480px) {
  .modal-backdrop {
    padding: 0.5rem;
  }
  .modal-card {
    padding: 1.35rem 0.85rem;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .standard-entry-pass-card {
    padding: 0.9rem 0.75rem;
    gap: 0.65rem;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .pass-card-header {
    padding-bottom: 0.45rem;
  }
  .pass-brand-logo {
    height: 24px;
    max-width: 120px;
  }
  .pass-type-badge {
    font-size: 0.58rem;
    padding: 0.15rem 0.45rem;
  }
  .pass-event-banner {
    padding: 0.55rem 0.4rem;
    gap: 0.12rem;
  }
  .pass-badge-gold {
    font-size: 0.62rem;
  }
  .pass-sub-badge {
    font-size: 0.65rem;
  }
  .pass-main-title {
    font-size: 1.05rem;
  }
  .pass-participant-box {
    padding: 0.55rem 0.65rem;
  }
  .pass-meta-label {
    font-size: 0.58rem;
  }
  .pass-student-name {
    font-size: 0.96rem;
  }
  .pass-id-grid {
    gap: 0.45rem;
  }
  .pass-id-item {
    padding: 0.45rem 0.35rem;
  }
  .pass-unique-id {
    font-size: 0.78rem;
  }
  .pass-date-val {
    font-size: 0.64rem;
  }
  .pass-time-val {
    font-size: 0.58rem;
  }
  .pass-specs-strip {
    font-size: 0.56rem;
    gap: 0.35rem;
    padding: 0.38rem 0.45rem;
    white-space: nowrap;
    justify-content: center;
  }
  .btn-whatsapp-community {
    font-size: 0.88rem;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
  }
  .modal-sub-actions-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .btn-download-pass-png {
    font-size: 0.88rem;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    width: 100%;
  }
  .btn-add-calendar {
    font-size: 0.86rem;
    padding: 0.75rem 0.95rem;
    border-radius: 12px;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .modal-card {
    padding: 1.15rem 0.65rem;
  }
  .standard-entry-pass-card {
    padding: 0.75rem 0.6rem;
    gap: 0.55rem;
  }
  .pass-brand-logo {
    height: 20px;
    max-width: 95px;
  }
  .pass-type-badge {
    font-size: 0.52rem;
    padding: 0.15rem 0.45rem;
  }
  .pass-main-title {
    font-size: 0.95rem;
  }
  .pass-student-name {
    font-size: 0.88rem;
  }
  .pass-unique-id {
    font-size: 0.72rem;
  }
  .pass-date-val {
    font-size: 0.58rem;
  }
  .pass-time-val {
    font-size: 0.54rem;
  }
  .pass-specs-strip {
    font-size: 0.48rem;
    gap: 0.25rem;
    padding: 0.32rem 0.35rem;
    white-space: nowrap;
    justify-content: center;
  }
  .btn-whatsapp-community {
    font-size: 0.82rem;
    padding: 0.72rem 0.8rem;
  }
  .btn-download-pass-png {
    font-size: 0.82rem;
    padding: 0.72rem 0.8rem;
  }
  .btn-add-calendar {
    font-size: 0.8rem;
    padding: 0.68rem 0.8rem;
  }
}

/* ==========================================================================
   EXIT-INTENT TELUGU POPUP
   ========================================================================== */
.exit-popup-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.exit-popup-card {
  background: #FFFFFF;
  border: 2px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: #0F172A;
  text-align: center;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-popup-backdrop.open .exit-popup-card {
  transform: scale(1);
}

.exit-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.25;
  color: #0F172A;
  margin-bottom: 0.45rem;
}

.exit-hook-line {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #991B1B;
  margin-bottom: 0.35rem;
}

.exit-benefit-line {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2.2vw, 1.15rem);
  font-weight: 750;
  color: #991B1B;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.exit-popup-sub {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.exit-popup-btn {
  width: 100%;
  margin-bottom: 0.85rem;
}

.exit-dismiss-btn {
  font-size: 0.8rem;
  color: #64748B;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

.exit-dismiss-btn:hover {
  color: #0F172A;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #E2E8F0;
  padding: 0.45rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 990;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  .mobile-sticky-cta .btn {
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.45rem 0.85rem;
    height: 38px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.mobile-sticky-title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.mobile-sticky-title {
  font-family: var(--font-hero-condensed);
  font-size: 0.85rem;
  font-weight: 850;
  color: #991B1B;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sticky-price {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
}

.mobile-sticky-price .fee-strike {
  font-size: 0.7rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.mobile-sticky-price .free-badge {
  background: #DC2626;
  color: #FFFFFF;
  font-size: 0.62rem;
  font-weight: 850;
  padding: 0.08rem 0.35rem;
  border-radius: 4px;
}

.mobile-sticky-sub {
  font-size: 0.68rem;
  color: #475569;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
}

@media (max-width: 360px) {
  .mobile-sticky-cta {
    padding: 0.35rem 0.65rem;
  }
  .mobile-sticky-title {
    font-size: 0.76rem;
  }
  .mobile-sticky-sub {
    font-size: 0.62rem;
  }
  .mobile-sticky-cta .btn {
    font-size: 0.76rem;
    padding: 0.35rem 0.65rem;
    height: 34px;
  }
}

/* Footer */
.site-footer {
  background: #F8FAFC;
  color: #64748B;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid #E2E8F0;
  font-size: 0.85rem;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #334155;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom-row {
  text-align: center;
  color: #64748B;
  font-size: 0.82rem;
}
/* ==========================================================================
   MOBILE-ONLY SCROLL POPUPS (100% Mobile Only < 768px)
   ========================================================================== */
.mobile-scroll-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}

.mobile-scroll-popup-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-scroll-popup-card {
  background: #FFFDF9;
  border: 1.5px solid rgba(159, 18, 57, 0.16);
  border-radius: 20px;
  padding: 1.65rem 1.25rem 1.25rem 1.25rem;
  width: calc(100% - 32px);
  max-width: 420px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18), 0 0 30px rgba(159, 18, 57, 0.05);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
}

.mobile-scroll-popup-backdrop.open .mobile-scroll-popup-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-popup-deco-glow {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 50% 40%, rgba(244, 63, 94, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.mobile-popup-close-x {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.55rem;
  color: #94A3B8;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease;
  z-index: 2;
}

.mobile-popup-close-x:hover,
.mobile-popup-close-x:active {
  color: #0F172A;
}

.mobile-popup-heading {
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 4.2vw, 1.45rem);
  font-weight: 900;
  color: #0F172A;
  margin: 0 0 0.45rem 0;
  line-height: 1.25;
}

.mobile-popup-supporting {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  margin: 0 0 1.15rem 0;
  line-height: 1.4;
}

.mobile-popup-cta {
  width: 100%;
  font-size: 0.92rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 178, 24, 0.38);
  display: inline-block;
}

.mobile-popup-venue-panel {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.mobile-popup-venue-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.mobile-popup-venue-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
}

.mobile-popup-venue-sub {
  font-size: 0.76rem;
  color: #64748B;
}

.mobile-popup-map-action {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
  padding: 0.2rem 0.7rem;
  background: #FFF8EB;
  border: 1px solid #FFB218;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  color: #B45309;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-popup-map-action:active {
  background: #FFB218;
  color: #0F172A;
}

.mobile-popup-arrow {
  font-weight: 900;
}

.mobile-popup-dismiss-wrap {
  margin-top: 0.75rem;
}

.mobile-popup-dismiss-link {
  background: transparent;
  border: none;
  font-size: 0.8rem;
  color: #64748B;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

.mobile-popup-dismiss-link:hover,
.mobile-popup-dismiss-link:active {
  color: #0F172A;
}

@media (min-width: 768px) {
  .mobile-scroll-popup-backdrop {
    display: none !important;
  }
}

/* ==========================================================================
   ACCESSIBILITY: PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-free-3d-text,
  .top-bar-inner,
  .btn-hero-cta-yellow,
  .btn-hero-gold,
  .btn-primary {
    animation: none !important;
    transform: none !important;
  }
}
