/* ============================================================================
   INDEX PAGE - Professional Enhanced Styles (Minimized)
   ============================================================================ */

.home-page {
  background: linear-gradient(135deg, var(--bg-primary)0%, var(--bg-secondary)100%);
  min-height: 100vh;
  overflow-x: hidden
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0
}

.hero-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(236, 116, 0, .15)0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(236, 116, 0, .1)0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(236, 116, 0, .08)0%, transparent 50%);
  z-index: 1
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 22, .8)0%, rgba(15, 28, 46, .6)100%);
  z-index: 2
}

.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1
}

.floating-ball {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand)0%, var(--brand-light)100%);
  opacity: .1;
  animation: float 6s ease-in-out infinite;
  filter: blur(1px)
}

.ball-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 8%;
  animation-delay: 0
}

.ball-2 {
  width: 120px;
  height: 120px;
  top: 55%;
  right: 12%;
  animation-delay: 2s
}

.ball-3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 65%;
  animation-delay: 4s
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 3
}

.hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease forwards
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--brand-pale);
  color: var(--brand);
  padding: .75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--brand-accent);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow);
  transition: var(--transition)
}

.hero-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-brand)
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 2.5rem;
  letter-spacing: -.02em
}

.title-main {
  display: block;
  background: linear-gradient(135deg, var(--text-primary)0%, var(--brand)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative
}

.title-main::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  opacity: 0;
  animation: fadeInUp 1s ease .5s forwards
}

.title-sub {
  display: block;
  font-size: .55em;
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: .02em
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 3.5rem;
  max-width: 520px
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin: 0 0 4rem;
  flex-wrap: wrap
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--blur);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  opacity: 0;
  transition: var(--transition)
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-lg)
}

.stat-item:hover::before {
  opacity: 1
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 .75rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  font-size: .95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .75px;
  font-weight: 600
}

/* === HERO VISUAL === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 1s ease .5s forwards
}

.field-container {
  perspective: 1200px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3))
}

.football-field {
  width: 450px;
  height: 280px;
  background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
  border-radius: var(--radius-lg);
  position: relative;
  transform: rotateX(45deg) rotateY(15deg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition-slow)
}

.football-field:hover {
  transform: rotateX(40deg) rotateY(20deg) scale(1.05)
}

.field-grass {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .05)0, transparent 2px, transparent 25px, rgba(255, 255, 255, .05)27px)
}

.field-lines {
  position: absolute;
  inset: 0
}

.center-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, .9);
  transform: translateX(-50%);
  border-radius: 1px
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.penalty-area {
  position: absolute;
  width: 100px;
  height: 140px;
  border: 3px solid rgba(255, 255, 255, .9);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px
}

.penalty-left {
  left: 0;
  border-right: none
}

.penalty-right {
  right: 0;
  border-left: none
}

.goal-area {
  position: absolute;
  width: 50px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, .9);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px
}

.goal-left {
  left: 0;
  border-right: none
}

.goal-right {
  right: 0;
  border-left: none
}

.animated-ball {
  position: absolute;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ballBounce 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(236, 116, 0, .6);
  border: 2px solid rgba(255, 255, 255, .3)
}

@keyframes ballBounce {

  0%,
  100% {
    transform: translate(-50%, -50%)scale(1)
  }

  50% {
    transform: translate(-50%, -70%)scale(1.2)
  }
}

/* === SERVICES SECTION === */
.services-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(236, 116, 0, .02)100%)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  backdrop-filter: var(--blur);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  text-align: center
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-xl)
}

.service-icon {
  position: relative;
  margin: 0 auto 2rem;
  display: inline-block
}

.service-icon i {
  font-size: 3.5rem;
  color: var(--brand);
  transition: var(--transition)
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
  color: var(--brand-light)
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  line-height: 1.3
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem
}

/* === ACADEMY START SECTION === */
.academy-start {
  padding: 8rem 0;
  position: relative;
  background: var(--bg-card)
}

.academy-start-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.academy-start .section-header {
  margin-bottom: 4rem
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 1rem
}

.academy-benefits {
  display: flex;
  flex-direction: column;
  gap: 3rem
}

.benefit-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 3rem;
  background: rgba(236, 116, 0, .05);
  border: 1px solid var(--brand-accent);
  border-radius: var(--radius-2xl);
  transition: var(--transition-slow)
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand)
}

.benefit-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand)
}

.benefit-icon i {
  font-size: 2.5rem;
  color: var(--brand)
}

.benefit-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1.3
}

.benefit-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
  font-size: 1.1rem
}

.benefit-text p:last-child {
  margin-bottom: 0
}

/* === ADVANTAGES SECTION === */
.advantages-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(236, 116, 0, .02)0%, transparent 100%)
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: var(--blur);
  transition: var(--transition-slow);
  text-align: center
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-xl)
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 2px solid var(--brand-accent);
  transition: var(--transition)
}

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg);
  border-color: var(--brand)
}

.advantage-icon i {
  font-size: 2.5rem;
  color: var(--brand)
}

.advantage-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1.3
}

.advantage-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem
}

