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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00d4ff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00d4ff;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%), 
              url('sports-viewing.jpg') center/cover no-repeat;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Sections - Modern Design */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(0, 255, 136, 0.02) 50%, rgba(255, 107, 53, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #00d4ff;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  background: linear-gradient(45deg, #00d4ff, #00ff88, #00d4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease-in-out infinite;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  border-radius: 2px;
}

@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Features Grid - Modern Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

/* Image Enhancements */
.hero, .sports-section, [style*="background"] {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gallery-item img,
.device-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero, .sports-section, [style*="background"] {
    background-attachment: scroll;
    background-size: cover;
  }
  
  .gallery-item img {
    height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 180px;
  }
}

/* Add subtle animations */
.feature-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 50%, rgba(0, 255, 136, 0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #00d4ff;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #00ff88;
}

.feature-card p {
  line-height: 1.6;
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #e0e0e0;
}

/* Channel Grid */
.channel-category {
  margin-bottom: 3rem;
}

.channel-category h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #00ff88;
  border-bottom: 2px solid #00ff88;
  padding-bottom: 0.5rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.channel-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s;
}

.channel-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
}

/* Tutorial Steps */
.tutorial-section {
  margin-bottom: 3rem;
}

.tutorial-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #00ff88;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border-left: 4px solid #00d4ff;
  position: relative;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00d4ff;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #00d4ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Trust Section - Optimized and Reassuring Design */
.trust-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
}

.trust-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.trust-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00ff88, #ff6b35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
    font-weight: 700;
    line-height: 1.1;
}

.trust-intro .description {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.trust-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 212, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.trust-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.12));
    border: 3px solid #00ff88;
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.25);
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 255, 136, 0.3));
}

.trust-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    font-weight: 600;
}

.trust-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.3rem;
}

.quality-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1rem 0;
}

.quality-features li {
    padding: 0.3rem 0;
    color: #e0e0e0;
    font-weight: 500;
}

.support-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.badge {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.consultation-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 26, 26, 0.6));
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(15px);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-text h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultation-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    color: #00d4ff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.benefit-text span {
    color: #ccc;
    font-size: 0.9rem;
}

.consultation-cta {
    text-align: center;
}

.cta-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.cta-highlight h4 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cta-highlight p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-cta {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 1.2rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-cta:hover {
    background: linear-gradient(45deg, #00cc6a, #00a055);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}

.secondary-cta {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    border: 2px solid transparent;
}

.secondary-cta:hover {
    background: linear-gradient(45deg, #0099cc, #007aa3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.indicator-icon {
    font-size: 1.1rem;
    color: #00ff88;
}

.guarantee-section {
    text-align: center;
    margin-top: 4rem;
}

.guarantee-section h3 {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 255, 136, 0.3));
}

.guarantee-item h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.guarantee-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive Design for Trust Section */
@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-intro h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trust-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-card.featured {
        transform: none;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .trust-intro h2 {
        font-size: 1.9rem;
    }
    
    .consultation-text h3 {
        font-size: 1.6rem;
    }
    
    .primary-cta,
    .secondary-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-highlight {
        padding: 1rem;
    }
    
    .cta-highlight h4 {
        font-size: 1.2rem;
    }
}

.pricing-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.pricing-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00ff88, #ff6b35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
    font-weight: 700;
    line-height: 1.1;
}

.pricing-intro .description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(247, 147, 30, 0.08));
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 18px;
    padding: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.04));
    opacity: 0.6;
    pointer-events: none;
}

.pricing-highlight-content {
    position: relative;
    z-index: 2;
}

.pricing-highlight h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.pricing-highlight p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    justify-items: center;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transform-origin: center;
    min-height: 380px;
    height: auto;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 24px;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.6);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.12));
    border: 3px solid #00ff88;
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.3);
    transform: scale(1.02);
    order: 0;
    z-index: 10;
    position: relative;
}

.pricing-card.featured::after {
    content: "⭐ MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
    white-space: nowrap;
    z-index: 15;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: popularPulse 2s ease-in-out infinite;
}

@keyframes popularPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
    }
    50% { 
        transform: translateX(-50%) scale(1.05); 
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7);
    }
}

