/* ==========================================================================
   JaySan Digital Skill Academy Landing Page Stylesheet
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
  --color-bg-primary: #f4f6f9;
  --color-bg-secondary: #ffffff;
  --color-bg-card: #ffffff;
  --color-primary: #003884;
  --color-primary-glow: rgba(0, 56, 132, 0.15);
  --color-accent-red: #e63946;
  --color-accent-yellow: #e69c24;
  --color-text-main: #0d213f;
  --color-text-muted: #475569;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-border: rgba(0, 56, 132, 0.08);
  --glass-shadow: 0 15px 35px rgba(0, 36, 84, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.highlight {
  color: var(--color-accent-yellow);
}

/* Header Styling */
.main-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 70px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-play-btn {
  background: linear-gradient(135deg, var(--color-primary), #00c6ff);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

.logo-play-btn i {
  color: #fff;
  font-size: 14px;
  margin-left: 2px;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.site-footer .logo-img {
  background-color: #ffffff;
  padding: 3px;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 56, 132, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  text-decoration: none;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

/* Audience Navigation Banner */
.audience-banner {
  margin-top: 70px;
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 40px;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 40px;
  animation: scroll-marquee 25s linear infinite;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.marquee-content span {
  white-space: nowrap;
}

.marquee-content .separator {
  color: var(--color-primary);
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Main Grid & Sections Layout */
.masterclass-section {
  padding: 80px 20px;
  position: relative;
}

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

.main-headline {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.masterclass-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Visual Column Styles */
.visual-column {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* YouTube Video Preview Card */
.video-preview-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--color-bg-secondary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-color: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.video-preview-card:hover .video-thumb {
  transform: scale(1.05);
  opacity: 0.85;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 71, 87, 0.5);
  transition: var(--transition-smooth);
}

.play-circle i {
  color: #fff;
  font-size: 28px;
  margin-left: 6px;
}

.video-preview-card:hover .play-circle {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(255, 71, 87, 0.7);
}

.badge-live-stream {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-red);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

/* Glass Card Checkout Styling */
.checkout-card {
  border-radius: 24px;
  padding: 30px 30px 20px 30px; /* Reduced padding (smaller bottom gap) */
  border: 1px solid var(--glass-border);
  background-color: var(--color-bg-card);
  backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 15px; /* Reduced gap */
  position: relative;
  overflow: hidden;
}

.checkout-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(58, 134, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.card-badge {
  background-color: rgba(255, 71, 87, 0.1);
  color: var(--color-accent-red);
  border: 1px solid rgba(255, 71, 87, 0.25);
  font-weight: 800;
  font-family: var(--font-title);
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-red);
  box-shadow: 0 0 8px var(--color-accent-red);
  animation: pulse-live 1.2s infinite;
}

.btn-join-now {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 16px;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff; /* White text */
  background: linear-gradient(135deg, #ff4e24, #f97316); /* Orange gradient */
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35); /* Orange shadow */
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.btn-join-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.55);
  background: linear-gradient(135deg, #ff5e38, #ea580c);
}

.btn-join-now:active {
  transform: translateY(-1px);
}

.pulse-btn {
  animation: btn-glow 2s infinite;
}

@keyframes btn-glow {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.card-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 8px 0; /* Reduced from 15px to 8px */
}

.price-val {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-title);
  color: var(--color-accent-yellow);
}

.duration-label {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.benefits-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(58, 134, 240, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.benefit-text {
  font-size: 1rem;
  font-weight: 500;
}

.start-level {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.quote-bold {
  font-weight: 800;
  color: var(--color-text-main);
  font-size: 1.3rem;
}

/* Red Heading Highlight Banner */
.banner-highlight-red {
  background: linear-gradient(135deg, var(--color-accent-red), #d63031);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
  position: relative;
  z-index: 2;
}

.banner-highlight-red h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

/* Sneaker Product Masterclass Section Styling */
.product-gallery-card {
  background-color: var(--color-bg-secondary);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--glass-border);
  width: 100%;
}

.main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background-color: #f1f2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.product-main-view {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(7, 17, 32, 0.8);
  backdrop-filter: blur(5px);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--glass-border);
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.thumb-wrapper {
  aspect-ratio: 1;
  background-color: #f1f2f6;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.thumb-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.thumb-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(58, 134, 240, 0.5);
}

.thumb-wrapper.active {
  border-color: var(--color-primary);
  background-color: #e4e7eb;
  box-shadow: 0 5px 15px var(--color-primary-glow);
}

/* Thumbnail Crop/Style Classes */
.crop-toe-img {
  transform: scale(2) translate(15%, 5%);
}

.crop-heel-img {
  transform: scale(2.2) translate(-20%, -5%);
}

.rotate-img {
  transform: rotate(-25deg);
}

.gallery-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 15px;
}

.gallery-caption i {
  color: var(--color-primary);
  margin-right: 5px;
}

/* Special Promo Offer Badge */
.promo-badge-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.promo-badge {
  background: linear-gradient(135deg, var(--color-accent-yellow), #f39c12);
  border-radius: 15px;
  padding: 12px 25px;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-title);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.35);
  transform: rotate(-2deg);
  width: fit-content;
}

.promo-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-prices {
  font-size: 1.4rem;
  font-weight: 900;
}

.promo-prices s {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  margin-right: 8px;
}

/* ==========================================================================
   Circular Collage Frame Component
   ========================================================================== */
.collage-frame-container {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Circle (Centerpiece) */
.collage-circle-main {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  border: 6px solid var(--color-primary);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 10px 30px rgba(58, 134, 240, 0.4);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.collage-circle-main:hover {
  transform: scale(1.05);
}

.collage-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hover-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.collage-circle-main:hover .hover-glow {
  opacity: 1;
}

/* Satellite Orbits */
.collage-circle-orbit {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  position: absolute;
  z-index: 6;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 3px;
  background-color: var(--color-bg-primary);
  border: 2px solid var(--glass-border);
}

.orbit-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  position: relative;
}

.orbit-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-circle-orbit:hover {
  transform: scale(1.2) !important;
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
  z-index: 10;
}

/* Exact Absolute Positions (Clockwise Orbit around 220px centerpiece) */
.orbit-1 { top: 0px; left: 182px; }                      /* 12 o'clock */
.orbit-2 { top: 46px; right: 46px; }                     /* 1:30 */
.orbit-3 { top: 182px; right: 0px; }                      /* 3 o'clock */
.orbit-4 { bottom: 46px; right: 46px; }                  /* 4:30 */
.orbit-5 { bottom: 0px; left: 182px; }                   /* 6 o'clock */
.orbit-6 { bottom: 46px; left: 46px; }                   /* 7:30 */
.orbit-7 { top: 46px; left: 46px; }                      /* 10:30 */

/* Custom Crops for Detail Views using ONE source image (apparel_model.png) */
.crop-face { object-position: 50% 12%; transform: scale(2.8); }
.crop-pocket { object-position: 51% 32%; transform: scale(2.8); }
.crop-pants { object-position: 50% 65%; transform: scale(2.2); }
.crop-shoes { object-position: 50% 96%; transform: scale(2.5); }
.crop-angle2 { object-position: 50% 45%; transform: scale(1.6); }
.crop-sleeve { object-position: 62% 40%; transform: scale(3.5); }
.crop-accs { object-position: 38% 50%; transform: scale(3.2); }

/* Floating Animations for Orbits (adds modern live micro-movement) */
.orbit-1 { animation: float-orbit-y 6s ease-in-out infinite; }
.orbit-2 { animation: float-orbit-diag-r 5.5s ease-in-out infinite; }
.orbit-3 { animation: float-orbit-x 6.5s ease-in-out infinite; }
.orbit-4 { animation: float-orbit-diag-l 5.8s ease-in-out infinite; }
.orbit-5 { animation: float-orbit-y 6.2s ease-in-out infinite; }
.orbit-6 { animation: float-orbit-diag-r 6.4s ease-in-out infinite; }
.orbit-7 { animation: float-orbit-diag-l 5.2s ease-in-out infinite; }

@keyframes float-orbit-y {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes float-orbit-x {
  0% { transform: translateX(0); }
  50% { transform: translateX(8px); }
  100% { transform: translateX(0); }
}

@keyframes float-orbit-diag-r {
  0% { transform: translate(0, 0); }
  50% { transform: translate(6px, -6px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-orbit-diag-l {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -6px); }
  100% { transform: translate(0, 0); }
}

.collage-instruction {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 25px;
}

.collage-instruction i {
  color: var(--color-primary);
  margin-right: 5px;
}

/* Why Choose & Info Cards */
.info-details-section, .steps-section {
  padding: 100px 20px;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--glass-border);
}

.steps-section {
  background-color: var(--color-bg-primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.info-card {
  background-color: var(--color-bg-primary);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(58, 134, 240, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(58, 134, 240, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Steps Flow Cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step-card {
  background-color: var(--color-bg-secondary);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.step-num {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--color-primary), #00c6ff);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px var(--color-primary-glow);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Footer Section styling */
.site-footer {
  background-color: #091424;
  border-top: 1px solid var(--glass-border);
  padding: 70px 20px 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-container {
  display: inline-block;
}

.footer-brand p {
  color: #ffffff;
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-brand-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

.brand-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  display: block;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent-yellow);
  margin-top: 4px;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

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

.footer-links-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links-col a:hover {
  color: var(--color-accent-yellow);
  padding-left: 5px;
}

.footer-info h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-info p {
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-info a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-info a:hover {
  color: var(--color-accent-yellow);
}

.site-footer h3 i,
.footer-info p i {
  color: var(--color-accent-yellow) !important;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-policies {
  display: flex;
  gap: 20px;
}

.footer-policies a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-policies a:hover {
  color: #fff;
}

/* ==========================================================================
   Secure Payment Modal & Overlays
   ========================================================================== */
.payment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 9, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.payment-modal {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  padding: 35px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-modal-overlay.active .payment-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: #fff;
  background-color: rgba(255, 71, 87, 0.15);
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-logo {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.modal-product-price {
  font-size: 1.1rem;
  margin-top: 5px;
  color: var(--color-text-muted);
}

.modal-product-price .highlight {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-accent-yellow);
}

/* Tabs Styling */
.payment-tabs {
  display: flex;
  background-color: var(--color-bg-primary);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 25px;
  border: 1px solid var(--glass-border);
}

.tab-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background: none;
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn.active {
  background-color: var(--color-bg-secondary);
  color: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Panel Contents */
.payment-panel {
  display: none;
}

.payment-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* UPI QR panel styling */
.qr-payment-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.qr-instructions {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

.qr-code-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2.2rem;
  transition: opacity 0.3s ease;
}

.upi-id-display {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-primary);
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.upi-id-display span {
  font-size: 0.85rem;
}

.btn-copy-upi {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.btn-copy-upi:hover {
  color: #fff;
  transform: scale(1.15);
}

.action-verification {
  width: 100%;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
  margin-top: 10px;
  text-align: center;
}

.action-help-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.btn-verify-payment {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #003884;
  background: var(--color-accent-yellow);
  box-shadow: 0 6px 15px rgba(230, 156, 36, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-verify-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 156, 36, 0.45);
  background: #f39c12;
}

/* Direct UPI App / Gateway Link Buttons styling */
.btn-upi-direct {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  border: none;
}

.phonepe-btn-direct {
  color: #fff;
  background: #5f259f; /* PhonePe Purple */
  box-shadow: 0 4px 12px rgba(95, 37, 159, 0.25);
}

.phonepe-btn-direct:hover {
  background: #4e1d84;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(95, 37, 159, 0.4);
}

.razorpay-btn-direct {
  color: #fff;
  background: #3393df; /* Razorpay Blue */
  box-shadow: 0 4px 12px rgba(51, 147, 223, 0.25);
}

.razorpay-btn-direct:hover {
  background: #2380cb;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(51, 147, 223, 0.4);
}

/* Card Form panel styling */
.card-payment-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-instructions {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background-color: var(--color-bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.modal-footer-badges {
  margin-top: 25px;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.modal-footer-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Processing Overlay styling */
.processing-overlay, .success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  background-color: rgba(4, 9, 18, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.processing-overlay.active, .success-overlay.active {
  display: flex;
}

.processing-card, .success-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background-color: var(--color-bg-secondary);
}

.processing-spinner {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.highlight-icon {
  filter: drop-shadow(0 0 15px var(--color-primary-glow));
}

.processing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.processing-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Success Card styling */
.success-icon-wrapper {
  font-size: 4rem;
  color: #2ed573;
  margin-bottom: 20px;
}

.scale-up-icon {
  animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scale-up {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.success-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.redirect-info {
  margin: 25px 0;
  background-color: var(--color-bg-primary);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.redirect-info p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.redirect-info strong {
  color: #2ed573;
}

.loading-bar-container {
  width: 100%;
  height: 6px;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  overflow: hidden;
}

.loading-bar-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #2ed573);
  border-radius: 10px;
  transition: width 3s linear;
}

.btn-whatsapp-direct {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: #25d366;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp-direct:hover {
  transform: translateY(-2px);
  background-color: #20ba5a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Responsive Styling (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
  .masterclass-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .visual-column {
    order: 1;
  }
  
  .cta-column {
    order: 2;
  }
  
  .main-headline {
    font-size: 2.2rem;
  }
  
  .banner-highlight-red h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .masterclass-section {
    padding: 60px 15px;
  }
  
  .checkout-card {
    padding: 25px;
  }
  
  .main-headline {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .collage-frame-container {
    width: 320px;
    height: 320px;
  }
  
  .collage-circle-main {
    width: 160px;
    height: 160px;
  }
  
  .collage-circle-orbit {
    width: 56px;
    height: 56px;
  }
  
  /* Adjusted Orbit coordinates for smaller 320px screen width container */
  .orbit-1 { top: 0px; left: 132px; }
  .orbit-2 { top: 32px; right: 32px; }
  .orbit-3 { top: 132px; right: 0px; }
  .orbit-4 { bottom: 32px; right: 32px; }
  .orbit-5 { bottom: 0px; left: 132px; }
  .orbit-6 { bottom: 32px; left: 32px; }
  .orbit-7 { top: 32px; left: 32px; }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .payment-tabs {
    flex-direction: column;
  }
}

/* ==========================================================================
   Sticky Bottom CTA Bar
   ========================================================================== */
.sticky-bottom-cta {
  position: fixed;
  bottom: -400px; /* Hidden initially */
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 380px; /* Vertically stacked card width */
  background-color: #000000;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  z-index: 1001;
  padding: 28px 24px;
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* bouncy slide up */
}

/* Class to show the bar */
.sticky-bottom-cta.show {
  bottom: 30px; /* Floats 30px above bottom screen edge */
}

.sticky-cta-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sticky-cta-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; /* Gap between text and button */
}

.sticky-cta-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px; /* Gap between price and urgency subtext */
}

.price-current {
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.price-original {
  color: #a1a1aa;
  text-decoration: line-through;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.sticky-cta-urgency {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.sticky-cta-urgency .highlight-cyan {
  color: #00c2ff; /* Bright cyan from reference */
  font-weight: 800;
}

.sticky-cta-action {
  width: 100%;
}

.btn-sticky-join {
  width: 100%;
  background: #ff5421 !important; /* Vibrant orange */
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 20px !important; /* Tall button "boro hoba" */
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-weight: 800 !important;
  font-size: 1.3rem !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(255, 84, 33, 0.3) !important;
  transition: all 0.2s ease !important;
  text-transform: none !important;
  animation: wobble-tilt-action 3.5s ease-in-out infinite !important;
}

@keyframes wobble-tilt-action {
  0%, 80%, 100% {
    transform: scale(1) rotate(0deg);
  }
  82% {
    transform: scale(1.03) rotate(-3deg);
  }
  86% {
    transform: scale(1.03) rotate(3deg);
  }
  90% {
    transform: scale(1.03) rotate(-2deg);
  }
  94% {
    transform: scale(1.03) rotate(2deg);
  }
  97% {
    transform: scale(1.03) rotate(0deg);
  }
}

.btn-sticky-join:hover {
  animation-play-state: paused !important;
  transform: scale(1.05) !important;
  background: #ff6535 !important;
}

.btn-sticky-join:active {
  transform: scale(0.98) !important;
}

/* ==========================================================================
   Live Workshop Details (DH RUV Reference Style)
   ========================================================================== */
.live-workshop-container {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.live-workshop-details-card {
  background-color: #030712;
  border: 1px solid rgba(217, 70, 239, 0.5); /* Neon pink/purple border */
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.2);
  border-radius: 16px;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.details-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.live-tag {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.live-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.live-title {
  color: #f8fafc;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.details-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  min-height: 52px;
}

.badge-date {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.badge-time {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.info-badge i {
  font-size: 1.25rem;
}

.badge-text-group {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  text-transform: uppercase;
}

.badge-time-text {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.live-workshop-action {
  width: 100%;
  max-width: 850px;
  display: flex;
  justify-content: center;
}

.btn-workshop-join {
  width: 100%;
  background: linear-gradient(135deg, #ff4e24, #f97316);
  border: none;
  border-radius: 14px;
  padding: 18px 24px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.btn-workshop-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ff5e38, #ea580c);
}

.btn-workshop-join .btn-main-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-workshop-join .btn-sub-title {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
}

.urgency-ticker {
  margin-top: 5px;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
}

.urgency-ticker i {
  color: #e2e8f0;
  margin-right: 5px;
}

.urgency-ticker .time-highlight {
  color: #000000;
  font-weight: 800;
}

.urgency-ticker .countdown-highlight {
  color: #22d3ee; /* Glowing cyan */
  font-weight: 700;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

/* Pulse animation helper */
.pulse-btn-orange {
  animation: pulse-orange 2s infinite alternate;
}

@keyframes pulse-orange {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

@media (max-width: 768px) {
  .live-workshop-details-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .details-right {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }
  
  .info-badge {
    flex: 1;
    justify-content: center;
    padding: 8px 15px;
    min-height: 48px;
  }
  
  .btn-workshop-join .btn-main-title {
    font-size: 1.15rem;
  }
  
  .btn-workshop-join .btn-sub-title {
    font-size: 0.85rem;
  }
}

/* Mobile responsive */
@media (max-width: 576px) {
  .sticky-bottom-cta {
    width: 92%;
    padding: 20px 16px;
    bottom: -400px;
  }
  
  .sticky-bottom-cta.show {
    bottom: 20px; /* Floats 20px above the bottom */
  }
  
  .sticky-cta-container {
    flex-direction: column; /* Keep vertical column! */
    align-items: center;
  }
  
  .sticky-cta-info {
    margin-bottom: 14px;
  }

  .price-current {
    font-size: 1.6rem;
  }
  
  .price-original {
    font-size: 1.1rem;
  }
  
  .sticky-cta-urgency {
    font-size: 0.85rem;
  }
  
  .btn-sticky-join {
    padding: 14px 16px !important;
    font-size: 1.15rem !important;
  }
}

/* ==========================================================================
   Custom FAQ Accordion (Black Pill Design on Light Background)
   ========================================================================== */
.faq-accordion-section {
  padding: 100px 20px 180px 20px !important; /* Added 180px bottom padding to prevent sticky bar overlap */
  background-color: #f8fafc !important; /* Premium light-slate background matching the screenshot */
  color: #000000;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-title);
  font-size: 3.2rem !important; /* Increased font-size */
  font-weight: 800;
  color: #0f172a !important; /* Deep dark slate for text */
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
  white-space: nowrap !important;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: #000000 !important; /* Solid black pill background */
  border-radius: 24px !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 24px 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  text-align: left !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.accordion-question {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important; /* Pure white question text */
  line-height: 1.4;
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.accordion-icon svg,
.accordion-icon i {
  width: 16px;
  height: 16px;
  color: #ffffff !important; /* White chevron */
  fill: #ffffff !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-icon i,
.accordion-item.active .accordion-icon svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.accordion-content p {
  margin: 0;
  padding-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #cbd5e1 !important; /* Elegant light slate for responses inside black box */
  line-height: 1.6;
}

.accordion-content a {
  color: #38bdf8 !important; /* Bright cyan links */
  font-weight: 600;
}

/* Orange CTA Banner Button */
.faq-orange-banner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 16px 20px !important; /* Smaller padding */
  margin: 25px auto 0 auto !important; /* Smaller margin */
  width: 100% !important;
  max-width: 800px !important;
  background: #ff5421 !important; /* Flat orange */
  border-radius: 12px !important; /* Smaller border radius matching the screenshot */
  box-shadow: none !important; /* Flat design, no shadow */
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
}

.faq-orange-banner:hover {
  transform: translateY(-1px) !important;
  background-color: #ff6535 !important;
}

.faq-orange-banner .banner-title {
  font-family: var(--font-title) !important;
  font-size: 1.35rem !important; /* Slightly smaller title font */
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
}

.faq-orange-banner .banner-subtitle {
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important; /* Slightly smaller subtitle font */
  font-weight: 500 !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .faq-accordion-section {
    padding: 70px 16px 190px 16px !important; /* Added 190px bottom padding on mobile to clear the sticky bottom bar */
  }
  
  .faq-title {
    font-size: min(2rem, 6.5vw) !important; /* Increased font-size with viewport scale guard */
    margin-bottom: 35px;
    white-space: nowrap !important;
  }
  
  .accordion-header {
    padding: 20px 24px;
  }
  
  .accordion-question {
    font-size: 1.1rem;
  }
  
  .accordion-content {
    padding: 0 24px;
  }
}

/* ==========================================================================
   Pre-FAQ CTA Section (Dark Blue Container with Orange CTA and Countdown)
   ========================================================================== */
.pre-faq-cta-section {
  padding: 80px 20px;
  background-color: #060e23 !important; /* Premium deep navy/dark blue background */
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pre-faq-heading {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pre-faq-description {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: #cbd5e1 !important; /* Muted light text */
  max-width: 700px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

/* Orange CTA Banner Button inside Container */
.pre-faq-orange-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 20px 30px !important;
  margin: 0 auto 20px auto !important;
  width: 100% !important;
  max-width: 750px !important;
  background: #ff5421 !important; /* Vibrant orange matching the screenshot */
  border-radius: 16px !important; /* Rounded corners as in screenshot */
  box-shadow: 0 8px 24px rgba(255, 84, 33, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: none !important;
}

.pre-faq-orange-btn:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 12px 30px rgba(255, 84, 33, 0.4) !important;
  background-color: #ff6535 !important;
}

.pre-faq-btn-title {
  font-family: var(--font-title) !important;
  font-size: 1.6rem !important; /* Bold and large */
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

.pre-faq-btn-subtitle {
  font-family: var(--font-sans) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  opacity: 0.95;
}

/* Countdown Ticker Below Button */
.pre-faq-ticker {
  font-family: var(--font-sans);
  color: #e2e8f0;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 15px;
}

.pre-faq-ticker i {
  color: #f59e0b; /* Golden Warning Icon color */
  margin-right: 8px;
}

.pre-faq-ticker .countdown-highlight {
  color: #22d3ee !important; /* Glowing cyan */
  font-weight: 700;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
}

@media (max-width: 768px) {
  .pre-faq-cta-section {
    padding: 60px 16px;
  }
  
  .pre-faq-heading {
    font-size: 2rem;
  }
  
  .pre-faq-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .pre-faq-orange-btn {
    padding: 16px 20px !important;
  }
  
  .pre-faq-btn-title {
    font-size: 1.25rem !important;
  }
  
  .pre-faq-btn-subtitle {
    font-size: 0.95rem !important;
  }
  
  .pre-faq-ticker {
    font-size: 0.95rem;
  }
}

/* Responsive Video Container */
.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Video Showcase Card - Matches exact hero video card sizing */
.video-showcase-card {
  border-radius: 24px;
  padding: 30px 20px;
  border: 1px solid var(--glass-border);
  background-color: var(--color-bg-card);
  backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 900px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-showcase-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(58, 134, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.video-showcase-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  padding: 0 10px;
}

.video-container-large {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(99, 102, 241, 0.25);
}

.video-container-large iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-quote-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 850px;
  line-height: 1.5;
  margin: 0;
  padding: 0 10px;
}

/* Responsive Comparison Table Helpers */
@media (max-width: 640px) {
  .comparison-table-wrapper {
    padding: 0 !important;
    width: 100% !important;
  }
  .comparison-table-card {
    border-radius: 14px !important;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .comparison-grid {
    min-width: 100% !important;
    width: 100% !important;
    grid-template-columns: 1.25fr 1fr 0.75fr 0.75fr !important;
  }
  .comparison-header-cell, .comparison-row-cell {
    height: 52px !important;
    padding: 0 5px !important;
    font-size: 0.76rem !important;
  }
  .comparison-icon {
    font-size: 1.15rem !important;
  }
  .comparison-price-main {
    font-size: 0.9rem !important;
  }
  .comparison-price-sub {
    font-size: 0.68rem !important;
  }
  .comparison-banner {
    padding: 10px 14px !important;
    height: auto !important;
  }
}