/* === TRAINING VIDEOS SECTION === */
.training-videos-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(236, 116, 0, .02)0%, transparent 100%)
}

.training-videos-section .section-header {
  margin-bottom: 5rem
}

.videos-category {
  margin-bottom: 5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem
}

.videos-category:last-child {
  margin-bottom: 0
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem
}

.video-item {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition-slow)
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-accent)
}

.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl)
}

/* === SCHEDULE SECTION === */
.schedule-section {
  padding: 8rem 0;
  position: relative;
  background: var(--bg-card)
}

.schedule-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center
}

.schedule-header {
  margin-bottom: 3rem
}

.schedule-info {
  background: rgba(236, 116, 0, .05);
  border: 2px solid var(--brand-accent);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  backdrop-filter: var(--blur)
}

.schedule-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1.5rem;
  font-size: 1.2rem
}

.schedule-info strong {
  color: var(--brand);
  font-weight: 700
}

.schedule-cta {
  margin-top: 3rem
}

/* === ABOUT FOUNDERS SECTION === */
.about-founders {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(236, 116, 0, .02)100%)
}

.founders-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem
}

.founders-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 2rem;
  font-size: 1.15rem
}

.founders-text strong {
  color: var(--brand);
  font-weight: 700
}

.founders-cta {
  margin-top: 3rem;
  text-align: center
}

/* === TRUST STATS SECTION === */
.trust-stats {
  padding: 8rem 0;
  position: relative;
  background: var(--bg-card)
}

.trust-stats .section-header h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 4rem;
  line-height: 1.3
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem
}

.trust-item {
  background: rgba(236, 116, 0, .05);
  border: 2px solid var(--brand-accent);
  border-radius: var(--radius-2xl);
  padding: 4rem 3rem;
  text-align: center;
  backdrop-filter: var(--blur);
  transition: var(--transition-slow)
}

.trust-item:hover {
  transform: translateY(-10px);
  border-color: var(--brand);
  box-shadow: var(--shadow-brand)
}

.trust-icon {
  width: 100px;
  height: 100px;
  background: var(--brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 3px solid var(--brand)
}

.trust-icon i {
  font-size: 3.5rem;
  color: var(--brand)
}

.trust-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px
}

.trust-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.5rem;
  line-height: 1
}

.trust-number .percentage {
  font-size: 2.5rem
}

.trust-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem
}

/* === PAYMENT SECTION === */
.payment-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(236, 116, 0, .1)0%, rgba(236, 116, 0, .05)100%);
  border-top: 1px solid var(--brand-accent);
  border-bottom: 1px solid var(--brand-accent)
}

.payment-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center
}

.payment-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 1.5rem 0;
  line-height: 1.2
}

.payment-content p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7
}

/* === FEATURES SECTION === */
.features {
  padding: 10rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(236, 116, 0, .02)100%)
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 8rem
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--brand-pale);
  color: var(--brand);
  padding: .75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--brand-accent);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: var(--blur);
  transition: var(--transition)
}

.section-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-brand)
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -.02em
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  backdrop-filter: var(--blur);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp .8s ease forwards
}

.feature-card:nth-child(1) {
  animation-delay: .1s
}

.feature-card:nth-child(2) {
  animation-delay: .2s
}

.feature-card:nth-child(3) {
  animation-delay: .3s
}

.feature-card:nth-child(4) {
  animation-delay: .4s
}

.feature-card:nth-child(5) {
  animation-delay: .5s
}

.feature-card:nth-child(6) {
  animation-delay: .6s
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left
}

.feature-card:hover::before {
  transform: scaleX(1)
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-xl)
}

.feature-icon {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block
}

.feature-icon i {
  font-size: 3rem;
  color: var(--brand);
  position: relative;
  z-index: 2;
  transition: var(--transition)
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--brand-pale);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  z-index: 1
}

.feature-card:hover .icon-bg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2)
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
  color: var(--brand-light)
}

.feature-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  line-height: 1.3
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 2rem;
  font-size: 1.05rem
}

.feature-arrow {
  display: flex;
  justify-content: flex-end;
  color: var(--brand);
  opacity: 0;
  transition: var(--transition);
  font-size: 1.25rem
}

.feature-card:hover .feature-arrow {
  opacity: 1;
  transform: translateX(8px)
}

/* === ACADEMY INTRO SECTION === */
.academy-intro {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(236, 116, 0, .02)100%)
}

.academy-intro .section-header {
  margin-bottom: 4rem
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border)
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl)
}

/* === MARCEL SECTION === */
.marcel-section {
  padding: 8rem 0;
  position: relative;
  background: var(--bg-card)
}

.marcel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem
}

.marcel-text .section-badge {
  margin-bottom: 2rem
}

.marcel-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 2rem;
  line-height: 1.2;
  letter-spacing: -.02em
}

.marcel-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0
}

.marcel-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border)
}

.marcel-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl)
}

/* === FAQ SECTION === */
.faq-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(236, 116, 0, .02)0%, transparent 100%)
}

.faq-section .section-header {
  margin-bottom: 6rem
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  backdrop-filter: var(--blur);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left
}