.plan-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
    letter-spacing: -0.3px;
}

.pricing-card.featured .plan-header h3 {
    background: linear-gradient(45deg, #00ff88, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.7rem;
}

.plan-badge {
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.18), rgba(0, 255, 136, 0.12));
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.35);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 12px rgba(0, 212, 255, 0.15);
}

.plan-badge.best-value {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    animation: pulseGlow 2s ease-in-out infinite;
    color: #fff;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 5px 18px rgba(255, 107, 53, 0.4);
    }
}

.plan-features {
    list-style: none;
    padding: 1.2rem;
    margin: 1rem 0 1.5rem 0;
    text-align: left;
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-features li {
    padding: 0.5rem 0;
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 450;
}

.plan-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plan-features li::before {
    content: "✨";
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 1px;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.5));
}

.plan-cta {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #000;
    padding: 1.2rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.plan-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-cta:hover::before {
    left: 100%;
}

.plan-cta:hover {
    background: linear-gradient(45deg, #0099cc, #007aa3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.featured-cta {
    background: linear-gradient(45deg, #00ff88, #00cc6a) !important;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4) !important;
}

.featured-cta:hover {
    background: linear-gradient(45deg, #00cc6a, #00a055) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5) !important;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 375px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-intro h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-intro .description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .pricing-highlight {
        padding: 1rem;
        margin: 0 -0.5rem 2rem;
        border-radius: 15px;
    }
    
    .pricing-highlight h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .pricing-highlight p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 -0.5rem 2rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        padding: 1.2rem;
        border-radius: 15px;
        margin: 0;
        min-height: 320px;
    }
    
    .plan-header {
        min-height: 60px;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
    
    .plan-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        border-radius: 15px;
    }
    
    .plan-features {
        margin: 1rem 0;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .plan-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
        line-height: 1.3;
        gap: 6px;
    }
    
    .plan-cta {
        padding: 1rem 1.3rem;
        font-size: 0.95rem;
        border-radius: 25px;
        letter-spacing: 0.5px;
    }
    
    .pricing-card.featured::after {
        font-size: 0.6rem;
        padding: 6px 14px;
        top: -10px;
    }
}

/* Standard Mobile (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .pricing-grid {
        gap: 1rem;
        margin: 0 -0.5rem 2.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        padding: 1.1rem;
        margin: 0;
        border-radius: 14px;
    }
    
    .plan-header h3 {
        font-size: 1.4rem;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 5px 11px;
    }
    
    .plan-features li {
        font-size: 0.82rem;
        padding: 0.35rem 0;
    }
    
    .plan-cta {
        padding: 0.95rem 1.4rem;
        font-size: 0.95rem;
    }
}

/* Standard Mobile (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.8rem;
    }
    
    .pricing-card {
        padding: 1.4rem;
        min-height: 340px;
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 700px;
        margin: 0 auto 3rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .pricing-card {
        padding: 1.8rem;
        min-height: 320px;
        max-height: 350px;
        max-width: 360px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
        grid-column: span 2;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .plan-header h3 {
        font-size: 1.7rem;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1400px;
    }
    
    .pricing-card {
        padding: 2rem 2rem;
        min-height: 350px;
        max-height: 380px;
        max-width: 380px;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .plan-header h3 {
        font-size: 1.8rem;
    }
    
    .plan-features li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
}

/* Pricing Help Section */
.pricing-help-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 255, 136, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pricing-help-section h4 {
    color: #00d4ff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.recommendation-content {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    text-align: left;
}

.rec-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rec-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.rec-text strong {
    color: #00ff88;
    display: block;
    margin-bottom: 0.2rem;
}

.help-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-actions .whatsapp-btn,
.help-actions .cta-button {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

/* Enhanced Mobile Responsive for Pricing Help */
@media (max-width: 375px) {
    .pricing-help-section {
        padding: 1rem;
        margin: 1.5rem -0.5rem 0;
        border-radius: 12px;
        border-width: 1px;
    }

    .pricing-help-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .recommendation-content {
        gap: 0.8rem;
    }

    .recommendation-item {
        padding: 0.7rem;
        gap: 0.6rem;
        border-radius: 10px;
        flex-direction: row;
        align-items: flex-start;
    }

    .rec-icon {
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .rec-text {
        font-size: 0.85rem;
        line-height: 1.3;
        text-align: left;
    }

    .rec-text strong {
        display: block;
        margin-bottom: 0.2rem;
        font-size: 0.87rem;
    }

    .help-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .help-actions .whatsapp-btn,
    .help-actions .cta-button {
        width: 100%;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }
}

@media (min-width: 376px) and (max-width: 480px) {
    .pricing-help-section {
        padding: 1.2rem;
        margin: 2rem -0.5rem 0;
        border-radius: 15px;
    }

    .pricing-help-section h4 {
        font-size: 1.25rem;
        margin-bottom: 1.3rem;
    }

    .recommendation-item {
        padding: 0.8rem;
        gap: 0.7rem;
    }

    .rec-icon {
        font-size: 1.2rem;
    }

    .rec-text {
        font-size: 0.87rem;
    }

    .help-actions .whatsapp-btn,
    .help-actions .cta-button {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .pricing-help-section {
        padding: 1.5rem;
        margin: 2.5rem -1rem 0;
        border-radius: 18px;
    }

    .pricing-help-section h4 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .recommendation-content {
        gap: 1rem;
        max-width: 500px;
    }

    .recommendation-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .rec-text {
        font-size: 0.9rem;
    }

    .help-actions {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .help-actions .whatsapp-btn,
    .help-actions .cta-button {
        flex: 1;
        max-width: 200px;
    }
}

@media (min-width: 769px) {
    .pricing-help-section {
        max-width: 800px;
        margin: 3rem auto 0;
        padding: 2rem;
    }

    .recommendation-content {
        max-width: 700px;
    }

    .recommendation-item {
        padding: 1.2rem;
    }

    .help-actions {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    scrollbar-color: #00d4ff #2a2a2a;
    position: relative;
    scroll-behavior: smooth;
    
    /* Améliorations pour mobile */
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.comparison-table-container::-webkit-scrollbar {
    height: 12px;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 6px;
}

.comparison-table-container::-webkit-scrollbar-track {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 6px;
    margin: 0 10px;
}

.comparison-table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 6px;
    border: 2px solid rgba(42, 42, 42, 0.3);
    min-width: 50px;
}

.comparison-table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00b8e6, #00e673);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.comparison-table-container::-webkit-scrollbar-thumb:active {
    background: linear-gradient(45deg, #0099cc, #00cc6a);
}

/* Indicateurs de scroll */
.comparison-table-container::before,
.comparison-table-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-table-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.8), transparent);
    border-radius: 20px 0 0 20px;
}

.comparison-table-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(26, 26, 26, 0.8), transparent);
    border-radius: 0 20px 20px 0;
}

.comparison-table-container.can-scroll-left::before {
    opacity: 1;
}

.comparison-table-container.can-scroll-right::after {
    opacity: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.8));
    border-radius: 20px;
    overflow: hidden;
    min-width: 1000px;
}

