/* Smart Protect - Styles Page d'Accueil */

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotateIn {
    from { transform: rotate(-180deg); opacity: 0; }
    to { transform: rotate(0); opacity: 1; }
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* SEO: Texte d'introduction optimisé pour le référencement */
.hero-intro-seo {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.hero-intro-seo strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.cta-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

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

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    animation: pulse 0.6s ease-in-out infinite;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 116, 139, 0.2);
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: scale(1.05);
}

.trust-icon {
    font-size: 2rem;
    animation: bounceIn 0.6s ease-out;
}

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

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.4s both;
    margin-top: -10%;
    margin-bottom: -10%;
}

.hero-visual #lottie-animation {
    transform: scale(0.9);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
    background: white;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.benefit-description {
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */

.social-proof {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.social-proof .section-title,
.social-proof .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.social-proof .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 1.5rem;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
   LATEST NEWS SECTION
   ======================================== */

.latest-news {
    padding: 5rem 0;
    background: #f1f5f9;
}

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

/* Reset pour éviter les problèmes de style hérités */
.news-grid * {
    box-sizing: border-box;
}

.news-loading,
.products-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #64748b;
}

.news-loading .spinner,
.products-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.news-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.news-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: block;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.news-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: #64748b;
}

.news-card-category {
    background: #2563eb;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #64748b;
    font-size: 0.8rem;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: #2563eb;
}

.news-card-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.news-card-link:hover {
    gap: 0.75rem;
}

.news-cta {
    text-align: center;
    margin-top: 3rem;
}

.news-cta .btn,
.news-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Responsive News Grid */
@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .latest-news {
        padding: 3rem 0;
    }

    .latest-news .section-title {
        font-size: 1.5rem;
    }

    .latest-news .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .news-card {
        margin: 0;
    }

    .news-card:hover {
        transform: none;
    }

    .news-card-image {
        height: 180px;
    }

    .news-card-content {
        padding: 1rem;
    }

    .news-card-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .news-card-category {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .news-card-date {
        font-size: 0.75rem;
    }

    .news-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .news-card-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.75rem;
    }

    .news-card-link {
        font-size: 0.85rem;
    }

    .news-cta {
        margin-top: 2rem;
    }

    .news-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* États spéciaux pour le chargement et les erreurs */
.news-error,
.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: #64748b;
    font-size: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.news-error a,
.no-news a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.5rem;
}

.news-error a:hover,
.no-news a:hover {
    text-decoration: underline;
}

/* Mobile medium */
@media (max-width: 480px) {
    .latest-news {
        padding: 2.5rem 0;
    }

    .latest-news .section-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .latest-news .section-subtitle {
        font-size: 0.9rem;
    }

    .news-grid {
        gap: 1rem;
    }

    .news-card-image {
        height: 150px;
    }

    .news-card-content {
        padding: 0.875rem;
    }

    .news-card-title {
        font-size: 0.95rem;
    }

    .news-card-excerpt {
        font-size: 0.8rem;
    }

    .news-error,
    .no-news {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile small - très petits écrans */
@media (max-width: 360px) {
    .latest-news {
        padding: 2rem 0;
    }

    .latest-news .section-title {
        font-size: 1.25rem;
    }

    .news-card-content {
        padding: 0.75rem;
    }

    .news-card-meta {
        gap: 0.5rem;
    }

    .news-card-category {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .news-card-title {
        font-size: 0.9rem;
    }

    .news-card-excerpt {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.product-features li {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 0;
    transition: transform 0.2s ease;
}

.product-card:hover .product-features li {
    transform: translateX(5px);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.old-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-slider {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 2rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 260px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.testimonial-text {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--gray);
    opacity: 0.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
    background: white;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.faq-item:hover h3 {
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: var(--light-gray);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-contact {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.7;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE - Mobile Optimizations
   ======================================== */

/* Large Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

/* Tablet */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

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

    .hero-visual {
        order: -1;
        max-width: 320px;
        margin: -10% auto -10%;
    }

    .hero-visual::before {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .hero-intro-seo {
        font-size: 0.9375rem;
        margin: 0 auto 2rem;
        text-align: left;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .cta-container {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-container .btn {
        width: 100%;
        max-width: 320px;
    }

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

    .benefits {
        padding: 3rem 0;
    }

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

    .benefit-card {
        padding: 1.5rem;
    }

    .social-proof {
        padding: 3rem 0;
    }

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

    .stat-item {
        padding: 1.25rem;
    }

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

    .products {
        padding: 3rem 0;
    }

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

    .product-image {
        height: 200px;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-slider {
        padding: 0 1rem;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 300px;
        padding: 1.25rem;
    }

    .faq {
        padding: 3rem 0;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

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

    .section-subtitle {
        margin-bottom: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-visual {
        max-width: 250px;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }

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

    .hero-intro-seo {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
        line-height: 1.6;
    }

    .badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.875rem;
    }

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

    .btn-xl {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

    .trust-icon {
        font-size: 1.5rem;
    }

    .trust-number {
        font-size: 1.25rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-title {
        font-size: 1.125rem;
    }

    .benefit-description {
        font-size: 0.875rem;
    }

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

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-icon {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .product-card {
        border-radius: 0.75rem;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.125rem;
    }

    .product-subtitle {
        font-size: 0.8125rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .testimonials-track {
        gap: 1rem;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 280px;
        padding: 1rem;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 0.8125rem;
    }

    .testimonial-text {
        font-size: 0.8125rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.875rem;
    }

    .cta-title {
        font-size: 1.625rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.625rem;
    }

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

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

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

    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .stat-icon,
    .stat-number {
        margin-bottom: 0;
    }

    .testimonial-card {
        min-width: 240px;
    }
}

/* Landscape Mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-visual {
        max-width: 200px;
    }

    .hero .container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-features {
        justify-content: flex-start;
    }

    .cta-container {
        flex-direction: row;
        justify-content: flex-start;
    }

    .trust-indicators {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .benefit-card:hover {
        transform: none;
    }

    .product-card:hover {
        transform: none;
    }

    .stat-item:hover {
        transform: none;
    }

    .faq-item:hover {
        transform: none;
    }

    .btn-large:hover {
        animation: none;
    }
}
