/* =============================================================
   components.css
   Tous les styles extraits des balises <style> inline de index.html
   et du CSS injecté via JavaScript dans mainv1_4.js
   ============================================================= */


/* =====================================================
   1. TURNSTILE MODAL
   ===================================================== */
.turnstile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.turnstile-overlay.show { display: flex; }

.turnstile-overlay.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

.turnstile-modal {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(24, 24, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(0, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.turnstile-modal.fade-out {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

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

.turnstile-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.turnstile-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.turnstile-status { text-align: center; margin-bottom: 0.5rem; }

.turnstile-robot-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1);    opacity: 1;   }
    50%       { transform: scale(1.05); opacity: 0.9; }
}

.turnstile-main-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 0.5rem;
}

.turnstile-sub-text {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
    opacity: 0.8;
}

#turnstile-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65px;
    width: 100%;
}

.turnstile-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    opacity: 0.7;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.turnstile-hint svg { flex-shrink: 0; color: var(--accent-color); }

.turnstile-success {
    text-align: center;
    animation: successSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.turnstile-success-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2ed573, #26d267);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 213, 115, 0.4);
    animation: successIconPop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successIconPop {
    0%   { transform: scale(0);   opacity: 0; }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}

.turnstile-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 0.75rem;
}

.turnstile-success-message {
    font-size: 1rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .turnstile-modal { padding: 2rem 1.5rem; max-width: 95%; }
    .turnstile-robot-icon { font-size: 3rem; }
    .turnstile-main-text { font-size: 1.1rem; }
    .turnstile-sub-text  { font-size: 0.9rem; }
}


/* =====================================================
   2. PRODUCT SHOWCASE SECTION — animations flottantes
   ===================================================== */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-20px); }
}

@keyframes floatFast {
    0%, 100% { transform: translateY(0px)   rotate(-5deg); opacity: 0.8; }
    50%       { transform: translateY(-15px) rotate(5deg);  opacity: 1;   }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px)  rotate(5deg);  opacity: 1;   }
    50%       { transform: translateY(15px) rotate(-5deg); opacity: 0.8; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.floating-slow    { animation: floatSlow    6s ease-in-out infinite; }
.floating-fast    { animation: floatFast    4s ease-in-out infinite; }
.floating-reverse { animation: floatReverse 5s ease-in-out infinite; }

.product-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0.1) 60%, transparent 80%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@media (max-width: 900px) {
    .showcase-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem !important;
        padding-top: 2rem !important;
    }

    .showcase-info {
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .showcase-info h2 { font-size: 2.2rem !important; }

    .showcase-info div[style*="border-left"] {
        border-left: none !important;
        border-top: 3px solid #00FFFF;
        padding-left: 0 !important;
        padding-top: 1.5rem;
    }

    .showcase-visual-wrapper { width: 100%; }
    .lightning-bolt { transform: scale(0.6); }

    .icon-align { justify-content: center; }
}


/* =====================================================
   3. DIFFERENCE SECTION — feature-item hover
   ===================================================== */
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.feature-item:nth-child(2):hover {
    border-color: #00FFFF;
    box-shadow: 0 5px 20px rgba(0,255,255,0.1);
}

.feature-item:nth-child(3):hover {
    border-color: #00ff88;
    box-shadow: 0 5px 20px rgba(0,255,136,0.1);
}

.feature-item:nth-child(4):hover {
    border-color: #c56cf0;
    box-shadow: 0 5px 20px rgba(197,108,240,0.1);
}

@media (max-width: 950px) {
    .animation-stage {
        flex-direction: column;
        height: auto !important;
        gap: 3rem;
    }
    .mousepad-wrapper {
        position: relative !important;
        transform: translateX(0) !important;
        max-width: 90% !important;
    }
    .features-panel {
        position: relative !important;
        right: auto !important;
        transform: translateX(0) !important;
        max-width: 100% !important;
    }
}


/* =====================================================
   4. ACCOUNT DROPDOWN & AUTH BUTTON HELPERS
   ===================================================== */
.account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    min-width: 160px;
    z-index: 10001;
    animation: fadeInDown 0.3s ease;
    font-size: 0.9rem;
}

.account-dropdown::before {
    content: '';
    position: absolute;
    top: -6px; right: 20px;
    width: 12px; height: 12px;
    background: var(--card-bg-color);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.account-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-text-color);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-dropdown a:last-child { border-bottom: none; }

.account-dropdown a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-color);
}

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

.auth-submit { position: relative; overflow: hidden; }

.auth-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-loader svg { animation: spin 1s linear infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* =====================================================
   5. LANGUAGE NOTIFICATION
   ===================================================== */
.language-notification {
    position: fixed;
    top: 70px; right: 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    max-width: 400px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.language-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.language-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--secondary-text-color);
    line-height: 1.4;
}

.language-notification-close {
    background: none;
    border: none;
    color: var(--secondary-text-color);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.language-notification-close:hover { opacity: 1; }

@media (max-width: 768px) {
    .language-notification {
        right: 10px; left: 10px;
        max-width: none;
        top: 60px;
    }
}


/* =====================================================
   6. PRODUCT CARDS
   ===================================================== */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(0, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.product-card .product-image-container {
    width: 100%; height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-card .product-image-container img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img { transform: scale(1.08); }

.product-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.4;
    min-height: 3rem;
    color: var(--primary-text-color);
}

.product-card .product-description {
    color: var(--secondary-text-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.price-row .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-text-color);
}

.price-row .old-price {
    text-decoration: line-through;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.card-actions {
    margin-top: auto;
    display: flex;
    width: 100%;
}

.view-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-text-color);
}

.view-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    border-color: var(--accent-color);
}

