/* ============================================
   SOLAR DEMO PAGE - ENHANCED & RESPONSIVE CSS
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
*{
    margin: 0;
    padding: 0;    
}
.container {
  /* Colors */
  --primary-background: #ffffff;
  --secondary-background: #f8fafc;
  --card-background: #ffffff;
  
  --primary-color: #5A4FCF;
  --secondary-color: #3FB8FF;
  --primary-color-hover: #483bb9;
  --secondary-color-hover: #2BAFE4;
  
  --light-text: #ffffff;
  --dark-text: #1e293b;
  --grey-text: #d1d5db;
  --muted-text: #9ca3af;
  
  --success: #22C55E;
  --warning: #FACC15;
  --error: #EF4444;
  --info: #6b9fff;
  
  --gradient-color: linear-gradient(135deg, #4da36a 0%, #015d57 100%);
  --gradient-color-start: #4da36a;
  --gradient-color-end: #015d57;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --hover-background: #f1f5f9;
  
  /* Spacing */
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Typography */
  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Poppins', system-ui, sans-serif;
  
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2vw, 3rem);
  --text-5xl: clamp(3rem, 2rem + 3vw, 4rem);
  --text-6xl: clamp(3.75rem, 2.5rem + 4vw, 5rem);
}

/* ============================================
   BASE STYLES
   ============================================ */
.localroot {
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  background: linear-gradient(135deg, #030d33 0%, #003437 100%);
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--light-text);
  transition: var(--transition);
  position: relative;
}

/* ============================================
   MARQUEE BANNER
   ============================================ */