.comparison-table th {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    color: #000;
    padding: 1.5rem 1rem;
    font-weight: bold;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.comparison-table th:first-child {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #00d4ff;
    text-align: left;
    padding-left: 2rem;
    border-right: 2px solid rgba(0, 212, 255, 0.3);
}

/* Category row styling */
.comparison-table tr[style*="background: rgba(0, 212, 255, 0.1)"] td,
.comparison-table tr[style*="background: rgba(0, 255, 136, 0.1)"] td,
.comparison-table tr[style*="background: rgba(255, 107, 53, 0.1)"] td,
.comparison-table tr[style*="background: rgba(255, 215, 0, 0.1)"] td,
.comparison-table tr[style*="background: rgba(50, 205, 50, 0.1)"] td,
.comparison-table tr[style*="background: rgba(139, 69, 19, 0.1)"] td {
    font-weight: bold !important;
    font-size: 1.1rem !important;
    letter-spacing: 1px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Device compatibility section styling */
.comparison-table tr[style*="background: rgba(139, 69, 19, 0.1)"] td {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(160, 90, 44, 0.1)) !important;
    color: #deb887 !important;
    text-align: center !important;
}

.comparison-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    vertical-align: top;
    line-height: 1.4;
}

.comparison-table td:first-child {
    font-weight: bold;
    color: #fff;
    text-align: left;
    padding-left: 2rem;
    background: rgba(0, 212, 255, 0.08);
    border-right: 2px solid rgba(0, 212, 255, 0.2);
}

