/* --- 1. THE BRAND VARIABLES --- */
:root {
  --bg-black: #000000;
  --text-white: #FFFFFF;
  --neon-yellow: #EBFF00; /* High-vis yellow from screenshots */
  --card-bg: #0a0a0a; /* Slightly lighter black for cards */
  --glass-bg: rgba(255, 255, 255, 0.1); /* For the 'Book Now' button */
}

/* --- 2. GLOBAL RESET --- */
* {
  box-sizing: border-box; /* This prevents the header from being wider than the screen */
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* FIXED: Changed padding to 0 so the header touches the edges */
  margin: 0;
  padding: 0; 

  display: flex;
  flex-direction: column;
  gap: 20px;

  /* FIXED: Changed to 'center' so your content stays in the middle */
  align-items: center; 
  overflow-x: hidden; /* Prevents accidental scrollbars */
}

h1, h2, h3 {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

/* --- 3. THE BUTTON STYLES --- */

/* Style A: The Main "Action" Button 
   (Used for: About Me, Subscribe, View Options, Contact) */
.btn-primary {
  background-color: var(--neon-yellow);
  color: #000000;
  border: none;
  padding: 14px 32px; /* Generous padding */
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
  min-width: 150px; /* Ensures buttons aren't too small */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  opacity: 0.85; /* Slight fade on hover */
}

/* Style B: The "Glass" Pill Button 
   (Used for: "Book Now" over the image) */
.btn-glass {
  background: var(--glass-bg);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  text-decoration: none; /* Removes underline */

  /* Add this if it's missing to ensure padding works right on a link: */
  display: inline-block; 
}

.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* --- 4. PRICING SECTION --- */
.pricing-section {
  background-color: var(--neon-yellow);
  width: 100%;
  /* This negative margin compensates for the body padding we added earlier */
  margin-left: -40px;
  margin-right: -40px;
  padding: 60px 40px;
  box-sizing: border-box; /* Ensures padding doesn't break width */
  width: calc(100% + 80px); /* Stretches full width */
  color: #000; /* Text on yellow is black by default */
}

.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* The Black Card Itself */
.pricing-card {
  background-color: #000000;
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-wrap: wrap; /* Allows content to stack or go side-by-side */
  gap: 40px;
  align-items: flex-start;
}

/* Left side of card: Title, Price, Button */
.card-header {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-size: 2rem; /* Big title like 'AI ACADEMY' */
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.card-price {
  font-size: 2rem;
  color: #00FF00; /* The bright green from the screenshot */
  margin: 0;
  line-height: 1;
}

.card-promo {
  color: #00FF00;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card-tagline {
  font-style: italic;
  color: #888;
  margin-bottom: 20px;
}

/* Right side of card: The feature list */
.card-features {
  flex: 2;
  min-width: 300px;
}

.feature-heading {
  color: var(--neon-yellow); /* Yellow text inside black card */
  font-style: italic;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.feature-list li::before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
}

.expiry {
  display: block;
  margin-top: 20px;
  color: #ff4444; /* Red expiry text */
  font-style: italic;
  font-size: 0.8rem;
}
/* --- 6. ABOUT SECTION --- */
.about-section {
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.big-header {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -2px;
}

.sub-header {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ddd;
}

.text-block {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 2rem;
}

/* The Quote Section at the bottom of About */
.quote-block {
  margin-top: 60px;
  border-left: 4px solid var(--neon-yellow);
  padding-left: 20px;
}

.quote-text {
  font-style: italic;
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 20px;
  display: block;
}

.quote-author {
  font-weight: bold;
  color: var(--neon-yellow);
}
/* --- 7. HOW WE WORK SECTION --- */
.how-section {
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-white);
}

.service-item {
  margin-bottom: 50px;
  border-bottom: 1px solid #333; /* Subtle divider line */
  padding-bottom: 40px;
}

.service-item:last-child {
  border-bottom: none; /* No line for the last item */
}

.service-header-with-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-icon {
  color: #EBFF00 !important;
  width: 32px !important;
  height: 32px !important;
  display: inline-block !important;
  stroke: #EBFF00 !important;
  stroke-width: 2px !important;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-white);
}

.service-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
  max-width: 800px;
}

.service-best-for {
  font-style: italic;
  color: #888;
  font-size: 0.95rem;
}

.service-best-for span {
  color: var(--text-white); /* Highlights the list of who it is for */
}/* --- 8. ENTERPRISE SECTION CORRECTIONS --- */
.enterprise-section {
  background-color: #333; /* Dark Grey */
  color: var(--neon-yellow);
  text-align: center;
  padding: 80px 20px;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 0;
  position: relative; /* Ensure clear positioning */
  z-index: 1;
}

.enterprise-title {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  color: var(--neon-yellow);
}

.enterprise-desc {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 30px auto;
  max-width: 700px;
  line-height: 1.5;
}

/* --- 9. FOOTER CORRECTIONS --- */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.pricing-header-bar {
  background-color: #444; /* The Dark Grey */
  color: #fff;
  text-align: center; /* Forces text to center */
  padding: 40px 0;

  /* The "Full Width" Trick */
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 0;
}