.marqueeWrapper {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 25%, #f06595 50%, #cc5de8 75%, #845ef7 100%);
  overflow: hidden;
  padding: 0.75rem 0;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.marqueeContent {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marqueeItem {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #ffffff;
  padding: 0 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.marqueeWrapper:hover .marqueeContent {
  animation-play-state: paused;
}

/* ============================================
   HERO SECTION
   ============================================ */
.heroSection {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle 400px at 10% 20%, rgba(77, 163, 106, 0.15) 0%, transparent 50%),
    radial-gradient(circle 350px at 90% 10%, rgba(1, 93, 87, 0.12) 0%, transparent 50%),
    radial-gradient(circle 300px at 85% 80%, rgba(77, 163, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle 250px at 5% 75%, rgba(1, 93, 87, 0.08) 0%, transparent 50%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.heroContent {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.mainTitle {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--light-text);
  text-shadow: 
    0 0 30px rgba(80, 199, 124, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  -webkit-text-stroke: 2px #50c77c;
}

.subtitle {
  font-size: var(--text-xl);
  color: var(--grey-text);
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   VIDEO SECTION - ENHANCED
   ============================================ */
.videoSection {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.videoWrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(77, 163, 106, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(77, 163, 106, 0.2);
  aspect-ratio: 1 / 1;
  max-height: 800px;
}

.modalVideo {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}

.modalVideo::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.videoDescription {
  font-size: var(--text-lg);
  color: var(--grey-text);
  margin: clamp(1.5rem, 3vw, 2rem) auto;
  line-height: 1.8;
  max-width: 800px;
  padding: 0 1rem;
}

.testimonial {
  font-size: var(--text-lg);
  color: var(--light-text);
  margin: clamp(2rem, 4vw, 3rem) auto;
  font-style: italic;
  line-height: 1.8;
  max-width: 900px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(77, 163, 106, 0.1), rgba(1, 93, 87, 0.1));
  border-left: 5px solid var(--gradient-color-start);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* ============================================
   CTA BUTTONS - ENHANCED
   ============================================ */
.ctaButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(2.5rem, 5vw, 4rem);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--light-text);
  background: var(--gradient-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  text-decoration: none;
  min-width: clamp(280px, 45vw, 380px);
  box-shadow: 
    0 10px 40px rgba(77, 163, 106, 0.5),
    0 0 20px rgba(77, 163, 106, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin: clamp(1rem, 2vw, 1.5rem) auto;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 450px;
}

.ctaButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease-in-out;
}

.ctaButton:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 15px 60px rgba(77, 163, 106, 0.6),
    0 0 30px rgba(77, 163, 106, 0.4);
}

.ctaButton:hover::before {
  left: 100%;
}

.ctaButton:active {
  transform: translateY(-2px) scale(1.01);
}

/* ============================================
   LEARNING SECTIONS - ENHANCED
   ============================================ */
.learningSection {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--border-radius-xl);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.learningTitle,
.formulaTitle {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: var(--light-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.learningList {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.learningList li {
  font-size: var(--text-base);
  color: var(--grey-text);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  padding-left: clamp(3rem, 5vw, 3.5rem);
  line-height: 1.7;
  text-align: left;
  font-weight: 500;
}

.learningList li::before {
  content: '✓';
  position: absolute;
  left: clamp(1rem, 2vw, 1.25rem);
  top: 50%;
  transform: translateY(-50%);
  color: var(--success);
  font-weight: 900;
  font-size: var(--text-2xl);
  text-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.learningList li:hover {
  background: linear-gradient(135deg, rgba(77, 163, 106, 0.15), rgba(1, 93, 87, 0.1));
  border-color: rgba(77, 163, 106, 0.4);
  transform: translateX(10px);
  box-shadow: 0 6px 24px rgba(77, 163, 106, 0.2);
}

/* ============================================
   WHY SOLAR SECTION - ENHANCED
   ============================================ */
.whySolar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.imageContainer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featureImage {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(77, 163, 106, 0.3));
  transition: var(--transition);
}

.featureImage:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 15px 40px rgba(77, 163, 106, 0.5));
}

.featureList {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: left;
}

.featureList li {
  font-size: var(--text-lg);
  color: var(--grey-text);
  line-height: 1.8;
  padding-left: clamp(2rem, 3vw, 2.5rem);
  position: relative;
  font-weight: 500;
}

.featureList li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gradient-color-start);
  font-size: 1.5em;
  font-weight: 900;
}

/* ============================================
   TESTIMONIALS GALLERY - ENHANCED
   ============================================ */
.testimonialsGallery {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--border-radius-xl);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
}

.testimonialsTitle {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--light-text);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1400px;
  margin: 0 auto;
}

.testimonialCard {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
}

.testimonialCard:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(77, 163, 106, 0.4);
}

.testimonialImage {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.testimonialCard:hover .testimonialImage {
  transform: scale(1.08);
}

/* ============================================
   LOGOS SECTION - ENHANCED
   ============================================ */
.logosSection {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--border-radius-xl);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  text-align: center;
}

.logosTitle {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--light-text);
  text-align: center;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logosSubtitle {
  font-size: var(--text-lg);
  color: var(--grey-text);
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
}

.logosGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.logoCard {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  min-height: 120px;
  overflow: hidden;
}

.logoCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77, 163, 106, 0.15), transparent);
  transition: left 0.5s ease;
}

.logoCard:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(77, 163, 106, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(77, 163, 106, 0.3);
}

.logoCard:hover::before {
  left: 100%;
}

.logoImage {
  width: 100%;
  height: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 1;
  transition: var(--transition);
}

.logoCard:hover .logoImage {
  transform: scale(1.08);
}

/* ============================================
   COMPARISON TABLE - ENHANCED
   ============================================ */
.tableWrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--border-radius-lg);
}

.comparisonTable {
  width: 100%;
  max-width: 1000px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.comparisonTable thead {
  background: var(--gradient-color);
}

.comparisonTable th {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--light-text);
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.comparisonTable td {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: var(--text-base);
  color: var(--grey-text);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  line-height: 1.7;
  font-weight: 500;
}

.comparisonTable tbody tr:hover td {
  background: rgba(255, 255, 255, 0.06);
  color: var(--light-text);
}

.comparisonTable tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   MENTOR SECTION - ENHANCED
   ============================================ */
.mentorPhotoWrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  border-radius: var(--border-radius-xl);
}

.mentorPhotoWrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 3%;
  height: 70%;
  border-radius: var(--border-radius-xl);
  background-image: radial-gradient(
    circle 957px at 1.9% 48.3%, 
    rgba(28,61,247,1) 0%, 
    rgba(215,64,64,1) 53.7%, 
    rgba(215,64,64,1) 90%
  );
  z-index: 0;
  filter: blur(20px);
}

.mentorPhoto {
  position: relative;
  border-radius: var(--border-radius-xl);
  width: 100%;
  height: auto;
  max-width: 350px;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   FAQ SECTION - NEW
   ============================================ */
.faqList {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 900px;
  width: 100%;
  text-align: left;
}

.faqItem {
  font-size: var(--text-base);
  color: var(--grey-text);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  line-height: 1.8;
}

.faqItem strong {
  color: var(--light-text);
  font-size: var(--text-lg);
  display: block;
  margin-bottom: 0.5rem;
}

.faqItem span {
  color: var(--grey-text);
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
}

.faqItem:hover {
  background: linear-gradient(135deg, rgba(77, 163, 106, 0.1), rgba(1, 93, 87, 0.05));
  border-color: rgba(77, 163, 106, 0.3);
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(77, 163, 106, 0.15);
}

/* ============================================
   FLOATING PAYMENT BUTTON - ENHANCED
   ============================================ */
.floatingPayment {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.paymentContainer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(20px);
  border-radius: 0;
  padding: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 
    0 -10px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(77, 163, 106, 0.3);
}

.paymentButton {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--light-text);
  background: var(--gradient-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(77, 163, 106, 0.5),
    0 0 20px rgba(77, 163, 106, 0.3);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

  .paymentButton:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 50px rgba(77, 163, 106, 0.6),
    0 0 30px rgba(77, 163, 106, 0.4);
}

.pulse {
  animation: pulseAnimation 2s ease-in-out infinite;
}

@keyframes pulseAnimation {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 10px 40px rgba(77, 163, 106, 0.5),
      0 0 20px rgba(77, 163, 106, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 15px 50px rgba(77, 163, 106, 0.7),
      0 0 30px rgba(77, 163, 106, 0.5);
  }
}

/* ============================================
   PAYMENT FORM MODAL - ENHANCED
   ============================================ */
.overlayFormWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.paymentForm {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--border-radius-xl);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
  animation: slideUp 0.3s ease;
}

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

.paymentForm h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.paymentForm input {
  padding: clamp(1rem, 2vw, 1.25rem);
  font-size: var(--text-base);
  font-family: var(--font-body);
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius);
  background: #ffffff;
  color: #1e293b;
  transition: var(--transition);
  font-weight: 500;
}

.paymentForm input:focus {
  outline: none;
  border-color: var(--gradient-color-start);
  box-shadow: 0 0 0 4px rgba(77, 163, 106, 0.15);
  background: #fafafa;
}

.submitButton {
  background: var(--gradient-color);
  border: none;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(77, 163, 106, 0.5);
  margin-top: 0.5rem;
}

.submitButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(77, 163, 106, 0.6);
}

.submitButton:active {
  transform: translateY(-1px);
}

.cancelButton {
  background: none;
  border: none;
  color: #64748b;
  text-decoration: underline;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: var(--transition);
  padding: 0.75rem;
  font-weight: 600;
}

