/* Features Section Styles */
.features-section {
    background: white;
    position: relative;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<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="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.benefit-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.benefit-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #495057;
}

.benefit-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Stats Cards */
.stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.stats-content .stats-number {
    font-size: 28px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 5px;
}

.stats-content .stats-label {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Screenshots Section */
.screenshots-section {
    background: white;
}

.screenshots-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.screenshot-item {
    flex: 0 0 250px;
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.screenshot-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.screenshot-item h5 {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #495057 100%);
    color: white;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.download-feature i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-btn {
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn img {
    height: 60px;
    width: auto;
}

.qr-download {
    margin-top: 2rem;
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.1);
}

.download-preview {
    text-align: center;
}

.phone-preview img {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* QR Section */
.qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.qr-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    width: 100%;
}

.qr-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.qr-header p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 16px;
}

.qr-code {
    margin-bottom: 20px;
}

.qr-icon-large {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 80px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.qr-icon-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.qr-info .qr-url {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.qr-info .qr-instruction {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b7d 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-buttons {
    margin: 2rem 0;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    .feature-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .benefit-card {
        margin-bottom: 2rem;
        padding: 25px;
    }
    
    .benefit-card h4 {
        font-size: 20px;
    }
    
    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stats-card {
        margin-bottom: 1.5rem;
        padding: 20px;
    }
    
    .stats-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .qr-container {
        margin-top: 30px;
        padding: 30px;
    }
    
    .qr-icon-large {
        width: 120px;
        height: 120px;
        font-size: 60px;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .final-cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card h4 {
        font-size: 18px;
    }
    
    .benefit-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .stats-card {
        padding: 15px;
        margin-bottom: 1rem;
    }
    
    .stats-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stats-content .stats-number {
        font-size: 24px;
    }
    
    .download-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .screenshots-carousel {
        gap: 1rem;
    }
    
    .screenshot-item {
        flex: 0 0 200px;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-btn img {
        height: 50px;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .final-cta-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .feature-card h4 {
        font-size: 1.25rem;
    }
    
    .benefit-card {
        padding: 15px;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card h4 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    .benefit-features li {
        font-size: 13px;
    }
    
    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stats-card {
        padding: 12px;
    }
    
    .stats-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .stats-content .stats-number {
        font-size: 20px;
    }
    
    .stats-content .stats-label {
        font-size: 12px;
    }
    
    .qr-container {
        padding: 20px;
    }
    
    .qr-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .qr-header h4 {
        font-size: 18px;
    }
    
    .qr-info .qr-url {
        font-size: 14px;
    }
    
    .screenshot-item {
        flex: 0 0 180px;
    }
    
    .final-cta-stats {
        gap: 1rem;
    }
    
    .cta-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-stat .stat-label {
        font-size: 0.8rem;
    }
}
