/* Home Page Specific Styles */

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F1835 0%, #2A1F3D 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FDE7B3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FDE7B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #FDE7B3;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Overview Section */
.overview {
    padding: 4rem 0;
    background: #1F1835;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.overview-icon {
    font-size: 3rem;
    color: #FDE7B3;
    margin-bottom: 1rem;
}

.overview-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.overview-item p {
    color: #FDE7B3;
    line-height: 1.5;
}

.overview-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mobile Security Section */
.mobile-security {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A1F3D 0%, #1F1835 100%);
}

.mobile-security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-security-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.mobile-security-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FDE7B3;
}

.mobile-security-text a {
    color: #FDE7B3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.mobile-security-text a:hover {
    color: #ffffff;
}

.mobile-security-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background: #1F1835;
}

.highlights-table {
    margin-bottom: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.highlights-table table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlights-table th {
    background: linear-gradient(135deg, rgba(206, 0, 12, 0.8) 0%, rgba(144, 0, 6, 0.8) 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 1.5rem 1rem;
    text-align: center;
}

.highlights-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlights-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.highlights-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Related Offers Section */
.related-offers {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A1F3D 0%, #1F1835 100%);
    text-align: center;
}

.related-offers p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #FDE7B3;
}

.related-offers-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #1F1835;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #FDE7B3;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(206, 0, 12, 0.1) 0%, rgba(144, 0, 6, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #FDE7B3;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .overview {
        padding: 3rem 0;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-item {
        padding: 1.5rem;
    }
    
    .mobile-security {
        padding: 3rem 0;
    }
    
    .mobile-security-text h2 {
        font-size: 2rem;
    }
    
    .highlights {
        padding: 3rem 0;
    }
    
    .highlights-table {
        font-size: 0.9rem;
    }
    
    .highlights-table th,
    .highlights-table td {
        padding: 1rem 0.5rem;
    }
    
    .related-offers {
        padding: 3rem 0;
    }
    
    .faq {
        padding: 3rem 0;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .overview-item {
        padding: 1rem;
    }
    
    .overview-icon {
        font-size: 2.5rem;
    }
    
    .mobile-security-text h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
