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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

header.scrolled {
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.navbar {
    padding: 0;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #00c853;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 30px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.15);
    color: white !important;
}

.btn-navbar {
    background: #00c853;
    color: white;
    border-radius: 30px;
    padding: 8px 24px !important;
    font-weight: 600;
}

.btn-navbar:hover {
    background: #009624;
    color: white !important;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/img/bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    margin-top: 70px;
    width: 100%;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h1 strong {
    color: #00c853;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ===== BOUTONS ===== */
.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: #1976d2;
    color: white;
}

.btn-primary:hover {
    background: #0d47a1;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25,118,210,0.3);
}

.btn-accent {
    background: #00c853;
    color: white;
}

.btn-accent:hover {
    background: #009624;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,200,83,0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: #1a237e;
    transform: translateY(-3px);
}

.btn-success {
    background: #25D366;
    color: white;
    border: none;
}

.btn-success:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn-info {
    background: #0088cc;
    color: white;
    border: none;
}

.btn-info:hover {
    background: #006699;
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00c853;
    border-radius: 2px;
}

.section-title h2 strong {
    color: #00c853;
}

.section-title p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(26,35,126,0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #1a237e;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: #1a237e;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ===== MAIN CONTACT BUTTONS ===== */
.main-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.main-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s;
}

.main-contact-btn:hover {
    transform: translateY(-8px);
}

.main-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.whatsapp-icon-main {
    background: #25D366;
}

.telegram-icon-main {
    background: #0088cc;
}

.main-contact-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* ===== HERO BUTTONS ===== */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===== HERO STATS ===== */
.hero-stats {
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00c853;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(26,35,126,0.2);
}

.pricing-card.popular {
    border: 3px solid #00c853;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular::before {
    content: '🔥 POPULAIRE';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #00c853;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 3;
}

.pricing-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 15px 0 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 35px 30px;
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pricing-features i {
    color: #00c853;
    font-size: 1.1rem;
    width: 20px;
}

.pricing-features i.fa-times {
    color: #f44336;
}

/* ===== CHANNELS SECTION ===== */
.channels {
    background: #f8f9fa;
    padding: 60px 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.channel-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100px;
}

.channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26,35,126,0.1);
}

.channel-item img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.channel-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== GUIDE CARDS ===== */
.guides-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.guide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26,35,126,0.15);
}

.guide-card-image {
    height: 160px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    position: relative;
}

.guide-card-image i {
    font-size: 60px;
    color: rgba(255,255,255,0.9);
}

.guide-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-card-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.guide-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.guide-card-category {
    background: #e8eaf6;
    color: #1a237e;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.guide-card-link {
    color: #1976d2;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.guide-card-link:hover {
    gap: 10px;
    color: #1a237e;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26,35,126,0.1);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00c853;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a237e;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== TRIAL SECTION ===== */
.trial-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 80px 0;
    color: white;
}

.trial-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.trial-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.trial-features {
    list-style: none;
    margin-top: 30px;
}

.trial-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trial-features i {
    color: #00c853;
    font-size: 1.3rem;
}

.trial-price {
    margin: 30px 0;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 15px;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: #00c853;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    background: white;
    padding: 20px 25px;
    font-size: 1.1rem;
    color: #1a237e;
}

.accordion-button:not(.collapsed) {
    background: #e8eaf6;
    color: #1a237e;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-body {
    padding: 25px;
    background: #f8f9fa;
    color: #555;
    line-height: 1.8;
}

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.floating-whatsapp a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    animation: pulse 2s infinite;
    transition: all 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-text {
    margin-top: 8px;
    color: #25D366;
    font-weight: 700;
    font-size: 0.9rem;
    background: white;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.telegram-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0088cc;
    color: white;
    padding: 15px 10px;
    border-radius: 0 15px 15px 0;
    z-index: 9998;
    box-shadow: 3px 3px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.telegram-sidebar:hover {
    padding-right: 20px;
}

.telegram-sidebar a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.telegram-sidebar i {
    font-size: 28px;
}

.telegram-sidebar span {
    font-size: 0.7rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #1a237e;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(26,35,126,0.3);
    transition: all 0.3s;
}

.back-to-top:hover {
    background: #00c853;
    transform: translateY(-5px);
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #00c853;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== FOOTER ===== */
footer {
    background: #121212;
    color: white;
    padding: 80px 0 30px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-logo-text span {
    color: #00c853;
}

.footer-about {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #00c853;
    transform: translateY(-3px);
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00c853;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: #00c853;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
}

.footer-contact i {
    width: 20px;
    color: #00c853;
}

.footer-contact a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #00c853;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 60px 0;
    background: white;
}

.contact-info-box {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-method {
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26,35,126,0.1);
}

.contact-method i {
    margin-bottom: 15px;
}

.contact-method h5 {
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.contact-method p {
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1200px) {
    .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular::before { 
        font-size: 0.7rem; 
        padding: 5px 30px;
        right: -25px;
    }
    .channels-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header { 
        padding: 10px 0; 
    }
    
    .hero { 
        padding: 150px 0 80px; 
        margin-top: 60px;
    }
    
    .hero h1 { 
        font-size: 2rem; 
    }
    
    .hero p { 
        font-size: 1rem; 
    }
    
    .hero-btns { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .btn { 
        width: 100%; 
        max-width: 300px; 
    }
    
    section { 
        padding: 60px 0; 
    }
    
    .section-title h2 { 
        font-size: 2rem; 
    }
    
    .main-contact-buttons {
        gap: 20px;
    }
    
    .main-contact-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .channels-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 15px; 
    }
    
    .channel-item { 
        height: 80px; 
        padding: 15px; 
    }
    
    .channel-item img { 
        max-width: 100px; 
        max-height: 50px; 
    }
    
    .telegram-sidebar {
        padding: 10px;
    }
    
    .telegram-sidebar span { 
        writing-mode: horizontal-tb; 
        transform: none; 
        font-size: 0.8rem; 
    }
    
    .telegram-sidebar i { 
        font-size: 20px; 
    }
    
    .floating-whatsapp { 
        bottom: 20px; 
        right: 20px; 
    }
    
    .whatsapp-icon { 
        width: 60px; 
        height: 60px; 
        font-size: 30px; 
    }
    
    .trial-box {
        padding: 30px;
    }
    
    .trial-box h2 {
        font-size: 1.8rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info-box {
        padding: 30px;
    }
    
    .contact-method {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .channels-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .hero-stats .col-6 {
        width: 50%;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .trial-box {
        padding: 20px;
    }
    
    .trial-box h2 {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
}

/* ===== CORRECTIONS POUR ÉVITER LES ESPACES BLANCS ===== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}