/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Section spacing */
section {
    margin: 0;
    display: block;
}

/* Add top padding to sections that might be accessed via anchor links */
section:not(.hero) {
    scroll-margin-top: 100px; /* Ensures proper spacing when scrolling to anchors */
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-secondary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #22c55e;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Add padding to account for fixed navbar */
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('public/hero/IPTV-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 600px; /* Prevent layout shift */
}

.hero-content h1 {
    color: white;
    font-size: clamp(2.8rem, 7vw, 5.5rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 1rem; /* Adjusted from 0.5rem */
}

.hero-h1-brand {
    font-size: 1em; /* Normal size relative to parent */
    font-weight: 800;
    display: inline;
    color: #4ade80;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive font size */
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

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

.stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-box .stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #4ade80;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Images */
.hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    min-height: 500px; /* Prevent layout shift */
}

.iptv-interface {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 5/3; /* Prevent layout shift */
}

.interface-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 5/3; /* Prevent layout shift */
    object-fit: cover;
}

.mobile-app {
    width: 100%;
    max-width: 200px;
    margin-top: -50px;
    margin-left: auto;
    margin-right: -20px;
    aspect-ratio: 1/2; /* Prevent layout shift */
}

.mobile-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1/2; /* Prevent layout shift */
    object-fit: cover;
}

.devices-row {
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
    aspect-ratio: 4/1; /* Prevent layout shift */
}

.devices-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/1; /* Prevent layout shift */
    object-fit: contain;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-float 3s ease-in-out infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #005885);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 10s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon.icon-4 {
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* TV Mockup */
.tv-mockup {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 400px;
}

.tv-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) scale(1.05);
}

/* Mobile Mockup */
.mobile-mockup {
    position: relative;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 15px;
    width: 200px;
    height: 350px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(15deg);
    transition: transform 0.3s ease;
}

.mobile-mockup:hover {
    transform: perspective(1000px) rotateY(10deg) scale(1.05);
}

