@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
  }
  
  body {
    color: white;
  }

  
  /* ================= NAVBAR ================= */
  
  .navbar {
    position: absolute;
    width: 100%;
    top: 0;
    padding: 20px 0;
    z-index: 10;
  }
  
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .logo-img {
    width: 50px;
    height: auto;
    display: block;
  }
  
  .nav-links a {
    margin: 0 15px;
    color: #cfcfe6;
    text-decoration: none;
    font-size: 14px;
  }
  
  .nav-links a:hover {
    color: white;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
  }
  
  .nav-actions .login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .nav-actions .login svg {
    flex-shrink: 0;
  }
  
  .login {
    color: #cfcfe6;
    text-decoration: none;
  }
  
  /* ================= NAVBAR RESPONSIVE ================= */
  @media (max-width: 767px) {
    .navbar {
      padding: 12px 0;
    }
    .nav-wrapper {
      gap: 12px;
    }
    .logo-img {
      width: 40px;
    }
    .nav-actions {
      gap: 10px;
    }
    .nav-actions .login span {
      display: none;
    }
    .nav-actions .login {
      padding: 8px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
    }
    .nav-actions .btn-plans {
      padding: 8px 14px;
      font-size: 13px;
    }
  }
  
  @media (max-width: 400px) {
    .logo-img {
      width: 36px;
    }
    .nav-actions .btn-plans {
      padding: 8px 12px;
      font-size: 12px;
    }
  }
  
  .btn-primary {
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(45deg,#8b5cf6,#6366f1);
    color: white;
    font-size: 14px;
  }
  .container{
    max-width: 1320px;
  }
  /* ================= HERO BACKGROUND ================= */
  
  .hero {
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  
  /* ================= HERO CONTENT ================= */
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-trust {
    margin-bottom: 20px;
  }
  .hero-trust-logo {
    width: 112px;
    height: auto;
    display: block;
    margin-bottom: 8px;
  }
  .hero-trust-stars {
    width: 160px;
    height: auto;
    display: block;
  }
  @media (min-width: 640px) {
    .hero-trust-logo {
      width: 144px;
    }
    .hero-trust-stars {
      width: 208px;
    }
  }

  .hero-left h1 {
    font-size: 68px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-left span {
    color: #a855f7;
  }
  
  .hero-left p {
    color: #b3b3cc;
    margin-bottom: 30px;
  }
  
  .cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    margin-bottom: 30px;
  }
  
  /* users */
  .users {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #08080f;
    margin-left: -8px;
  }
  
  /* ================= GLASS CARDS ================= */
  
  .hero-right {
    position: relative;
  }
  
  .glass-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    width: 220px;
  }
  
  .balance h2 {
    font-size: 28px;
    margin-top: 10px;
  }
  
  .payment h3 {
    font-size: 26px;
    margin: 10px 0;
  }
  
  .payment button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
  }

  /* Hero right : stats en glass-card (chaînes, VOD, rapidité, qualité) */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .glass-card-stat {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
  }
  .glass-card-stat .glass-card-label {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .glass-card-stat .glass-card-value {
    margin: 8px 0 0 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }
  @media (min-width: 992px) {
    .hero-stats {
      gap: 20px;
    }
    .glass-card-stat .glass-card-value {
      font-size: 26px;
    }
  }

  /* ================= HERO RESPONSIVE MOBILE ================= */
  @media (max-width: 991px) {
    .hero {
      padding: 100px 0 60px;
      min-height: auto;
    }
    .hero-content {
      text-align: left;
    }
    .hero-content .row {
      flex-direction: column;
      gap: 0;
    }
    .hero-left {
      margin-bottom: 32px;
    }
    .hero-trust {
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .hero-trust-logo {
      width: 100px;
    }
    .hero-trust-stars {
      width: 140px;
    }
    .hero-left h1 {
      font-size: 36px;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .hero-left h1 svg {
      width: 28px;
      height: auto;
      max-height: 22px;
      vertical-align: middle;
    }
    .hero-left p.col-md-8,
    .hero-left p {
      font-size: 15px;
      margin-bottom: 24px;
      max-width: 100%;
      width: 100%;
    }
    .hero-left .cta {
      display: block;
      width: 100%;
      text-align: center;
      margin-bottom: 24px;
      padding: 14px 28px;
      font-size: 15px;
      box-sizing: border-box;
    }
    .hero-left .users {
      justify-content: flex-start;
    }
    .hero-right {
      max-width: 100%;
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .hero-stats {
      grid-template-columns: 1fr;
      gap: 12px;
      width: 100%;
    }
    .glass-card-stat {
      width: 100%;
    }
    .glass-card-stat .glass-card-label {
      font-size: 11px;
    }
    .glass-card-stat .glass-card-value {
      font-size: 18px;
    }
  }

  @media (max-width: 575px) {
    .hero {
      padding: 110px 0 50px;
    }
    .hero-left h1 {
      font-size: 33px;
    }
    .hero-left h1 svg {
      width: 24px;
      max-height: 18px;
    }
    .hero-left p {
      font-size: 14px;
    }
    .hero-right {
      max-width: 100%;
      width: 100%;
    }
    .glass-card-stat .glass-card-value {
      font-size: 16px;
    }
    .container{
      padding: 0 20px;
    }
  }

  .btn-plans{
    padding: 10px 20px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #ffffff;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  /* ================= PAYMENT METHODS SECTION ================= */
  
  .payment-methods {
    padding: 80px 0;
    background: white;
  }
  
  .payment-methods-title {
    text-align: center;
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
  }
  
  .payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  /* Mobile : 2 par 2 (2 colonnes) */
  .payment-logo-box {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    box-sizing: border-box;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    height: 80px;
  }

  /* Desktop : toute la ligne (une seule ligne) */
  @media (min-width: 768px) {
    .payment-logos {
      flex-wrap: nowrap;
      gap: 30px;
    }
    .payment-logo-box {
      flex: 0 0 auto;
      max-width: none;
      min-width: 140px;
      padding: 5px 20px;
    }
  }
  
  .payment-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  
  .payment-logo-box img {
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(0);
  }
  
  /* ================= FEATURES SECTION ================= */
  
  .features {
    padding: 20px 0;
    background: white;
    position: relative;
  }
  
  .features-content {
    position: relative;
  }
  
  .feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    height: 100%;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    position: relative;
  }
  
  .feature-icon::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: white;
    z-index: 1;
  }
  
  .feature-icon svg {
    position: relative;
    z-index: 2;
    color: #1a1a1a;
  }
  
  .feature-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .feature-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
  }



  /* ================= SERIES FILMS CAROUSEL ================= */
  /* Infinite marquee for sports carousel */
.sports-carousel {
    margin-top: 40px;
}

.league-carousel {
    margin-top: 40px;
}

.sports-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sports-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    animation: scroll-left 25s linear infinite;
}

.series-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    animation: scroll-left 50s linear infinite;
    margin-bottom: 40px;
}

