/* Why Us Page Styles */
.why-us-hero {
    background: linear-gradient(135deg, rgba(0, 238, 255, 0.2) 0%, rgba(13, 13, 13, 1) 100%);
    padding: 140px 20px 80px;
    text-align: center;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-color);
}

.why-us-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.why-us-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stats .stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hero-stats .stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: rgba(0, 238, 255, 0.1);
}

.hero-stats .stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-stats .stat p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

.features-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 238, 255, 0.2);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #00a8ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.feature-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.developers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 1) 100%);
}

.developers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.developer-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.developer-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 238, 255, 0.2);
}

.developer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.developer-info {
    padding: 25px;
}

.developer-name {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.developer-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.developer-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.developer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: rgba(0, 238, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.developer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.developer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.developer-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.testimonials-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.testimonial-content {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 238, 255, 0.1) 0%, rgba(13, 13, 13, 1) 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.download-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.download-features {
    margin-bottom: 40px;
}

.download-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.download-features .feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-download-primary, .btn-download-secondary {
    padding: 20px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.btn-download-primary {
    background: linear-gradient(135deg, var(--primary-color), #00a8ff);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-download-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 238, 255, 0.3);
}

.btn-download-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-download-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(0, 238, 255, 0.1);
    transform: translateY(-5px);
}

.btn-download-primary small, .btn-download-secondary small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: normal;
}

.system-requirements {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.system-requirements h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

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

.requirement h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.requirement ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.requirement li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.download-preview {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.preview-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 238, 255, 0.1), rgba(0, 238, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.preview-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.version-info h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.changelog {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.changelog li {
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.changelog li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.faq-why-us {
    padding: 80px 0;
    background: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Footer trust badges */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.badge i {
    color: var(--primary-color);
}

/* Download Modal */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.download-modal.active {
    display: flex;
}

.download-modal .modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--primary-color);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .preview-image {
        width: 150px;
        height: 150px;
    }
    
    .preview-image i {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .why-us-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .btn-download-primary, .btn-download-secondary {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .btn-download-primary small, .btn-download-secondary small {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .developers-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}