/* Responsive Design */
@media (max-width: 968px) {
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--dark-2);
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--dark-3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .mobile-app-content {
        flex-direction: column;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--dark-3);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.trust-badge h4 {
    color: var(--light-1);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-badge p {
    color: var(--gray-1);
    font-size: 0.875rem;
}

/* Cinema Performance Widget */
.cinema-performance {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.performance-widget {
    background: var(--dark-3);
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    overflow: hidden;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--dark-2);
    border-bottom: 1px solid var(--dark-4);
    flex-wrap: wrap;
    gap: 1rem;
}

.widget-tabs {
    display: flex;
    gap: 1rem;
}

.widget-tab {
    background: transparent;
    border: none;
    color: var(--gray-1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.widget-tab.active {
    background: var(--primary);
    color: white;
}

.widget-refresh {
    color: var(--gray-1);
    font-size: 0.875rem;
}

.widget-refresh i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.performance-grid {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.performance-card {
    background: var(--dark-2);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--dark-4);
    display: grid;
    grid-template-columns: auto 1fr 2fr;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.performance-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.performance-rank {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 60px;
    text-align: center;
}

.performance-movie {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.movie-thumb {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.sci-fi-thumb { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.action-thumb { background: linear-gradient(135deg, #ef4444, #f59e0b); }
.drama-thumb { background: linear-gradient(135deg, #10b981, #06b6d4); }
.horror-thumb { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.comedy-thumb { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.fantasy-thumb { background: linear-gradient(135deg, #8b5cf6, #06b6d4); }

.movie-details h4 {
    color: var(--light-1);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.movie-genre,
.movie-release {
    color: var(--gray-1);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.movie-genre i,
.movie-release i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item.highlight {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-1);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value-large {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-1);
    margin-bottom: 0.25rem;
}

.stat-value-roi {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--success);
}

.stat-trend {
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-trend.up {
    color: var(--success);
}

.stat-trend i {
    margin-right: 0.25rem;
}

.roi-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.roi-badge.success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.roi-badge.good {
    background: rgba(6, 182, 212, 0.2);
    color: var(--secondary);
}

/* Celebrity Endorsements */
.celebrity-endorsements {
    background: var(--dark-2);
}

.endorsements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.endorsement-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.celebrity-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.celebrity-info {
    flex: 1;
}

.celebrity-info h3 {
    color: var(--light-1);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.celebrity-title {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.celebrity-credits {
    color: var(--gray-1);
    font-size: 0.875rem;
}

.verified-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.verified-badge i {
    margin-right: 0.25rem;
}

.endorsement-content {
    position: relative;
    padding-left: 1.5rem;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.endorsement-content p {
    color: var(--gray-1);
    line-height: 1.8;
    font-style: italic;
}

.endorsement-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-4);
    color: var(--gray-1);
    font-size: 0.875rem;
}

.endorsement-meta i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Investment Tiers */
.investment-tiers {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--dark-3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--dark-4);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tier-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tier-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bronze .tier-badge { color: #cd7f32; }
.silver .tier-badge { color: #c0c0c0; }
.gold .tier-badge { color: #ffd700; }
.platinum .tier-badge { color: #e5e4e2; }

.tier-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--light-1);
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.75rem 0;
    color: var(--gray-1);
    border-bottom: 1px solid var(--dark-4);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features i {
    color: var(--success);
    margin-right: 0.75rem;
}

/* Success Stories */
.success-stories {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--dark-3);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.investor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.investor-info {
    flex: 1;
}

.investor-info h4 {
    color: var(--light-1);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.investor-info p {
    color: var(--gray-1);
    font-size: 0.875rem;
}

.story-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

.story-content p {
    color: var(--gray-1);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-4);
}

.metric-small {
    text-align: center;
}

.metric-small .metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-1);
    margin-bottom: 0.25rem;
}

.metric-small .metric-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* Risk Management */
.risk-management {
    background: var(--dark-2);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.risk-card {
    background: var(--dark-3);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.risk-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.risk-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.risk-card h3 {
    color: var(--light-1);
    margin-bottom: 1rem;
}

.risk-card p {
    color: var(--gray-1);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.risk-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.risk-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.risk-badge i {
    margin-right: 0.25rem;
}

/* Educational Section */
.educational-section {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.education-card {
    background: var(--dark-3);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.education-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.education-image {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem;
    text-align: center;
}

.education-image i {
    font-size: 4rem;
    color: white;
}

.education-content {
    padding: 2rem;
}

.education-content h3 {
    color: var(--light-1);
    margin-bottom: 1rem;
}

.education-content p {
    color: var(--gray-1);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.education-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.education-stats span {
    color: var(--gray-1);
    font-size: 0.875rem;
}

.education-stats i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.education-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.education-link:hover {
    gap: 1rem;
}

/* Press Section */
.press-section {
    background: var(--dark-2);
}

.press-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.press-logo {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark-3);
    border-radius: 12px;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.press-logo:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.press-logo i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.press-logo span {
    display: block;
    color: var(--light-1);
    font-weight: 600;
}

.press-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-quote-card {
    background: var(--dark-3);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.press-quote-card p {
    color: var(--gray-1);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.press-quote-card span {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--dark-3);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    color: var(--light-1);
    font-size: 1.125rem;
}

.faq-answer p {
    color: var(--gray-1);
    line-height: 1.7;
    padding-left: 2.5rem;
}

/* Mobile App Section */
.mobile-app-section {
    background: var(--dark-2);
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-app-subtitle {
    font-size: 1.125rem;
    color: var(--gray-1);
    margin-bottom: 2rem;
    text-align: left;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-feature i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mobile-feature h4 {
    color: var(--light-1);
    margin-bottom: 0.25rem;
}

.mobile-feature p {
    color: var(--gray-1);
    font-size: 0.875rem;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.app-button {
    background: var(--dark-3);
    color: var(--light-1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.app-button:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.app-button i {
    font-size: 2rem;
}

.app-button .download-text {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-1);
}

.app-button .store-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.app-stats {
    display: flex;
    gap: 2rem;
}

.app-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-1);
    font-size: 0.875rem;
}

.app-stat i {
    color: var(--accent);
}

.phone-mockup {
    background: var(--gradient);
    height: 500px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--dark-3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.phone-mockup i {
    font-size: 8rem;
    color: white;
}

/* Partnership Section */
.partnerships-section {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: var(--dark-3);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.partner-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.partner-card h4 {
    color: var(--light-1);
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: var(--gray-1);
    font-size: 0.875rem;
}

/* Community Impact */
.community-impact {
    background: var(--dark-2);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--dark-3);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.impact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.125rem;
    color: var(--light-1);
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-card p {
    color: var(--gray-1);
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
    padding: 4rem 0;
}

.newsletter-card {
    background: var(--dark-3);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-content h2 {
    color: var(--light-1);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--gray-1);
    line-height: 1.7;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 12px;
    color: var(--light-1);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-note {
    color: var(--gray-1);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.newsletter-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-1);
}

.cta-feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

.cta-note {
    color: var(--gray-1);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 968px) {
    .performance-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .performance-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .endorsements-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
    }
    
    .mobile-app-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .widget-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .widget-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .widget-tab {
        width: 100%;
        text-align: center;
    }
    
    .performance-card {
        padding: 1rem;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        text-align: left;
    }
    
    .story-header {
        flex-wrap: wrap;
    }
    
    .story-amount {
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-download-buttons {
        flex-direction: column;
    }
    
    .app-button {
        width: 100%;
        justify-content: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group button {
        width: 100%;
    }
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Hover Effects for Interactive Elements */
.performance-card,
.story-card,
.risk-card,
.education-card,
.tier-card,
.faq-item,
.partner-card,
.impact-card {
    cursor: pointer;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection Styling */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gradient Text Animation */
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text-animated {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

/* Pulse Animation for Important Elements */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark-3);
    color: var(--light-1);
    text-align: center;
    border-radius: 8px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.875rem;
    border: 1px solid var(--primary);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary);
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
}

.badge-info {
    background: rgba(6, 182, 212, 0.2);
    color: var(--secondary);
}

/* Card Shine Effect */
@keyframes card-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: card-shine 3s infinite;
}

/* Floating Labels for Forms */
.form-floating {
    position: relative;
}

.form-floating input {
    width: 100%;
    padding: 1.5rem 1rem 0.5rem;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 12px;
    color: var(--light-1);
    font-size: 1rem;
}

.form-floating label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray-1);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
    top: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-image {
    height: 200px;
    width: 100%;
}

/* Enhanced Button Variants */
.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: white;
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gradient::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 ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-online {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-online::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

.status-offline {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-offline::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

/* Image Zoom Effect */
.image-zoom {
    overflow: hidden;
    border-radius: 12px;
}

.image-zoom img {
    transition: transform 0.5s ease;
}

.image-zoom:hover img {
    transform: scale(1.1);
}

/* Text Gradient Effects */
.text-gradient-primary {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider Styles */
.divider {
    height: 1px;
    background: var(--dark-4);
    margin: 2rem 0;
}

.divider-gradient {
    height: 2px;
    background: var(--gradient);
    margin: 2rem 0;
    opacity: 0.5;
}

/* Grid Overlay Effect */
.grid-overlay {
    position: relative;
}

.grid-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(26, 27, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Neon Glow Text */
.neon-text {
    color: var(--primary);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.5),
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .newsletter-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --success: #10b981;
    --dark-1: #0a0a0f;
    --dark-2: #13131a;
    --dark-3: #1c1c27;
    --dark-4: #252533;
    --light-1: #f8fafc;
    --light-2: #e2e8f0;
    --gray-1: #64748b;
    --gray-2: #475569;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, #8b5cf6, #ec4899);
    --glow: 0 0 30px rgba(139, 92, 246, 0.4);
    --glow-2: 0 0 40px rgba(139, 92, 246, 0.6);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-1);
    color: var(--light-2);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-1);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-1);
    text-decoration: none;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--light-2);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropbtn {
    background: none;
    border: none;
    color: var(--light-2);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-dropbtn:hover {
    color: var(--primary);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background: var(--dark-2);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid var(--dark-3);
    z-index: 1;
    overflow: hidden;
}

.nav-dropdown-content a {
    color: var(--light-2);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.nav-dropdown-content a:hover {
    background: var(--dark-3);
    color: var(--primary);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-2);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Unique Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15) 0%, var(--dark-1) 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.title-main {
    color: var(--light-1);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-1);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-2);
}

.btn-secondary {
    background: transparent;
    color: var(--light-2);
    border: 2px solid var(--gray-2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.7; }
    50% { transform: rotate(45deg) translate(-10px, -10px); opacity: 1; }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Features Grid */
.features {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--dark-3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-1);
}

.feature-card p {
    color: var(--gray-1);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: var(--dark-2);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-1);
}

.step-card p {
    color: var(--gray-1);
    line-height: 1.7;
}

/* Platform Features */
.platform-features {
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.showcase-card {
    background: var(--dark-3);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.showcase-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.showcase-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--light-1);
}

.showcase-card p {
    color: var(--gray-1);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.showcase-features {
    list-style: none;
}

.showcase-features li {
    padding: 0.75rem 0;
    color: var(--gray-1);
    border-bottom: 1px solid var(--dark-4);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-features li:last-child {
    border-bottom: none;
}

.showcase-features i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: var(--dark-2);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-box {
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-1);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Movies Showcase */
.movies-showcase {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.movie-card {
    background: var(--dark-2);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--dark-3);
    transition: all 0.4s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.movie-poster {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.poster-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
}

.poster-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.poster-image.sci-fi { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.poster-image.action { background: linear-gradient(135deg, #ef4444, #f59e0b); }
.poster-image.drama { background: linear-gradient(135deg, #10b981, #06b6d4); }

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.movie-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}

.stat {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
}

.movie-info {
    padding: 1.5rem;
}

.movie-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-1);
}

.movie-info > p {
    color: var(--gray-1);
    margin-bottom: 1rem;
}

.movie-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-3);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-1);
}

/* Testimonials */
.testimonials {
    background: var(--dark-2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--dark-3);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    color: var(--gray-1);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    color: var(--light-1);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--gray-1);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-1);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-1);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--light-1);
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: var(--gray-1);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-section p {
    color: var(--gray-1);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-3);
    color: var(--gray-1);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.6s both;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--dark-2);
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--dark-3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Logo styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.65rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    letter-spacing: -0.5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
    }
}


/* ====================== */
/* 1. HERO BUTTONS – keep them in a row on mobile */
/* ====================== */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row;          /* override the column setting */
        flex-wrap: wrap;              /* allow wrapping only if really needed */
        justify-content: center;
        gap: 1rem;                    /* nice spacing between buttons */
    }

    .hero-buttons .btn {
        flex: 1;                      /* both buttons take equal space */
        min-width: 120px;             /* prevents them from shrinking too much */
        max-width: none;              /* remove the 280px cap */
        width: auto;                  /* let flex handle it */
        padding: 16px 24px;           /* slightly smaller but still comfy */
        font-size: 1rem;
    }
}

/* ====================== */
/* 2. HERO STATS – keep them in one row (3 items) on mobile */
/* ====================== */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;          /* override column */
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 3rem;               /* vertical + horizontal gap */
    }

    .hero-stat {
        flex: 1;
        min-width: 120px;             /* ensures 3 fit nicely */
        text-align: center;
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }
}

/* ====================== */
/* 3. TRUST SECTION – always 2 columns on mobile (2×3 grid) */
/* ====================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

/* Force exactly 2 columns on mobile */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;   /* 2 per row → 3 rows total (5 items + 1 empty) */
        gap: 1.5rem;
    }

    .trust-badge {
        padding: 1.25rem;
    }

    .trust-badge i {
        font-size: 2.2rem;
    }

    .trust-badge h4 {
        font-size: 0.95rem;
    }

    .trust-badge p {
        font-size: 0.825rem;
    }
}

/* Optional: center the last row if you have an odd number (5 items) */
@media (max-width: 768px) {
    .trust-grid {
        justify-items: center;
    }
    .trust-badge:nth-child(5) {
        grid-column: 1 / -1;   /* 5th badge spans both columns so it’s centered */
    }
}

.cinema-performance-carousel {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.performance-slide-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.performance-slide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.rank-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffd700;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
