/* ========================================
   HOMEPAGE MONSTER - STYLES OPTIMISÉS
   ======================================== */

/* HERO */
.hero-monster {
    position: relative;
    padding: 130px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-monster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 200, 83, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

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

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 2px solid var(--accent-primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i { color: #ffc107; }

.hero-monster h1 {
    font-size: clamp(32px, 7vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.hero-monster h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong { color: var(--accent-primary); }

.hero-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.hero-stat i { color: var(--accent-secondary); font-size: 18px; }
.hero-stat span { font-size: 13px; font-weight: 600; color: var(--text-primary); }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-trust-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-surface);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-stars { color: #ffc107; font-size: 18px; letter-spacing: 2px; }
.trust-text { font-size: 13px; color: var(--text-muted); }
.trust-text strong { color: var(--text-primary); }

.hero-visual { max-width: 500px; margin: 0 auto; }

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-container img { width: 100%; display: block; }

.hero-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* INTRO SECTION */
.intro-section {
    padding: 70px 0;
    background: var(--bg-surface);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.intro-content h2 {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
    line-height: 1.2;
}

.intro-content h2 span { color: var(--accent-primary); }

.intro-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-text strong { color: var(--text-primary); }

/* Style pour les liens internes SEO */
.intro-text a {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.intro-text a:hover {
    border-bottom-color: var(--accent-primary);
}

.intro-highlight-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: white;
    margin: 30px 0;
}

.intro-highlight-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-highlight-box ul { padding: 0; margin: 0; }

.intro-highlight-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.intro-highlight-box li:last-child { border-bottom: none; }
.intro-highlight-box li i { color: #00ff88; margin-top: 3px; }

.intro-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.intro-feature-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.intro-feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.intro-feature-icon {
    width: 55px; height: 55px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.intro-feature-icon i { font-size: 24px; color: white; }

.intro-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.intro-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* PRICING */
.pricing-monster {
    padding: 80px 0;
    background: var(--gradient-hero);
}

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

.section-header-center .section-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header-center p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Lien SEO sous section */
.section-seo-link {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    color: var(--text-muted);
}

.section-seo-link a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--accent-primary);
    transition: all 0.3s ease;
}

.section-seo-link a:hover {
    border-bottom-style: solid;
}

.pricing-grid-monster {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 450px;
    margin: 0 auto 50px;
}

.price-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.02);
}

.price-card-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.price-card-duration {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.price-card-monthly {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-card-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
}

.price-card-amount .currency {
    font-size: 22px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text-primary);
}

.price-card-amount .amount {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.price-card-features {
    text-align: left;
    padding: 0;
    margin-bottom: 25px;
}

.price-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.price-card-features li:last-child { border-bottom: none; }
.price-card-features i { color: var(--accent-secondary); font-size: 12px; }

.price-card .btn { width: 100%; }

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

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-surface);
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.guarantee-badge i { color: var(--accent-primary); font-size: 18px; }

/* BENEFITS */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
}

.benefit-icon {
    width: 65px; height: 65px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
}

.benefit-icon i { font-size: 28px; color: white; }

.benefit-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.benefit-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.benefit-card > p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.benefit-card ul { padding: 0; margin: 0; }

.benefit-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.benefit-card li i { color: var(--accent-secondary); font-size: 12px; }

/* HOW TO */
.howto-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.howto-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.howto-step {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.howto-step:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.howto-step-number {
    width: 55px; height: 55px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.howto-step-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.howto-step-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.step-highlight {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.howto-cta {
    text-align: center;
    margin-top: 50px;
}

.howto-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

/* CHANNELS */
.channels-section-monster {
    padding: 80px 0;
    background: var(--bg-surface);
}

.channels-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.channel-category {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.channel-category:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.channel-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-light);
    flex-wrap: wrap;
}

.channel-category-icon {
    width: 50px; height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-category-icon i { font-size: 22px; color: white; }

.channel-category-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.channel-category-header span {
    background: var(--accent-light);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.channel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.channel-tag {
    background: var(--bg-surface);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.channel-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* COMPATIBILITY */
.compatibility-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

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

.device-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.device-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.device-card i {
    font-size: 45px;
    color: var(--accent-primary);
    margin-bottom: 15px;
    display: block;
}

.device-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.device-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.compatibility-cta {
    text-align: center;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.compatibility-cta h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.compatibility-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* TESTIMONIALS */
.testimonials-monster {
    padding: 80px 0;
    background: var(--bg-surface);
}

.testimonials-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.rating-stars {
    color: #ffc107;
    font-size: 24px;
    letter-spacing: 3px;
}

.rating-info {
    font-size: 15px;
    color: var(--text-muted);
}

.rating-info strong {
    color: var(--text-primary);
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 55px; height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stars {
    margin-left: auto;
    color: #ffc107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-text strong {
    color: var(--text-primary);
    font-style: normal;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--accent-secondary);
    font-weight: 600;
}

/* FAQ */
.faq-monster {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--accent-primary); }
.faq-item.active { border-color: var(--accent-primary); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 20px;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    display: none;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.faq-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* FINAL CTA */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px;
}

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

.final-cta-content {
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta > .container > .final-cta-content > p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
}

.final-cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.final-cta-features i { color: #00ff88; }

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.btn-cta-white {
    background: white;
    color: var(--accent-primary);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 16px 35px;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--accent-primary);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero-monster { padding: 150px 0 100px; }
    .hero-content-grid { grid-template-columns: 1fr 1fr; text-align: left; gap: 50px; }
    .hero-stats-bar { justify-content: flex-start; }
    .hero-buttons { flex-direction: row; }
    .hero-buttons .btn { width: auto; }
    .hero-trust-box { margin: 0; }
    .hero-visual { order: 1; }
    .intro-grid { grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .intro-features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-monster { grid-template-columns: repeat(2, 1fr); max-width: 750px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-categories { grid-template-columns: repeat(2, 1fr); }
    .devices-grid-monster { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta-buttons { flex-direction: row; }
}

@media (min-width: 1024px) {
    .hero-monster { padding: 160px 0 110px; }
    .hero-monster h1 .gradient-text { display: inline; }
    .pricing-grid-monster { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
    .price-card.featured { transform: scale(1.08); }
    .pricing-guarantees { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .channels-categories { grid-template-columns: repeat(3, 1fr); }
    .devices-grid-monster { grid-template-columns: repeat(6, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
<!-- ========================================
     CSS POUR LE CONTENU SEO
     ======================================== -->

/* SEO Content Sections */
.seo-pillar-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.seo-pillar-content.seo-alt-bg {
    background: var(--bg-surface);
}

.seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.seo-article {
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-article-header {
    text-align: center;
    margin-bottom: 50px;
}

.seo-article-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.seo-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Table of Contents */
.seo-toc {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-bottom: 40px;
}

.seo-toc h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.seo-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.seo-toc li {
    margin-bottom: 8px;
}

.seo-toc a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.seo-toc a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* SEO Sections */
.seo-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.seo-section:last-child {
    border-bottom: none;
}

.seo-section h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.seo-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 12px;
}

.seo-section p {
    margin-bottom: 15px;
}

.seo-section strong {
    color: var(--text-primary);
}

/* Info Boxes */
.seo-info-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 200, 83, 0.08));
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 25px;
    margin: 25px 0;
}

.seo-info-box.highlight {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 102, 255, 0.1));
    border-left-color: var(--accent-secondary);
}

.seo-info-box h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.seo-info-box p {
    margin: 0;
    font-size: 15px;
}

.seo-info-box ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.seo-info-box li {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Comparison Tables */
.seo-comparison-table {
    overflow-x: auto;
    margin: 25px 0;
}

.seo-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.seo-comparison-table th,
.seo-comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.seo-comparison-table th {
    background: var(--bg-surface);
    font-weight: 600;
    color: var(--text-primary);
}

.seo-comparison-table td.highlight {
    background: rgba(0, 200, 83, 0.1);
    color: var(--accent-secondary);
    font-weight: 600;
}

/* Steps List */
.seo-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-steps li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.seo-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tips List */
.seo-tips-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-tips-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.seo-tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

/* Devices Grid */
.seo-devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.seo-device-category {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.seo-device-category h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.seo-device-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-device-category li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    border-bottom: 1px solid var(--border-color);
}

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

/* Sports Grid */
.seo-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.seo-sport-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.seo-sport-item h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.seo-sport-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Categories Tags */
.seo-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.seo-category-tag {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.seo-category-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Countries Grid */
.seo-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.seo-country-block {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
}

.seo-country-block h4 {
    font-size: 15px;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.seo-country-block p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Glossary */
.seo-glossary {
    display: grid;
    gap: 20px;
}

.glossary-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.glossary-item h4 {
    font-size: 16px;
    color: var(--accent-primary);
    margin: 0 0 8px;
}

.glossary-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Cities Grid */
.seo-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.seo-city {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
}

.seo-city h4 {
    font-size: 15px;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.seo-city p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Box */
.seo-cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.seo-cta-box h4 {
    color: white;
    font-size: 20px;
    margin: 0 0 10px;
}

.seo-cta-box p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 20px;
}

.seo-cta-box .btn {
    margin: 0 8px;
}

.seo-cta-box .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Internal Links Section */
.seo-internal-links {
    padding: 60px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.seo-links-wrapper h3 {
    text-align: center;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.seo-links-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-links-column li {
    margin-bottom: 8px;
}

.seo-links-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.seo-links-column a:hover {
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .seo-pillar-content {
        padding: 50px 0;
    }
    
    .seo-toc ul {
        columns: 1;
    }
    
    .seo-comparison-table {
        font-size: 12px;
    }
    
    .seo-comparison-table th,
    .seo-comparison-table td {
        padding: 8px 10px;
    }
    
    .seo-cta-box .btn {
        display: block;
        margin: 10px 0;
    }
}
/* ========================================
   SEO CONTENT STYLES - À AJOUTER À homepage.css
   ======================================== */

/* SEO Content Sections */
.seo-pillar-content {
    padding: 60px 0;
    background: var(--bg-primary);
}

.seo-pillar-content.seo-alt-bg {
    background: var(--bg-surface);
}

.seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.seo-article {
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-article-header {
    text-align: center;
    margin-bottom: 40px;
}

.seo-article-header h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.seo-intro {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Table of Contents */
.seo-toc {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

.seo-toc h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.seo-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 20px;
}

.seo-toc li {
    margin-bottom: 6px;
}

.seo-toc a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 13px;
}

.seo-toc a:hover {
    text-decoration: underline;
}

/* SEO Sections */
.seo-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.seo-section:last-child {
    border-bottom: none;
}

.seo-section h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.seo-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 10px;
}

.seo-section p {
    margin-bottom: 12px;
    font-size: 15px;
}

.seo-section strong {
    color: var(--text-primary);
}

/* Info Boxes */
.seo-info-box {
    background: rgba(0, 102, 255, 0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 15px 20px;
    margin: 20px 0;
}

.seo-info-box.highlight {
    border-left-color: var(--accent-secondary);
}

.seo-info-box h4 {
    font-size: 15px;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.seo-info-box p {
    margin: 0;
    font-size: 14px;
}

.seo-info-box ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.seo-info-box li {
    margin-bottom: 4px;
    font-size: 13px;
}

/* Comparison Tables */
.seo-comparison-table {
    overflow-x: auto;
    margin: 20px 0;
}

.seo-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.seo-comparison-table th,
.seo-comparison-table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.seo-comparison-table th {
    background: var(--bg-surface);
    font-weight: 600;
    color: var(--text-primary);
}

.seo-comparison-table td.highlight {
    background: rgba(0, 200, 83, 0.1);
    color: var(--accent-secondary);
    font-weight: 600;
}

/* Steps List */
.seo-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.seo-steps li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 14px;
}

.seo-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grids */
.seo-devices-grid,
.seo-sports-grid,
.seo-countries-grid,
.seo-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.seo-device-category,
.seo-sport-item,
.seo-country-block,
.seo-city {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
}

.seo-device-category h4,
.seo-sport-item h4,
.seo-country-block h4,
.seo-city h4 {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.seo-device-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-device-category li {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 3px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.seo-sport-item p,
.seo-country-block p,
.seo-city p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Categories Tags */
.seo-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.seo-category-tag {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
}

/* Glossary */
.seo-glossary {
    display: grid;
    gap: 15px;
}

.glossary-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
}

.glossary-item h4 {
    font-size: 14px;
    color: var(--accent-primary);
    margin: 0 0 6px;
}

.glossary-item p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Box */
.seo-cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    margin: 30px 0;
}

.seo-cta-box h4 {
    color: white;
    font-size: 18px;
    margin: 0 0 8px;
}

.seo-cta-box p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 15px;
    font-size: 14px;
}

.seo-cta-box .btn {
    margin: 0 5px;
}

/* Internal Links Section */
.seo-internal-links {
    padding: 40px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.seo-links-wrapper h3 {
    text-align: center;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.seo-links-column h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
    text-transform: uppercase;
}

.seo-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-links-column li {
    margin-bottom: 6px;
}

.seo-links-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
}

.seo-links-column a:hover {
    color: var(--accent-primary);
}

.seo-lazy-section {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .seo-pillar-content {
        padding: 40px 0;
    }
    
    .seo-toc ul {
        columns: 1;
    }
    
    .seo-comparison-table th,
    .seo-comparison-table td {
        padding: 8px;
        font-size: 11px;
    }
    
    .seo-cta-box .btn {
        display: block;
        margin: 8px 0;
    }
    
    .seo-devices-grid,
    .seo-sports-grid,
    .seo-countries-grid,
    .seo-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.site-footer {
    background: var(--bg-footer, #0f1629);
    color: var(--text-white);
    padding: 60px 0 0;
    margin-top: 0;
}

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

/* Footer Grid - 4 colonnes */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer About */
.footer-about .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about .logo-img {
    height: 45px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Footer Titles */
.footer-title {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary, #0066ff);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-primary, #0066ff);
    padding-left: 5px;
}

/* Trust Badges */
.footer-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg,
.trust-item i {
    color: var(--accent-primary, #0066ff);
    font-size: 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 25px 0;
}

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

.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg,
.whatsapp-float i {
    color: white;
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

/* WhatsApp Mobile Bar */
.whatsapp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #25d366;
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--accent-primary, #0066ff);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-hover, #0052cc);
    transform: translateY(-3px);
}

/* ==========================================
   FOOTER RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-trust {
        gap: 20px;
    }
    
    .trust-item {
        flex: 0 0 45%;
        justify-content: center;
    }
    
    /* WhatsApp Desktop hidden on mobile */
    .whatsapp-float {
        display: none;
    }
    
    /* WhatsApp Mobile Bar visible */
    .whatsapp-mobile-bar {
        display: block;
    }
    
    /* Adjust scroll-to-top position */
    .scroll-to-top {
        bottom: 80px;
    }
    
    /* Add padding for mobile bar */
    .site-footer {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .footer-trust {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-item {
        flex: 0 0 auto;
    }
}