/* --- 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: 20px;
    gap: 10px;
  }

  /* Header */
  .site-header {
    padding: 20px;
    width: calc(100% + 40px);
    margin: -20px -20px 0 -20px;
  }
  
  .logo-image {
    height: 70px;
  }

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

  .header-nav a {
    font-size: 0.8rem;
  }

  /* Hero Section */
  .hero-section {
    height: auto;
    min-height: 100vh;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .hero-content {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .vimeo-wrapper iframe {
    height: 100vh;
    width: 177.77vh; /* Keep aspect ratio while covering screen */
  }

  /* Sections General */
  .how-section, .about-section, .pricing-container {
    padding: 40px 20px;
  }

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

  /* Pricing Cards */
  .pricing-section {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 40px 20px;
  }

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

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

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

  .pricing-header-bar {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

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

  /* About Section */
  .big-header {
    font-size: 3rem;
  }

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

  /* Enterprise & Footer */
  .enterprise-section, .site-footer {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 60px 20px;
  }

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

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

/* --- 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;
}

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

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.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;
}