.faq-item:hover::before {
  transform: scaleX(1)
}

.faq-item:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-xl)
}

.faq-item.active {
  border-color: var(--brand);
  box-shadow: var(--shadow-brand)
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem;
  cursor: pointer;
  user-select: none;
  position: relative
}

.faq-question i {
  font-size: 2rem;
  color: var(--brand);
  transition: var(--transition)
}

.faq-item:hover .faq-question i {
  transform: scale(1.1);
  color: var(--brand-light)
}

.faq-question h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  flex: 1
}

.faq-toggle {
  font-size: 1.25rem;
  color: var(--brand);
  transition: transform 0.3s ease;
  margin-left: auto;
  flex-shrink: 0
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2.5rem
}

.faq-item.active .faq-answer {
  padding-bottom: 2.5rem
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 1rem
}

.faq-answer p:last-child {
  margin-bottom: 0
}

/* === CTA SECTION === */
.cta-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(236, 116, 0, .1)0%, rgba(236, 116, 0, .05)100%);
  backdrop-filter: var(--blur);
  border-top: 1px solid var(--brand-accent);
  border-bottom: 1px solid var(--brand-accent);
  overflow: hidden
}

.cta-background {
  position: absolute;
  inset: 0
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 25%, var(--brand-pale)0%, transparent 60%), radial-gradient(circle at 75% 75%, var(--brand-pale)0%, transparent 60%);
  opacity: .6;
  animation: float 8s ease-in-out infinite
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem
}

.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -.02em
}

.cta-text p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 0 0 4rem;
  line-height: 1.7
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap
}

/* === FOOTER === */
.footer {
  background: rgba(10, 15, 22, .95);
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--border);
  backdrop-filter: var(--blur);
  position: relative
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent)
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem
}

.footer-brand {
  max-width: 450px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.75rem
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 2.5rem;
  font-size: 1.05rem
}

.social-links {
  display: flex;
  gap: 1.25rem
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  color: var(--brand);
  border: 1px solid var(--border);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: var(--blur)
}

.social-link:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
  border-color: var(--brand)
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem
}

.footer-column h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin: 0 0 1.5rem;
  font-size: 1.1rem
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-column li {
  margin-bottom: .75rem
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: .95rem
}

.footer-column a:hover {
  color: var(--brand);
  transform: translateX(4px)
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 0
}

.footer-bottom p {
  color: var(--text-muted);
  margin: 0;
  font-size: .95rem
}

/* === RESPONSIVE DESIGN === */
@media (max-width:1200px) {
  .hero-content {
    gap: 3rem
  }

  .football-field {
    width: 380px;
    height: 240px
  }
}

@media (max-width:1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center
  }

  .hero-visual {
    order: -1
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
  }

  .marcel-content {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:768px) {
  .hero {
    padding: 4rem 0 2rem
  }

  .hero-content {
    gap: 3rem
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .hero-buttons {
    justify-content: center;
    gap: 1rem
  }

  .football-field {
    width: 320px;
    height: 200px
  }

  .services-section {
    padding: 5rem 0
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem
  }

  .service-card {
    padding: 2rem
  }

  .academy-start {
    padding: 5rem 0
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem
  }

  .benefit-icon {
    margin: 0 auto 1.5rem
  }

  .advantages-section {
    padding: 5rem 0
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem
  }

  .training-videos-section {
    padding: 5rem 0
  }

  .videos-category {
    padding: 0 1rem;
    margin-bottom: 4rem
  }

  .category-title {
    font-size: 1.5rem
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .schedule-section {
    padding: 5rem 0
  }

  .schedule-info {
    padding: 2.5rem
  }

  .about-founders {
    padding: 5rem 0
  }

  .trust-stats {
    padding: 5rem 0
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem
  }

  .trust-item {
    padding: 3rem 2rem
  }

  .payment-section {
    padding: 4rem 0
  }

  .features {
    padding: 6rem 0
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem
  }

  .feature-card {
    padding: 2rem
  }

  .academy-intro {
    padding: 5rem 0
  }

  .marcel-section {
    padding: 5rem 0
  }

  .marcel-content {
    padding: 0 1rem
  }

  .faq-section {
    padding: 5rem 0
  }

  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem
  }

  .faq-item .faq-question {
    padding: 2rem
  }

  .faq-item .faq-answer {
    padding: 0 2rem
  }

  .faq-item.active .faq-answer {
    padding-bottom: 2rem
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }
}

@media (max-width:480px) {
  .hero-content {
    padding: 0 1rem
  }

  .hero-title {
    font-size: 2rem
  }

  .hero-description {
    font-size: 1rem
  }

  .football-field {
    width: 280px;
    height: 180px
  }

  .feature-card {
    padding: 1.5rem
  }

  .faq-item .faq-question {
    padding: 1.5rem
  }

  .faq-item .faq-answer {
    padding: 0 1.5rem
  }

  .faq-item.active .faq-answer {
    padding-bottom: 1.5rem
  }

  .feature-card h3 {
    font-size: 1.5rem
  }

  .stat-number {
    font-size: 2rem
  }

  .section-header {
    margin-bottom: 4rem
  }
}