.cancelButton:hover {
  color: #475569;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Tablets */
@media (max-width: 1024px) {
  .whySolar {
    flex-direction: column;
    gap: 2rem;
  }

  .featureImage {
    max-width: 450px;
  }

  .featureList {
    text-align: center;
  }

  .featureList li {
    padding-left: 2rem;
  }

  .videoWrapper {
    max-width: 900px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .mainTitle {
    -webkit-text-stroke: 1.5px #50c77c;
  }
  
  .marqueeWrapper {
    padding: 0.625rem 0;
  }
  
  .marqueeItem {
    padding: 0 2rem;
  }
  
  .ctaButton {
    min-width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
  }

  .whySolar {
    gap: 1.5rem;
  }

  .featureImage {
    max-width: 400px;
  }

  .featureList li {
    font-size: var(--text-base);
  }
  
  .testimonialsGrid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .logosGrid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
  }
  
  .logoCard {
    padding: 1.25rem;
    min-height: 100px;
  }
  
  .logoImage {
    max-width: 140px;
  }

  .videoWrapper {
    max-width: 100%;
  }

  .comparisonTable th,
  .comparisonTable td {
    padding: 1rem 0.75rem;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .mainTitle {
    -webkit-text-stroke: 1px #50c77c;
  }
  
  .marqueeWrapper {
    padding: 0.5rem 0;
  }
  
  .marqueeItem {
    font-size: 0.8rem;
    padding: 0 1.5rem;
  }
  
  .ctaButton {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 40px;
    min-width: 100%;
  }

  .whySolar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .featureImage {
    max-width: 300px;
  }

  .featureList {
    text-align: left;
  }

  .featureList li {
    font-size: var(--text-sm);
    padding-left: 1.75rem;
  }

  .featureList li::before {
    font-size: 1.2em;
  }
  
  .learningList li {
    padding: 1rem 1rem 1rem 2.5rem;
  }
  
  .learningList li::before {
    left: 0.75rem;
    font-size: 1.25rem;
  }
  
  .testimonialsGrid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .comparisonTable {
    font-size: 0.85rem;
  }
  
  .comparisonTable th {
    padding: 0.875rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .comparisonTable td {
    padding: 0.875rem 0.625rem;
  }
  
  .paymentButton {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .logosGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .logoCard {
    padding: 1rem;
    min-height: 80px;
  }
  
  .logoImage {
    max-width: 110px;
  }

  .videoWrapper {
    border-radius: var(--border-radius);
  }

  .faqItem {
    padding: 1rem;
  }

  .mentorPhoto {
    max-width: 280px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .mainTitle {
    -webkit-text-stroke: 0.5px #50c77c;
  }
  
  .ctaButton {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .featureImage {
    max-width: 250px;
  }
  
  .testimonialsGrid {
    gap: 1rem;
  }
  
  .comparisonTable {
    font-size: 0.8rem;
  }
  
  .comparisonTable th,
  .comparisonTable td {
    padding: 0.75rem 0.5rem;
  }
  
  .logosGrid {
    gap: 0.75rem;
  }
  
  .logoCard {
    padding: 0.75rem;
    min-height: 70px;
  }
  
  .logoImage {
    max-width: 90px;
  }

  .mentorPhoto {
    max-width: 240px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .heroSection {
    min-height: auto;
  }
  
  .header {
    padding: 1.5rem 0 1rem;
  }
  
  .floatingPayment {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 2rem auto 0;
  }

  .videoWrapper {
    aspect-ratio: 1 / 1;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .heroContent {
    max-width: 1600px;
  }
  
  .testimonialsGrid,
  .logosGrid {
    max-width: 1600px;
  }

  .videoWrapper {
    max-width: 1400px;
  }

  .featureImage {
    max-width: 600px;
  }
}

/* Print Styles */
@media print {
  .heroBackground,
  .floatingPayment,
  .overlayFormWrapper,
  .marqueeWrapper {
    display: none !important;
  }
  
  .container {
    background: white;
    color: black;
  }
  
  .mainTitle,
  .learningTitle,
  .formulaTitle,
  .testimonialsTitle,
  .logosTitle {
    color: black;
  }
  
  .videoWrapper {
    display: none;
  }
}