.mobile-screen {
    background: #000;
    border-radius: 20px;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.mobile-app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-player {
    background: rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.channel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.tv-screen {
    background: #000;
    border-radius: 10px;
    padding: 20px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.channel-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.channel-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

/* Video Player Styles */
.video-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.player-controls i {
    color: #4ade80;
    font-size: 1rem;
}

.quality-badge {
    background: #667eea;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
    margin-top: 0;
}

.features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse > * {
    direction: ltr;
}

.showcase-content {
    padding: 2rem;
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
}

.showcase-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.feature-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #555;
}

.feature-highlights i {
    color: #4ade80;
    font-size: 1rem;
}

.showcase-visual {
    position: relative;
}

/* TV Channels Demo */
.tv-channels-demo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.tv-channels-demo:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.channel-logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.channel-logo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.channels-counter {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Movies Demo */
.movies-demo {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease;
}

.movies-demo:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.movie-posters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.movie-poster {
    aspect-ratio: 3/4;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.movie-poster:hover {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    transform: scale(1.05);
}

.movie-poster span {
    font-size: 0.8rem;
    font-weight: 600;
}

.movies-counter {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Quality Demo */
.quality-demo {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.quality-demo:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.quality-display {
    margin-bottom: 2rem;
}

.quality-screen {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.quality-indicator {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.quality-indicator.active {
    background: #4ade80;
    color: #000;
    transform: scale(1.1);
}

.quality-bars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.bar {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bar.active {
    background: #4ade80;
}

.quality-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Canals Section */
.canals {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
    position: relative;
    margin: 0;
}

.canals .container {
    position: relative;
    z-index: 2;
}

.canals h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.canals-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Canals Slider */
.canals-compatibility {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.canals-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 2rem 0;
}

.canal-slide {
    flex: 0 0 auto;
    width: 350px;
}

.canal-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.canal-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
}

.canal-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.canal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
}

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

/* Canals Slider Navigation */
.canals-slider-nav {
    position: absolute;
    top: calc(1rem + 80px); /* Ajusté pour remonter légèrement */
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.canals-nav-btn {
    background: #4ade80;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.canals-nav-btn:hover {
    background: #22c55e;
    transform: scale(1.1);
}

.canals-prev-btn {
    position: absolute;
    left: 15px;
}

.canals-next-btn {
    position: absolute;
    right: 15px;
}

/* Canals Slider Dots */
.canals-slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.canals-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.canals-dot.active {
    background: #22c55e;
    transform: scale(1.2);
}

.canals-dot:hover {
    background: rgba(34, 197, 94, 0.7);
}

/* Movies Section */
.movies {
    padding: 5rem 0;
    background: #000;
    color: white;
    position: relative;
    margin: 0;
}

.movies .container {
    position: relative;
    z-index: 2;
}

.movies h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-text {
    color: #4ade80;
}

.movies-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Movies Slider */
.movies-compatibility {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.movies-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 2rem 0;
}

.movie-slide {
    flex: 0 0 auto;
    width: 300px;
}

.movie-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.movie-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.1);
}

.movie-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.movie-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

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

/* Movies Slider Navigation */
.movies-slider-nav {
    position: absolute;
    top: calc(1rem + 140px); /* Ajusté pour remonter légèrement */
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.movies-nav-btn {
    background: #4ade80;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.movies-nav-btn:hover {
    background: #22c55e;
    transform: scale(1.1);
}

.movies-prev-btn {
    position: absolute;
    left: 15px;
}

.movies-next-btn {
    position: absolute;
    right: 15px;
}

/* Movies Slider Dots */
.movies-slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.movies-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.movies-dot.active {
    background: #4ade80;
    transform: scale(1.2);
}

.movies-dot:hover {
    background: rgba(74, 222, 128, 0.7);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
    margin: 0;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-methods {
    text-align: center;
    padding: 3rem 0;
    background: #f8fafc;
    border-radius: 20px;
}

.payment-methods h3 {
    margin-bottom: 2rem;
    color: #333;
}

.payment-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payments-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payments-img:hover {
    transform: scale(1.02);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: #22c55e;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.special-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: #22c55e;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #4ade80;
    font-size: 1rem;
}

/* Pricing Services Image */
.pricing-services {
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

.services-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

/* Apps Section */
.apps {
    padding: 5rem 0;
    background: #000;
    color: white;
    position: relative;
    margin: 0;
}

.apps .container {
    position: relative;
    z-index: 2;
}

.apps h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-text {
    color: #4ade80;
}

.apps-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Device Compatibility Slider */
.device-compatibility {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.devices-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 2rem 0;
}

.device-slide {
    flex: 0 0 auto;
    width: 200px;
}

.device-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.device-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.1);
}

.device-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.device-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

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

.device-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: calc(1rem + 97px); /* Ajusté pour remonter légèrement */
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    background: #4ade80;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #22c55e;
    transform: scale(1.1);
}

.prev-btn {
    position: absolute;
    left: 15px;
}

.next-btn {
    position: absolute;
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Subscribe Section */
.subscribe-section {
    text-align: center;
    margin: 4rem 0;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.subscribe-btn i {
    font-size: 1.3rem;
}

.popular-apps {
    text-align: center;
    margin-top: 4rem;
}

.popular-apps h3 {
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
}

.app-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.app-logo {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-logo:hover {
    background: #4ade80;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f8fafc;
    margin: 0;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
    margin: 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-question i {
    color: #22c55e;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    margin: 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.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 ease;
}

.footer-section ul li a:hover {
    color: #22c55e;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #22c55e;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero {
        padding-top: 80px; /* Reduced padding for mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-images {
        gap: 1rem;
    }

    .iptv-interface {
        max-width: 350px;
    }

    .mobile-app {
        max-width: 150px;
        margin-top: -30px;
        margin-right: 0;
        margin-left: auto;
    }

    .devices-row {
        max-width: 300px;
    }

    .floating-contacts {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-background-elements {
        display: none;
    }

    .trust-indicators {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .payments-img {
        max-width: 90%;
    }

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

    .showcase-row.reverse {
        direction: ltr;
    }

    .showcase-content {
        padding: 1rem;
    }

    .showcase-content h3 {
        font-size: 2rem;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
    }

    .tv-channels-demo,
    .movies-demo,
    .quality-demo {
        transform: none;
        margin: 0 auto;
        max-width: 400px;
    }

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

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

    .showcase-item:nth-child(even) {
        direction: ltr;
    }

    .content-preview {
        transform: none;
    }

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

    .stat-box {
        padding: 1rem;
    }

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

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

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

    .pricing-card.popular {
        transform: none;
    }

    /* Mobile section spacing */
    .features,
    .movies,
    .canals,
    .pricing,
    .apps,
    .faq,
    .testimonials {
        padding: 3rem 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .services-img {
        max-height: 80px;
    }

    .apps h2 {
        font-size: 2rem;
    }

    .canals h2 {
        font-size: 2rem;
    }

    .canal-slide {
        width: 280px;
    }

    .canal-card {
        height: 200px;
        padding: 0.8rem;
    }

    .canals-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .movies h2 {
        font-size: 2rem;
    }

    .movie-slide {
        width: 250px;
    }

    .movie-card {
        height: 320px;
        padding: 0.8rem;
    }

    .movies-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .device-slide {
        width: 160px;
    }

    .device-card {
        height: 240px;
        padding: 1.5rem 1rem;
    }

    .device-image {
        height: 80px;
    }

    .device-info h4 {
        font-size: 1.1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .subscribe-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo-img {
        height: 50px;
        max-width: 160px;
    }

    .footer-logo .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

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

    /* Extra small mobile section spacing */
    .features,
    .movies,
    .canals,
    .pricing,
    .apps,
    .faq,
    .testimonials {
        padding: 2.5rem 0;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .iptv-interface {
        max-width: 280px;
    }

    .mobile-app {
        max-width: 120px;
        margin-top: -20px;
    }

    .devices-row {
        max-width: 250px;
    }

    .floating-contacts {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

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

    .apps h2 {
        font-size: 1.8rem;
    }

    .canals h2 {
        font-size: 1.8rem;
    }

    .canal-slide {
        width: 220px;
    }

    .canal-card {
        height: 180px;
        padding: 0.6rem;
    }

    .canals-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .movies h2 {
        font-size: 1.8rem;
    }

    .movie-slide {
        width: 200px;
    }

    .movie-card {
        height: 280px;
        padding: 0.6rem;
    }

    .movies-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .device-slide {
        width: 140px;
    }

    .device-card {
        height: 200px;
        padding: 1rem 0.8rem;
    }

    .device-image {
        height: 60px;
        margin-bottom: 1rem;
    }

    .device-info h4 {
        font-size: 1rem;
    }

    .device-info p {
        font-size: 0.8rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .subscribe-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .app-logos {
        flex-direction: column;
        align-items: center;
    }

    .logo-img {
        height: 45px;
        max-width: 140px;
    }

    .footer-logo .logo-img {
        height: 35px;
        max-width: 130px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading optimization */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
.contact-btn:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border-color: #000;
    }
    
    .feature-icon,
    .step-icon {
        background: #000;
    }
} 