.comparison-table td:first-child strong {
    color: #00d4ff;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.comparison-table td:first-child small {
    color: #888;
    font-size: 0.8rem;
    font-weight: normal;
}

/* Row hover effects */
.comparison-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.12) !important;
    transform: scale(1.01);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

/* Feature status styling */
.comparison-table .check-mark {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.comparison-table .cross-mark {
    color: #ff4757;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.comparison-table .feature-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Best value column highlight */
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
    background: rgba(255, 107, 53, 0.15) !important;
    border-left: 3px solid #ff6b35;
    border-right: 3px solid #ff6b35;
    position: relative;
}

.comparison-table th:nth-child(4) {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.comparison-table td:nth-child(4) .feature-text {
    color: #fff;
    font-weight: bold;
}

/* Enhanced visual hierarchy */
.comparison-table tbody tr:nth-child(odd) {
    background: rgba(0, 212, 255, 0.02);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(0, 255, 136, 0.02);
}

/* Device Usage Section Styles */
.device-usage-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    position: relative;
}

.device-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.device-info h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.device-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.device-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.usage-benefits {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.usage-benefits h4 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.benefit-item h5 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.device-image {
    text-align: center;
}

.device-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.device-image img:hover {
    transform: scale(1.05);
}

.image-caption {
    margin-top: 1rem;
}

.image-caption p {
    color: #00d4ff;
    font-style: italic;
    font-size: 1.1rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #00d4ff;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

/* Section Variations for Better Visual Hierarchy */
.section.alternate {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
  position: relative;
}

.section.alternate::before {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 212, 255, 0.03) 50%, rgba(255, 107, 53, 0.03) 100%);
}

.section.highlight {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 255, 136, 0.08) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.section.highlight .section-title {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #00d4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content Spacing Improvements */
.section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #ccc;
}

.section .description {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Mobile Navigation */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.98));
    z-index: 9999;
    backdrop-filter: blur(15px);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-overlay .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
}

.mobile-menu-overlay .nav-links a {
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-menu-overlay .nav-links a:hover,
.mobile-menu-overlay .nav-links a:focus {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-menu:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: rotate(90deg);
}

/* Header improvements for mobile */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }

    .logo {
        font-size: 1.6rem;
        font-weight: 700;
        background: linear-gradient(45deg, #00d4ff, #00ff88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .mobile-menu {
        background: rgba(0, 212, 255, 0.1);
        border: 2px solid rgba(0, 212, 255, 0.3);
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .mobile-menu:hover {
        background: rgba(0, 212, 255, 0.2);
        border-color: #00d4ff;
        transform: scale(1.05);
    }

    /* Add spacing for fixed header */
    main {
        margin-top: 70px;
    }
}

/* Améliorations générales UX */
* {
    scroll-behavior: smooth;
}

.cta-button,
.plan-cta,
.whatsapp-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before,
.plan-cta::before,
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.plan-cta:hover::before,
.whatsapp-btn:hover::before {
    left: 100%;
}

/* Loading states et animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive amélioré */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .device-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tutorial Navigation Styles */
.tutorial-navigation {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.tutorial-navigation h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-item {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
    color: #00ff88;
}

/* Tutorial Section Improvements */
.tutorial-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #00d4ff;
}

.tutorial-section h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recommended-apps {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.recommended-apps h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.recommended-apps ul {
    list-style: none;
    padding: 0;
}

.recommended-apps li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recommended-apps li:last-child {
    border-bottom: none;
}

.steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 3px solid #00ff88;
}

.step h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step ul {
    margin: 0;
    padding-left: 1.5rem;
}

.step li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.step strong {
    color: #00d4ff;
}

/* Enhanced Feature Cards for Tutorial */
.tutorial-section .feature-card {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid #ff6b35;
}

.tutorial-section .feature-card h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* Modern Section Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  
  .section-title::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }
  
  .section .description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .features-grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }
  
  .section .description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .feature-card {
    padding: 1.8rem 1.2rem;
    border-radius: 18px;
  }
  
  .feature-icon {
    font-size: 2.8rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
}