.sports-item {
    flex: 0 0 auto;
    width: 210px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.sports-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Channels carousel (left -> right) */
.channel-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.channel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: fit-content;
    animation: scroll-left 25s linear infinite reverse;
}

.channel-item {
    flex: 0 0 auto;
    width: 120px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.channel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.slider-section {
    padding: 40px 0;
}

.carousel-edge-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right,
            #f8fafc 0%,
            rgba(248, 250, 252, 0.8) 40%,
            rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.carousel-edge-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to left,
            #f8fafc 0%,
            rgba(248, 250, 252, 0.8) 40%,
            rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.sport-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: transparent;
    background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/* ================= REVIEWS CAROUSEL (autoplay infini) ================= */
.reviews-section {
    padding: 60px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.reviews-section .pricing-section-title {
    margin-bottom: 40px;
}

.reviews-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 24px;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: fit-content;
    animation: reviews-scroll 20s linear infinite;
    margin-bottom: 40px;
}

.review-card {
    flex: 0 0 auto;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Image en haut de la carte (bannière) */
.review-img-wrap {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #ff9f43, #ff5ea8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9f43, #ff5ea8);
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.review-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-text {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.review-name {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

@keyframes reviews-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= COMMENT ÇA MARCHE ================= */

/* Comment ça marche - ton thème et tes couleurs */
.how-it-works-section {
    padding: 80px 0;
}

.how-it-works-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 48px;
    color: transparent;
    background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.how-step-card {
    background: #f7f7f7ff;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Numéro : fond blanc + bordure dégradé (comme les cartes en haut) */
.how-step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #ff9f43, #ff5ea8, #5a5cff);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border: 3px solid transparent;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.how-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.how-step-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.how-cta-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 32px 40px;
    background: #f7f7f7ff;
    border-radius: 16px;
    text-align: center;
}

.how-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.how-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.how-cta-btn:hover {
    background: linear-gradient(135deg, #ea580c, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    color: white;
    transform: translateY(-2px);
}

/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 100px 0 0 0;
    background: #ffffff;
}
.pricing-section-title{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: transparent;
    background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.pricing-card {
    background: #f7f7f7ff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card-popular {
    border: 1px solid #a855f7;
}

.pricing-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 20px;
    background: linear-gradient(135deg, #fce7f3, #f3e8ff);
    color: #1a1a1a;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.15);
}

.popular-badge svg {
    flex-shrink: 0;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
    color: transparent;
    background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    margin-left: 5px;
}

.pricing-btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    background: #1a1a1a;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.pricing-btn-gradient {
  background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
}

.pricing-btn-gradient:hover {
    background: linear-gradient(135deg, #ea580c, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1a1a1a;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.devices-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 0px 50px 50px 50px;
  justify-items: center;
  align-items: stretch;
}

.device-card {
  background: #f7f7f7ff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1.8/1;
  padding: 5px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.device-card img {
  display: block;
  max-height: 50px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1100px) {
  
  .devices-showcase-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 0;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .devices-showcase-section {
      padding: 40px 0 30px 0;
  }
  
  .devices-showcase-title {
      font-size: 28px;
      margin-bottom: 30px;
      letter-spacing: -0.3px;
  }
  
  .devices-showcase-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 0;
  }
  
  .device-card {
      border-radius: 12px;
      padding: 12px;
      aspect-ratio: 1.6/1;
  }
  
  .device-card img {
      max-height: 36px;
  }
}

/* Very small mobile */
@media (max-width: 400px) {
  .devices-showcase-title {
      font-size: 24px;
  }
  
  .devices-showcase-grid {
      gap: 10px;
      padding: 0;
  }
  
  .device-card {
      padding: 10px;
  }
  
  .device-card img {
      max-height: 32px;
  }
}

/* ================= FAQ (style premium, ton thème) ================= */
.faq-section {
  padding: 80px 0 100px;
}

.faq-section .pricing-section-title {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  background: #f7f7f7ff;
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  color: #1a1a1a;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 24px 28px;
  padding-top: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.faq-item.open .faq-answer p {
  padding-top: 0;
  padding-bottom: 24px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(180deg, #1a1a1e 0%, #0f0f12 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  width: 48px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 220px;
  margin: 0;
}

.footer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-payment-logos img {
  height: 28px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-bottom {
  padding: 24px 0 32px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-tagline {
    max-width: 100%;
  }
  .footer-payment-logos img {
    height: 24px;
  }
}

/* ================= PAGES LÉGALES (style site) ================= */
body:has(.legal-page) {
  background: #fcfeff;
}

.navbar-legal {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.navbar-legal .login,
.navbar-legal .login span {
  color: #1a1a1a;
}

.navbar-legal .btn-plans {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.navbar-legal .btn-plans:hover {
  background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
  border-color: transparent;
  color: #fff;
}

.legal-page {
  padding-bottom: 60px;
}

.legal-hero {
  padding: 100px 0 40px;
  background: linear-gradient(180deg, #f8f7ff 0%, #fefbfd 40%, #fcfeff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-page-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: transparent;
  background: linear-gradient(90deg, #ff9f43 0%, #ff5ea8 50%, #5a5cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-page-intro {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.legal-content {
  padding: 48px 0;
}

.container-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.legal-content a {
  color: #5a5cff;
  text-decoration: none;
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-contact {
  margin-top: 32px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px !important;
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 80px 0 32px;
  }
  .legal-page-title {
    font-size: 26px;
  }
  .legal-content {
    padding: 32px 0;
  }
  .legal-content h2 {
    font-size: 18px;
    margin-top: 24px;
  }
}

/* ================= RÉVISION RESPONSIVE - TABLETTE & TÉLÉPHONE ================= */

/* Tablette */
@media (max-width: 991px) {
  .features {
    padding: 40px 0 30px;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-card p {
    font-size: 15px;
  }
  .slider-section {
    padding: 32px 0;
  }
  .sport-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .sports-item {
    width: 180px;
    height: 300px;
  }
  .series-track {
    margin-bottom: 28px;
  }
  .channel-item {
    width: 100px;
    height: 48px;
  }
  .channel-track {
    gap: 28px;
  }
  .carousel-edge-left,
  .carousel-edge-right {
    width: 40px;
  }
  .pricing-section {
    padding: 60px 0 0;
  }
  .pricing-section-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-title {
    font-size: 24px;
  }
  .price-amount {
    font-size: 38px;
  }
  .how-it-works-section {
    padding: 60px 0;
  }
  .how-it-works-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .how-step-card {
    padding: 28px 22px;
  }
  .how-step-title {
    font-size: 18px;
  }
  .how-cta-box {
    padding: 28px 24px;
  }
  .how-cta-text {
    font-size: 16px;
  }
  .payment-methods {
    padding: 60px 0;
  }
  .payment-methods-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .reviews-section {
    padding: 48px 0 60px;
  }
  .reviews-section .pricing-section-title {
    margin-bottom: 28px;
  }
  .review-card {
    width: 280px;
  }
  .review-img-wrap {
    height: 140px;
  }
  .review-card-body {
    padding: 16px 20px 20px;
  }
  .review-text {
    font-size: 13px;
  }
  .faq-section {
    padding: 60px 0 80px;
  }
  .faq-section .pricing-section-title {
    margin-bottom: 36px;
  }
  .faq-question {
    padding: 18px 22px;
  }
  .faq-question span {
    font-size: 14px;
  }
  .faq-answer p {
    padding: 0 22px 20px 22px;
    font-size: 14px;
  }
}

/* Téléphone */
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features {
    padding: 32px 0 24px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .slider-section {
    padding: 24px 0;
  }
  .sport-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .sports-carousel,
  .league-carousel {
    margin-top: 24px;
  }
  .sports-item {
    width: 150px;
    height: 260px;
  }
  .series-track {
    gap: 14px;
    margin-bottom: 20px;
  }
  .channel-item {
    width: 80px;
    height: 40px;
  }
  .channel-track {
    gap: 20px;
  }
  .carousel-edge-left,
  .carousel-edge-right {
    width: 24px;
  }
  .pricing-section {
    padding: 48px 0 0;
  }
  .pricing-section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .pricing-card {
    padding: 24px 20px;
  }
  .pricing-title {
    font-size: 22px;
    margin-top: 16px;
  }
  .pricing-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .pricing-price {
    margin-bottom: 20px;
  }
  .price-amount {
    font-size: 34px;
  }
  .price-period {
    font-size: 15px;
  }
  .pricing-features li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .pricing-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  .popular-badge {
    padding: 6px 12px;
    font-size: 11px;
    left: 12px;
  }
  .how-it-works-section {
    padding: 48px 0 56px;
  }
  .how-it-works-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .how-step-card {
    padding: 24px 20px;
  }
  .how-step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 14px;
  }
  .how-step-title {
    font-size: 17px;
  }
  .how-step-desc {
    font-size: 14px;
  }
  .how-cta-box {
    padding: 24px 20px;
    margin: 0 16px;
  }
  .how-cta-text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .how-cta-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  .payment-methods {
    padding: 48px 0;
  }
  .payment-methods-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .reviews-section {
    padding: 40px 0 48px;
  }
  .reviews-section .pricing-section-title {
    margin-bottom: 24px;
    font-size: 22px;
  }
  .review-card {
    width: 260px;
  }
  .review-img-wrap {
    height: 120px;
  }
  .review-card-body {
    padding: 14px 18px 18px;
  }
  .review-stars {
    font-size: 12px;
  }
  .review-text {
    font-size: 13px;
  }
  .review-name {
    font-size: 12px;
  }
  .reviews-track {
    gap: 16px;
  }
  .faq-section {
    padding: 48px 0 64px;
  }
  .faq-section .pricing-section-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .faq-list {
    margin: 0 -16px;
    border-radius: 12px;
  }
  .faq-question {
    padding: 16px 18px;
  }
  .faq-question span {
    font-size: 13px;
  }
  .faq-answer p {
    padding: 0 18px 16px 18px;
    font-size: 13px;
  }
}

/* Très petit téléphone */
@media (max-width: 575px) {
  .sport-title {
    font-size: 20px;
  }
  .sports-item {
    width: 130px;
    height: 220px;
  }
  .channel-item {
    width: 70px;
    height: 36px;
  }
  .pricing-section-title {
    font-size: 22px;
  }
  .price-amount {
    font-size: 30px;
  }
  .review-card {
    width: 240px;
  }
  .review-img-wrap {
    height: 100px;
  }
}