/* CSS Variables for Consistency */
:root {
  --neon-green: #ccff00;
  --black: #0a0a0a;
  --white: #ffffff;
  --glass-bg: rgba(3, 3, 3, 0.877);
  --transition: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Inter";
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- Navbar Styles --- */
.header-container {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 30px;
  border-radius: 50px;
  pointer-events: all;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Navbar Layout: Left (CTA) */
.nav-cta-left .btn-join {
  background-color: var(--neon-green);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-cta-left .btn-join:hover {
  background-color: #ffffff;
}

/* Navbar Layout: Center (Links) */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--neon-green);
}

/* Navbar Layout: Right (Logo) */
.logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--white);
  text-decoration: none;
}

.logo span {
  color: var(--neon-green);
}

/* --- Mobile Navbar Elements --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

/* Updated Mobile Expanded Container */
.mobile-menu {
  position: fixed;
  top: 90px; /* Changed to 0 to cover screen or 90px if you prefer */
  left: 0;
  width: 100vw;
  height: 90vh;
  background-color: var(--black);
  z-index: 2000; /* Higher than navbar to ensure it's on top */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;

  /* Initial Hidden State */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px); /* Slight slide up */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Slide into place */
}

.mobile-links {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}

.mobile-links li {
  margin: 20px 0;
}

.mobile-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.mobile-cta-main {
  background-color: var(--neon-green);
  color: var(--black);
  width: 100%;
  padding: 18px;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  margin-bottom: 30px;
}

.mobile-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.contact-cta-small {
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--neon-green);
  padding: 8px 16px;
  border-radius: 8px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  display: flex;
  align-items: center;

  padding: 0 5%;

  overflow: hidden;
  pointer-events: all;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.pexels.com/photos/36387529/pexels-photo-36387529.jpeg");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.3);
  z-index: -1;
}

/* --- New Grid Layout --- */
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end; /* Aligns content to bottom */
  gap: 40px;
  padding: 120px 0 60px;

  position: relative !important;
  z-index: 100 !important;
  pointer-events: all !important;
}

/* --- Left Side Styling --- */
.hero-header-area {
  grid-column: 1;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border: 1px solid var(--neon-green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.85;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
}

/* --- Social Proof / Avatars --- */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 100%;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-left: -15px; /* Overlap effect */
}

.avatar-group img:first-child {
  margin-left: 0;
}

.social-text {
  font-size: 14px; /* Force small size */
  margin-bottom: 0;
  opacity: 0.9;
}

.social-text span {
  color: var(--neon-green);
  font-weight: 800;
}

/* --- Right Side Styling --- */
.hero-footer-area {
  grid-column: 2;
  justify-self: end; /* Push to the right */
  max-width: 400px;
  text-align: right;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-footer-area p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0.7;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background-color: white;
  color: var(--black);
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--white);
}

/* fade blur style */
.navbar,
.hero-badge,
.hero h1,
.hero-social-proof,
.hero-footer-area {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
  will-change: transform, filter, opacity;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr; /* Stack on mobile */
    text-align: left;
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-footer-area {
    grid-column: 1;
    justify-self: start;
    margin-top: 20px;
    text-align: left;
    align-items: flex-start;
  }

  .nav-links,
  .nav-cta-left {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 15px 25px;
    border-radius: 50px;
  }
}

/* ================= PANEL SECTION ================= */
/* FOR GSAP */
.pin-spacer {
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.panel {
  position: absolute;
  /* height: 100vh; */
  height: calc(100vh + 2px);
  overflow: hidden !important;
  width: 100%;
  left: 0;
  top: 0;

  z-index: 500 !important;
  pointer-events: none !important;
}

/* moving container */
.panel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  display: flex;
  align-items: center; /* Vertical Center */
  justify-content: center; /* Horizontal Center */
  transform: translateX(150%);
  background: var(--black);
  overflow: hidden;
}

/* the video fill the background */
.panel-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) grayscale(100%);
  z-index: 1;
}

.panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 60px;
  max-width: 900px;
  text-align: center;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(40px);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 90px);
  margin-bottom: 20px;
}

/* ======= PROGRAMS ======== */
.programs-section {
  padding: 90px 5%;
  background: var(--black);
}

.program-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 120px;
  align-items: flex-start;
}

/* LEFT SIDE STATS */

.program-intro-stats {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.program-intro-stats strong {
  font-size: 64px;
  font-family: "Bebas Neue", sans-serif;
  color: var(--neon-green);
  line-height: 1;
}

.program-intro-stats span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* RIGHT SIDE TEXT */

.program-intro-text {
  max-width: 700px;
}

.program-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border: 1px solid var(--neon-green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.program-intro-text p {
  line-height: 1.6;
  opacity: 0.8;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #ccff00;
}

.program-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

/* Zig-Zag Logic */

.row-reverse {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1;
  height: 500px;
  background: #222;
  overflow: hidden;
  border-radius: 20px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: var(--transition);
}

.program-image img:hover {
  filter: grayscale(1%);
}

.program-content {
  flex: 1;
}

.program-step {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2); /* Faded border */
  color: rgba(255, 255, 255, 0.2); /* Faded number */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

/* The Glow State */
.program-step.glow {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: scale(1.1);
}

.program-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5.5rem;
}

.program-content p {
  opacity: 0.85;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 15px;
}

/* Center alignment for mobile */
@media (max-width: 768px) {
  .program-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
  }

  .program-content h3 {
    font-size: 4rem;
  }

  .program-intro {
    flex-direction: column;
    gap: 40px;
  }

  .program-intro-stats {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
  }

  .program-intro-stats strong {
    font-size: 48px;
  }
}