.pricing-header-bar h2 {
  margin: 0;
  font-size: 3rem;
  width: 100%; /* Ensures text container spans full width */
}/* --- 10. SITE HEADER & NAVIGATION --- */
.site-header {
  background-color: #000; /* Keeps it solid black so text doesn't show through */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px; /* Reduced padding slightly so it takes less space */
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  /* THIS MAKES IT STICKY */
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensures it sits ON TOP of the video/content */
}

.logo-image {
  height: 100px; /* Slightly larger logo since it's centered */
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 100px;
  position: static; /* Remove absolute positioning */
  transform: none;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--neon-yellow); /* Glows yellow on hover */
}

/* --- 12. MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
  body {
    padding: 0;
    gap: 0;
  }

  /* Header */
  .site-header {
    padding: 15px 20px;
    width: 100%;
    margin: 0;
  }
  
  .logo-image {
    height: 60px;
  }

  .header-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  /* Hero Section */
  .hero-section {
    height: 85vh;
    min-height: 500px;
    width: 100%;
    margin: 0;
  }

  .hero-content {
    flex-direction: column;
    padding: 40px 25px;
    text-align: center;
    gap: 30px;
    justify-content: center;
  }

  .hero-text-block {
    order: 1;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .btn-glass {
    order: 2;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  /* Sections General */
  .how-section, .about-section {
    padding: 50px 25px;
    width: 100%;
    max-width: 100%;
  }

  .pricing-container {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-desc {
    font-size: 1rem;
  }

  .service-header-with-icon {
    flex-wrap: wrap;
  }

  /* Pricing Cards */
  .pricing-section {
    width: 100%;
    margin: 0;
    padding: 40px 20px;
  }

  .pricing-card {
    padding: 25px 20px;
    flex-direction: column;
    gap: 25px;
  }

  .card-header, .card-features {
    min-width: 100%;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-price {
    font-size: 1.6rem;
  }

  .pricing-header-bar {
    width: 100%;
    margin: 0;
    padding: 30px 20px;
  }

  .pricing-header-bar h2 {
    font-size: 1.6rem;
  }

  /* About Section */
  .big-header {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .sub-header {
    font-size: 1.3rem;
  }

  .text-block {
    font-size: 1rem;
  }

  /* Enterprise & Footer */
  .enterprise-section, .site-footer {
    width: 100%;
    margin: 0;
    padding: 50px 25px;
  }

  .enterprise-title {
    font-size: 1.6rem;
  }

  .enterprise-desc {
    font-size: 1rem;
  }

  .footer-logo {
    font-size: 2.5rem;
  }

  /* Buttons */
  .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 120px;
  }
}

/* --- TWEAK HERO SECTION TO FIT UNDER HEADER --- */
/* Find your existing .hero-section block and make sure margin-top is 0 */
/* --- 11. HERO SECTION WITH VIDEO BG --- */
.hero-section {
  margin-top: 0 !important;
  position: relative;
  height: 80vh; 
  overflow: hidden;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

.hero-video-wrapper video,
.hero-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.partners-ribbon {
  padding: 3rem 2rem;
  text-align: center;
}

.partners-heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}

.partner-logo {
  max-height: 55px;
  filter: grayscale(100%) brightness(200%) opacity(60%);
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(100%) brightness(200%) opacity(100%);
}

.hero-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.hero-text-block {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--neon-yellow);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
}
/* --- FIX FOR INSIDER BUTTON --- */
.btn-subscribe-yellow {
  background-color: var(--neon-yellow) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-size: 1.1rem;
  padding: 12px 35px; /* Balanced padding */
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block; /* Prevents it from stretching full width */
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-subscribe-yellow:hover {
  transform: scale(1.05); /* Slight pop effect */
  box-shadow: 0 0 15px rgba(235, 255, 0, 0.4); /* Neon glow on hover */
}

.btn-subscribe-yellow:hover {
  opacity: 0.9;
}

/* MATCH SCREENSHOT COLORS (White Price, not Green) */
.insider-price {
  color: #ffffff !important;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* --- MOBILE HERO FIXES (must be at end to override) --- */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .logo-image {
    height: 50px !important;
  }
  
  .header-nav {
    gap: 20px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .header-nav a {
    font-size: 0.7rem !important;
    letter-spacing: 0.5px !important;
  }
  
  .header-nav span {
    display: contents;
  }
  
  .hero-section {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: auto !important;
    min-height: 90vh;
  }
  
  .hero-video-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 90vh;
  }
  
  .hero-video-wrapper video {
    width: 100%;
    height: 100%;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    flex-direction: column !important;
    padding: 50px 25px !important;
    text-align: center !important;
    gap: 30px !important;
    min-height: 80vh;
    justify-content: center;
  }
  
  .hero-text-block {
    order: 1;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    letter-spacing: 1px !important;
  }
  
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }
  
  .btn-glass {
    order: 2;
    padding: 16px 32px;
    font-size: 1rem;
  }
}