/* Enhanced Mobile Responsiveness - Mobile First Approach */

/* Base styles for very small screens (320px+) */
@media (max-width: 375px) {
    .container {
        padding: 0 0.8rem;
        max-width: 100%;
    }

    .hero {
        padding: 90px 0 50px;
        text-align: center;
        min-height: 70vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 35px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }

    .section .description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .feature-card {
        padding: 1.2rem 1rem;
        margin-bottom: 0.8rem;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta-button,
    .whatsapp-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0.8rem 0;
        display: block;
        text-align: center;
        border-radius: 25px;
        font-weight: 700;
        letter-spacing: 0.3px;
        box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.3rem 0.15rem;
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .device-showcase {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-item img {
        height: 180px;
        border-radius: 12px;
    }

    /* Improved touch targets for mobile */
    .nav-links a,
    .mobile-menu,
    button,
    .plan-cta {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }

    /* Enhanced mobile typography */
    body {
        font-size: 15px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    /* Better mobile spacing */
    .features-grid {
        gap: 1rem;
        padding: 0 0.2rem;
    }

    /* Mobile-specific optimizations */
    .trust-section {
        padding: 50px 0;
    }

    .trust-card {
        padding: 1.2rem 1rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }

    .trust-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .trust-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Mobile navigation improvements */
    header {
        padding: 0.6rem 0;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    }

    .logo {
        font-size: 1.4rem;
        font-weight: 800;
    }

    .mobile-menu {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(0, 212, 255, 0.15);
        border: 2px solid rgba(0, 212, 255, 0.3);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .mobile-menu:active {
        transform: scale(0.95);
        background: rgba(0, 212, 255, 0.25);
    }

    /* Mobile menu overlay improvements */
    .mobile-menu-overlay.active .nav-links {
        gap: 1rem;
        padding: 1.5rem 1rem;
        max-width: 280px;
    }

    .mobile-menu-overlay .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
        border-radius: 12px;
        font-weight: 600;
        background: rgba(0, 212, 255, 0.12);
        border: 2px solid rgba(0, 212, 255, 0.25);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .close-menu {
        width: 48px;
        height: 48px;
        top: 1rem;
        right: 1rem;
        font-size: 1.3rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
    }

    /* Enhanced form elements for mobile */
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
        border: 2px solid rgba(0, 212, 255, 0.3);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }

    /* Better button spacing and sizing */
    .primary-cta,
    .secondary-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 25px;
        margin: 0.6rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Optimized images for mobile */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Better footer for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        display: block;
    }
}

/* Small mobile devices (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 75vh;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        font-weight: 800;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .section .description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }

    .feature-card,
    .pricing-card {
        padding: 1.4rem 1.2rem;
        border-radius: 18px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

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

    .cta-button,
    .whatsapp-btn {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 30px;
        margin: 1rem 0;
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .gallery-item img {
        height: 200px;
        border-radius: 14px;
    }

    .trust-card {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    .trust-card h3 {
        font-size: 1.2rem;
    }

    .trust-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    /* Better mobile navigation */
    .mobile-menu {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 14px;
    }

    .mobile-menu-overlay .nav-links {
        max-width: 300px;
        gap: 1.2rem;
    }

    .mobile-menu-overlay .nav-links a {
        font-size: 1.2rem;
        padding: 1.1rem 1.3rem;
        border-radius: 14px;
    }

    /* Enhanced forms */
    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        border-radius: 14px;
    }

    /* Better button interactions */
    .primary-cta,
    .secondary-cta {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 30px;
        margin: 0.8rem 0;
        min-height: 50px;
    }
}