/* Mobile Stack */
@media (max-width: 768px) {
  .program-row,
  .row-reverse {
    flex-direction: column; /* Image always top */
    gap: 30px;
    margin-bottom: 80px;
  }
  .program-image {
    height: 300px;
    width: 100%;
  }
}

/* ===== INSIGHT SECTION ===== */

.insight-section {
  padding: 20px 60px 5%;
  background: var(--black);
}

.insight-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 30px;
}

/* Base card */

.insight-card {
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  opacity: 0.3;
  filter: blur(15px);
  transform: translateY(20px) scale(0.95);
  transition:
    opacity 0.8s ease-out,
    filter 0.8s ease-out,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

/* Reveal state: Clean and positioned */
.insight-card.is-visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
  scroll-margin-top: 90px;
}

/* BIG CARD */

.primary-card {
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.35);
  min-height: 420px;
}

.primary-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  margin: 15px 0 20px;
}

.primary-card p {
  opacity: 0.85;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 15px;
}

/* SMALL CARD */

.quote-card {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.quote {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.quote-author {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.6;
  text-transform: uppercase;
}

/* small label */

.card-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .insight-section {
    padding: 0;
  }

  .insight-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;

    /* This creates the "invisible" gutter for snapping */
    scroll-padding: 0 20px;
    scroll-snap-type: x mandatory;
    padding: 0 20px;

    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .insight-container::-webkit-scrollbar {
    display: none;
  }

  /* 2. THE CARDS */
  .insight-card {
    flex: 0 0 85%;
    min-height: 420px;
    padding: 80px 30px;
    scroll-snap-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .insight-container::after {
    content: "";
    flex: 0 0 1px;
    margin-left: -15px; /* Adjust based on your gap */
  }

  /* 4. TYPOGRAPHY & SPECIFICS */
  .primary-card {
    min-height: 460px;
  }

  .primary-card h3 {
    font-size: 42px;
    line-height: 1.1;
  }

  .primary-card p {
    font-size: 15px;
    max-width: 100%;
  }

  .quote-card {
    min-height: 400px;
  }

  .quote {
    font-size: 18px;
  }
}

/* ================= EXPANSION SECTION (THE FINAL BOSS) ================= */
.expansion-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
  padding-top: 50px;
  padding-bottom: 40px;
}

.expansion-container {
  position: relative;
  width: 92%;
  max-width: 1400px;
  height: 80vh;
  background-color: var(--neon-green);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;

  transition: background-color 0.3s ease;
}

/* THE IMAGE GATE */
.expansion-bg-gate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 70%;
  border-radius: 50px;
  overflow: hidden;
  z-index: 2;
}

.expansion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
  transform: scale(1.1);
}

/* THE CONTENT AREA */
.expansion-content-center {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  color: var(--white);
}

.expansion-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(50px, 9vw, 130px);
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 20px;
}

