/* HOME.CSS — AIRSHADOW Homepage Industrielle */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* GOLD HIGHLIGHT */
.gold-highlight {
  color: #D4AF37;
  position: relative;
}

.hero-logo-img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  display: block;
}

@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 250px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.count-item {
  text-align: center;
}

.count-item span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.count-item label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: #fff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 .highlight {
  color: rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 0;
  background: #050505;
}

/* DEMO SECTION */
.demo-section {
  padding: 100px 0;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.demo-video video {
  width: 100%;
  height: auto;
  display: block;
}

.demo-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.demo-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}

.step-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.step-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* COMPETITIVE JOURNEY SECTION */
.competitive-section {
  padding: 100px 0;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.journey-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s ease;
}

.journey-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.02);
}

.playoffs-card {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.15);
}

.journey-step {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.journey-step.gold {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #000;
}

.journey-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.journey-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.journey-card p strong {
  color: #fff;
  font-weight: 600;
}

.warning-text strong {
  color: #e63946 !important;
}

.pyramid-list {
  list-style: none;
  padding: 0;
}

.pyramid-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.pyramid-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4AF37;
}

.pyramid-list li strong {
  color: #fff;
}

.integrity-banner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.integrity-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.integrity-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.integrity-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.integrity-content strong {
  color: #fff;
}

@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .integrity-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 0;
  background: #050505;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.section-title .highlight {
  color: rgba(255, 255, 255, 0.4);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.amount {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.currency {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
}

.period {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.save {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.pricing-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-btn.primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pricing-btn.primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* FEATURES SECTION */
.features-section {
  padding: 100px 0;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .countdown {
    gap: 15px;
  }
  
  .count-item span {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .demo-content h2 {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 20px;
  }
}