/* Standard mobile devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 1.2rem;
        max-width: 100%;
    }

    .hero {
        padding: 110px 0 70px;
        background-attachment: scroll;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        font-weight: 800;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.2rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }

    .section .description {
        font-size: 1.05rem;
        margin-bottom: 2.8rem;
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .feature-card {
        padding: 1.8rem 1.4rem;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.2);
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
        line-height: 1.2;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 1.3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 450px;
        margin: 0 auto 3rem;
        padding: 0 0.5rem;
    }

    .pricing-card {
        max-width: 100%;
        padding: 1.8rem 1.4rem;
        border-radius: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        border-radius: 16px;
        overflow: hidden;
    }

    .gallery-item img {
        height: 220px;
        border-radius: 0;
    }

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

    .device-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .device-features li {
        font-size: 1rem;
        padding: 0.7rem 0;
        line-height: 1.4;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    /* Enhanced buttons for mobile */
    .cta-button,
    .whatsapp-btn {
        padding: 18px 28px;
        font-size: 1.05rem;
        border-radius: 30px;
        width: 100%;
        max-width: 320px;
        margin: 1.2rem auto;
        display: block;
        font-weight: 700;
        letter-spacing: 0.3px;
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
        transition: all 0.3s ease;
    }

    .cta-button:active,
    .whatsapp-btn:active {
        transform: scale(0.98);
    }

    /* Trust section mobile optimization */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .trust-card {
        padding: 1.6rem 1.3rem;
        border-radius: 20px;
    }

    .trust-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .trust-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Better mobile navigation */
    .mobile-menu {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        border-radius: 16px;
        background: rgba(0, 212, 255, 0.12);
        border: 2px solid rgba(0, 212, 255, 0.25);
    }

    .mobile-menu-overlay .nav-links {
        max-width: 320px;
        gap: 1.3rem;
        padding: 2rem 1.5rem;
    }

    .mobile-menu-overlay .nav-links a {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
        border-radius: 16px;
        font-weight: 600;
    }

    /* Better comparison table mobile scroll */
    .comparison-table-container {
        margin: 2rem -1.2rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .comparison-table {
        border-radius: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    /* Enhanced forms for mobile */
    .form-group input,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 16px;
        border: 2px solid rgba(0, 212, 255, 0.25);
    }

    /* Better consultation section */
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .primary-cta,
    .secondary-cta {
        padding: 16px 24px;
        font-size: 1.05rem;
        border-radius: 30px;
        margin: 0.8rem 0;
        min-height: 52px;
        width: 100%;
        max-width: 300px;
    }
}