.expansion-link {
  padding: 16px 36px;
  border: 2px solid var(--white);
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.expansion-link:hover {
  background: var(--white);
  color: var(--black);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .expansion-section {
    padding-top: 80px; /* Smaller nav on mobile */
  }
  .expansion-container {
    height: 80vh;
    width: 95%;
  }
  .expansion-bg-gate {
    width: 80%; /* Show more image on mobile start */
    height: 50%;
  }
  .expansion-title {
    font-size: 50px;
  }
}

/* TRAINERS SECTION */
.trainers-section {
  padding: 80px 5%;
  position: relative;
  background: var(--black);
  z-index: 5;
  margin-top: -1px;
}

.trainers-header {
  text-align: center;
  margin-bottom: 60px;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trainer-title {
  font-size: 4rem;
  font-family: "Bebas Neue", sans-serif;
}

.trainer-card {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  opacity: 1; /* No entry animation */
  transform: none; /* No entry animation */
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

.trainer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.trainer-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.trainer-info h3 span {
  color: var(--neon-green);
}

/* --- THE HOVER MAGIC --- */
.trainer-card:hover .trainer-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.trainer-card:hover .trainer-info {
  opacity: 1;
  transform: translateY(0);
}

/* Neon overlay on hover */
.trainer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 10%, transparent 60%);
  opacity: 0.8;
  z-index: 1;
}

@media (max-width: 992px) {
  .trainers-grid {
    grid-template-columns: 1fr;
  }
  .trainer-card {
    height: 450px;
  }
}

/* Mobile active state - mimics the hover styles */
.trainer-card.mobile-active .trainer-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.trainer-card.mobile-active .trainer-info {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MEMBERSHIP SECTION ================= */
.membership-section {
  padding: 80px 5%;
  background: var(--black);
  scroll-margin-top: 90px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.membership-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-green);
}

/* Featured (Middle) Card */
.membership-card.featured {
  background: var(--neon-green);
  color: var(--black);
  transform: scale(1.05);
  border: none;
  z-index: 2;
}

.membership-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 30px;
  background: var(--black);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Typography */
.tier-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.price {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.price .currency {
  font-size: 24px;
  font-weight: 700;
  margin-right: 5px;
}
.price .amount {
  font-size: 80px;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
}
.price .period {
  font-size: 16px;
  opacity: 0.6;
}

.features {
  list-style: none;
  margin-bottom: 40px;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
}

.featured .features li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-membership {
  display: block;
  text-align: center;
  padding: 18px;
  border: 1px solid var(--white);
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-membership:hover {
  background: var(--white);
  color: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border: none;
}

.btn-black:hover {
  background: var(--white);
  color: var(--black);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .membership-card.featured {
    transform: scale(1); /* No scale on mobile to keep alignment clean */
  }
}

/* ================= CTA SECTION ================= */
/* =================================================================
   CTA SECTION: TICKER + FORM + MODAL (FINAL VERSION)
   ================================================================= */

.cta-section {
  position: relative;
  width: 100%;
  padding: 160px 0 100px;
  background: var(--black);
  overflow: hidden;
  z-index: 20;
  margin-bottom: 0 !important;
}

/* --- 1. THE STRAIGHT TICKER --- */
.ticker-wrapper-straight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--neon-green);
  padding: 10px 0;
  z-index: 20;
  display: flex;
  overflow: hidden;
}

.ticker-content-straight {
  display: flex;
  white-space: nowrap;
  animation: ticker-loop 25s linear infinite;
}

.ticker-content-straight span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 5vw, 55px);
  color: var(--black);
  text-transform: uppercase;
  margin-right: 60px;
  display: inline-block;
  will-change: transform;
}

@keyframes ticker-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- 2. LAYOUT CONTAINER --- */
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(50px, 8vw, 110px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.cta-text h2 span {
  color: var(--neon-green);
}

.cta-text p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 500px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- 3. THE FORM WRAPPER --- */
.cta-form-wrapper {
  background: #111;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.titan-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--white);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  resize: none; /* Prevents user from breaking layout */
}

/* Floating Labels */
.form-group label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Logic: Focused or Not Empty */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 15px;
  background: #111;
  padding: 0 10px;
  color: var(--neon-green);
  font-size: 10px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--neon-green);
  outline: none;
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: var(--neon-green);
  transform: scale(1.02);
}

/* --- 4. SUCCESS MODAL --- */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #111;
  padding: 60px;
  border-radius: 40px;
  text-align: center;
  border: 1px solid var(--neon-green);
}

.modal-content h3,
.modal-content p {
  margin-bottom: 15px;
}

/* --- 5. RESPONSIVENESS --- */
@media (max-width: 992px) {
  .cta-section {
    padding-top: 140px;
  }

  .ticker-wrapper-straight {
    padding: 15px 0;
  }
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-text p {
    margin: 0 auto;
    font-size: 14px;
  }

  .cta-text h2 {
    font-size: 3.5rem;
  }
  .cta-form-wrapper {
    padding: 40px 20px;
  }
  .form-group label {
    left: 50%;
    transform: translateX(-50%);
  }
  .form-group input:focus ~ label,
  .form-group input:not(:placeholder-shown) ~ label,
  .form-group textarea:focus ~ label,
  .form-group textarea:not(:placeholder-shown) ~ label {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

/* ================= FOOTER MASTER DESIGN ================= */
.footer-section {
  width: 100%;
  background: #2525259c; /* Deepest black */
  padding: 100px 5% 40px;
  color: var(--white);
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Area */
.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  font-size: 60px; /* Big impact logo */
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: -2px;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation Columns */
.footer-nav {
  display: flex;
  gap: 100px;
}

.footer-col h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: var(--neon-green);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 15px;
  opacity: 0.6;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--neon-green);
  transform: translateX(5px); /* Premium hover slide */
}

/* Bottom Bar */
.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.back-to-top {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.back-to-top:hover {
  background: var(--neon-green);
  color: var(--black);
  border-color: var(--neon-green);
}

/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 992px) {
  .footer-section {
    padding: 80px 5% 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 50px;
    padding-bottom: 50px;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand .logo {
    font-size: 48px;
  }

  .footer-nav {
    gap: 60px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: row; /* Keep links side by side */
    justify-content: space-between;
    gap: 20px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom p {
    order: 2; /* Move copyright below button */
  }

  .back-to-top {
    order: 1;
    width: 100%;
  }
}