.badge {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-sale {
    right: 12px;
    background: rgba(255, 71, 87, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 71, 87, 1);
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.badge-best {
    left: 12px;
    background: rgba(255, 215, 0, 0.85);
    color: #000000;
    border: 1px solid rgba(255, 215, 0, 1);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .product-card { padding: 1rem; }
    .product-card .product-image-container { height: 160px; }
    .product-card h3 { min-height: auto; }
}


/* =====================================================
   7. SECTION WARRANTY (ENGAGEMENT)
   ===================================================== */
.premium-warranty {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.premium-warranty .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.warranty-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.warranty-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px -10px rgba(0, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.warranty-card:hover .card-glow { opacity: 1; }

.warranty-icon-wrapper {
    width: 70px; height: 70px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.warranty-card:hover .warranty-icon-wrapper {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.warranty-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-text-color);
    letter-spacing: 0.5px;
}

.warranty-card p {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin: 0;
}

.tracking-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.tracking-link:hover {
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    border-bottom: 1px solid var(--accent-color);
}

@media (max-width: 768px) {
    .premium-warranty { padding: 4rem 0; }
    .warranty-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .warranty-card { padding: 2rem 1.5rem; }
}


/* =====================================================
   8. SECTION COMPARAISON
   ===================================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.comparison-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.comparison-card:hover { transform: translateY(-5px); }

.comparison-card.bad-quality {
    border-color: rgba(255, 71, 87, 0.3);
    background: linear-gradient(180deg, rgba(255, 71, 87, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.comparison-card.bad-quality .icon-box {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.2);
}

.comparison-card.good-quality {
    border-color: var(--accent-color);
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
}

.comparison-card.good-quality .icon-box {
    color: var(--accent-color);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-text-color);
    margin: 0;
}

.hook-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-text-color);
}

.comparison-card.bad-quality  .hook-text { color: #ff6b81; }
.comparison-card.good-quality .hook-text { color: var(--accent-color); }

.explanation-text {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vs-badge {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    color: var(--secondary-text-color);
    font-weight: 800;
    font-style: italic;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.feature-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary-text-color);
}

.feature-list li svg { width: 20px; height: 20px; flex-shrink: 0; }
.feature-list li.negative svg { color: #ff4757; }
.feature-list li.positive svg {
    color: #2ed573;
    filter: drop-shadow(0 0 5px rgba(46, 213, 115, 0.5));
}

@media (max-width: 900px) {
    .comparison-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vs-badge { margin: -1.5rem auto; transform: rotate(90deg); }
    .comparison-card { padding: 2rem 1.5rem; }
}


/* =====================================================
   9. CUSTOM DESIGN SECTION (tapis personnalisé)
   ===================================================== */
#custom-design-section {
    position: relative;
    padding: 8rem 0;
    background: #050505;
    overflow: hidden;
    color: #fff;
}

.custom-bg-glow {
    position: absolute;
    top: 50%; left: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(197, 108, 240, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.custom-visual { flex: 1; position: relative; }

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s ease;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
    border-color: rgba(197, 108, 240, 0.4);
}

#custom-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.video-overlay-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 24px;
    box-shadow: inset 0 0 30px rgba(197, 108, 240, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 108, 240, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge .icon { font-size: 1.5rem; }
.floating-badge .text { font-weight: 700; color: #fff; font-size: 0.9rem; }

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

.custom-content { flex: 1; }

.custom-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #c56cf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(197, 108, 240, 0.3);
}

.custom-description {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.custom-description strong { color: #fff; font-weight: 600; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(197, 108, 240, 0.05);
    border-color: rgba(197, 108, 240, 0.3);
    transform: translateY(-3px);
}

.feature-box svg { color: #c56cf0; flex-shrink: 0; }

.feature-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    color: #fff;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    margin: 0;
    line-height: 1.4;
}

.cta-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cta-custom-btn:hover {
    background: #c56cf0;
    color: #fff;
    box-shadow: 0 0 30px rgba(197, 108, 240, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .custom-container { flex-direction: column; gap: 3rem; }
    .custom-title { font-size: 2.5rem; text-align: center; }
    .custom-description { text-align: center; max-width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .floating-badge { bottom: -10px; right: 0; }
}


/* =====================================================
   10. REVIEWS — fadeInUp animation & responsive
       (extrait du JS — reviewsStyleSheet)
   ===================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);     }
}

@media (max-width: 768px) {
    #customer-love-section h2 {
        font-size: 1.8rem !important;
        padding: 0 1rem;
    }

    #ratings-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    #ratings-summary > div {
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 2rem !important;
    }

    .review-filter-btn {
        min-width: 100% !important;
        max-width: 100% !important;
        font-size: 0.9rem !important;
    }

    #service-info {
        margin: 0 1rem 2rem 1rem !important;
        padding: 1.25rem !important;
        font-size: 0.9rem !important;
    }

    #reviews-container {
        grid-template-columns: 1fr !important;
        padding: 0 1rem !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    #customer-love-section h2 { font-size: 1.5rem !important; }

    #ratings-summary > div { padding: 1.25rem 1.5rem !important; }

    .review-filter-btn { padding: 0.8rem 1.5rem !important; }
}