/* All mobile devices (up to 768px) */
@media (max-width: 768px) {
    /* Optimize performance for mobile */
    * {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
        touch-action: manipulation;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 212, 255, 0.12);
        border: 2px solid rgba(0, 212, 255, 0.25);
        color: white;
        font-size: 1.4rem;
        cursor: pointer;
        z-index: 10000;
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        touch-action: manipulation;
    }

    .mobile-menu:active {
        transform: scale(0.95);
        background: rgba(0, 212, 255, 0.2);
    }

    /* Enhanced mobile content spacing */
    main {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }

    .legal-content {
        padding: 1.2rem;
        margin: 0 0.8rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 0.8rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(0, 212, 255, 0.2);
    }

    /* Optimized comparison table for mobile */
    .comparison-table-container {
        margin: 1.5rem -1rem;
        border-radius: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        position: relative;
        scroll-behavior: smooth;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .comparison-table-container::after {
        content: "← Balayez horizontalement →";
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(45deg, #00d4ff, #00ff88);
        color: #000;
        padding: 6px 14px;
        border-radius: 18px;
        font-size: 0.7rem;
        font-weight: 700;
        pointer-events: none;
        opacity: 0.9;
        z-index: 15;
        box-shadow: 0 3px 12px rgba(0, 212, 255, 0.4);
        animation: scrollHint 4s ease-in-out infinite;
        white-space: nowrap;
        letter-spacing: 0.3px;
    }

    @keyframes scrollHint {
        0%, 60%, 100% { 
            opacity: 0.9; 
            transform: translateX(-50%) scale(1); 
        }
        30% { 
            opacity: 1; 
            transform: translateX(-50%) scale(1.02); 
        }
    }

    .comparison-table {
        border-radius: 16px;
        min-width: 700px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.9));
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Enhanced gallery for mobile */
    .gallery-overlay {
        position: static;
        transform: none;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.9));
        padding: 1.2rem;
        border-radius: 0 0 14px 14px;
        backdrop-filter: blur(8px);
    }

    .gallery-item {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:active img {
        transform: scale(1.02);
    }

    .device-features li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        line-height: 1.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .usage-benefits {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
    }

    /* Tutorial Mobile Responsive */
    .nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.8rem;
    }

    .nav-item {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
        border-radius: 12px;
        background: rgba(0, 255, 136, 0.12);
        border: 2px solid rgba(0, 255, 136, 0.25);
        transition: all 0.3s ease;
        text-align: center;
        line-height: 1.3;
    }

    .nav-item:active {
        transform: scale(0.98);
        background: rgba(0, 255, 136, 0.2);
    }

    .tutorial-section {
        padding: 1.8rem 1.2rem;
        margin-bottom: 1.8rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(0, 212, 255, 0.15);
    }

    .tutorial-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }

    .step {
        padding: 1.2rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
        border-left: 4px solid #00ff88;
        margin-bottom: 1rem;
    }

    .step h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .recommended-apps {
        padding: 1.2rem;
        border-radius: 14px;
        background: rgba(0, 255, 136, 0.12);
        border: 2px solid rgba(0, 255, 136, 0.2);
    }

    .tutorial-navigation {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
        background: rgba(0, 212, 255, 0.12);
        backdrop-filter: blur(10px);
    }

    /* Enhanced mobile forms */
    .form-group {
        margin-bottom: 1.8rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: #00d4ff;
        font-weight: 600;
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 16px 18px;
        border: 2px solid rgba(0, 212, 255, 0.25);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 16px; /* Prevents zoom on iOS */
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #00d4ff;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    }

    /* Optimized animations for mobile */
    .feature-card,
    .pricing-card,
    .trust-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-card:active,
    .pricing-card:active,
    .trust-card:active {
        transform: scale(0.98);
    }

    /* Better scroll behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Enhanced touch feedback */
    .cta-button:active,
    .whatsapp-btn:active,
    .plan-cta:active {
        transform: scale(0.97);
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }

    /* Mobile-specific utilities */
    .text-mobile-center {
        text-align: center;
    }

    .margin-mobile-auto {
        margin-left: auto;
        margin-right: auto;
    }

    /* Prevent text selection on buttons */
    .mobile-menu,
    .cta-button,
    .whatsapp-btn,
    .plan-cta {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* Tablets portrait (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .section {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.6rem;
    }

    .device-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Tablets landscape and small laptops (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

/* Large screens (1201px+) */
@media (min-width: 1201px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

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

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

/* Ultra-wide screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1300px;
        margin: 0 auto;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .plan-cta,
    .whatsapp-btn,
    .nav-item {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }

    .feature-card:hover,
    .pricing-card:hover,
    .gallery-item:hover {
        transform: none;
    }

    .mobile-menu {
        min-height: 44px;
        min-width: 44px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero,
    .sports-section,
    [style*="background"] {
        background-size: cover;
        background-position: center;
    }
}

/* Print styles */
@media print {
    .hero,
    .mobile-menu,
    .whatsapp-btn,
    .cta-button,
    .chatbot-container,
    footer {
        display: none !important;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }

    .comparison-table {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .feature-card,
    .pricing-card {
        padding: 1.2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.3rem 0.1rem;
        font-size: 0.7rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-button,
    .plan-cta,
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Améliorations pour les tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        font-size: 0.85rem;
    }
}

/* Accessibilité et focus states */
.cta-button:focus,
.plan-cta:focus,
.whatsapp-btn:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Performance optimizations */
* {
    /* Prevent excessive repaints */
    will-change: auto;
}

.feature-card, .pricing-card {
    /* Optimize animations */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Performance - réduction des animations sur mobile */
@media (max-width: 768px) {
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }

    .hero::before {
        display: none;
    }
    
    /* Reduce complexity on mobile */
    .feature-card::before,
    .pricing-card::before {
        display: none;
    }
    
    /* Disable expensive effects */
    .feature-card:hover,
    .pricing-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Prevent layout shifts */
img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/* Optimize scrolling */
.comparison-table-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    contain: layout style paint;
}

/* Optimisation pour écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero,
    .sports-section,
    [style*="background"] {
        background-size: cover;
        background-position: center;
    }
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  line-height: 1.8;
}

.legal-content h2 {
  color: #00d4ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #00ff88;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #ccc;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}