/**
 * Landing Page v2 Styles
 * Visually rich, mobile-first design
 */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #212529;
}

/* Navigation */
.navbar {
    padding: 0.75rem 0;
    background: #fff !important;
    border-bottom: 1px solid #e9ecef;
}

/* Hero Section */
.hero-section {
    background: #f8f9fa;
    color: #212529;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-backdrop {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #e7f1ff;
    border: 1px solid #b6d4fe;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #0d6efd;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #212529;
}

.text-highlight {
    color: #0d6efd;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 500px;
    line-height: 1.6;
}

.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Movie Poster Showcase */
.hero-showcase {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.showcase-card {
    position: absolute;
    width: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.showcase-card img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

/* Position cards so ALL bottoms are visible - no overlapping of labels */
.showcase-card-1 {
    top: 5%;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

.showcase-card-2 {
    top: 10%;
    left: 28%;
    transform: rotate(2deg);
    z-index: 5;
}

.showcase-card-3 {
    top: 0;
    left: 56%;
    transform: rotate(-3deg);
    z-index: 2;
}

.showcase-card-4 {
    top: 50%;
    left: 10%;
    transform: rotate(4deg);
    z-index: 3;
}

.showcase-card-5 {
    top: 45%;
    left: 60%;
    transform: rotate(-4deg);
    z-index: 4;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.showcase-overlay i {
    color: #ffc107;
}

/* Personas Link */
.personas-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d6efd;
    transition: color 0.2s;
}

.personas-link a:hover {
    color: #0a58ca;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.features-section {
    background: #f8f9fa;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.feature-discover .feature-icon {
    background: #0d6efd;
}

.feature-track .feature-icon {
    background: #198754;
}

.feature-share .feature-icon {
    background: #dc3545;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.feature-list i {
    color: #198754;
    font-size: 0.85rem;
}

/* Streaming Section */
.streaming-section {
    background: #fff;
}

.streaming-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.streaming-benefit i {
    font-size: 1.25rem;
}

.streaming-showcase {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.service-badge {
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.service-badge img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.service-badge.active {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

/* Content Types */
.content-section {
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.2s;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-3px);
}

.content-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e7f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.content-icon i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.content-card h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Proof Section */
.proof-section {
    background: #fff;
}

.proof-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
}

.proof-card i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    display: block;
}

.proof-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.proof-card p {
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    color: #212529;
}

.cta-content h2 {
    font-weight: 700;
    color: #212529;
}

.cta-content p {
    color: #6c757d;
}

/* Footer */
.landing-footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.landing-footer a {
    text-decoration: none;
    color: #6c757d !important;
}

.landing-footer a:hover {
    color: #212529 !important;
    opacity: 1 !important;
}

/* Mobile Poster Strip */
.mobile-poster-strip {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.mobile-poster-card {
    position: relative;
    flex-shrink: 0;
}

.mobile-poster-card img {
    width: 65px;
    height: 97px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: block;
}

.mobile-poster-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.55rem;
    padding: 0.2rem 0.15rem;
    text-align: center;
    border-radius: 0 0 6px 6px;
    white-space: nowrap;
    overflow: hidden;
}

.mobile-poster-label i {
    color: #ffc107;
    font-size: 0.5rem;
}

/* Tablet Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .streaming-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    /* Hero - more compact */
    .hero-section {
        padding-top: 56px;
    }

    .hero-section .row {
        min-height: auto !important;
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
    }

    .hero-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
        margin-bottom: 0.5rem !important;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }

    .hero-cta {
        margin-bottom: 1rem !important;
    }

    .hero-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem !important;
        margin-top: 1rem !important;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .mobile-poster-card img {
        width: 70px;
        height: 105px;
    }

    .mobile-poster-label {
        font-size: 0.6rem;
        padding: 0.25rem 0.2rem;
    }

    .mobile-poster-label i {
        font-size: 0.55rem;
    }

    /* Features Section - horizontal scroll */
    .features-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .features-section .section-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem !important;
    }

    .features-section .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .features-section .row.g-4 {
        flex-wrap: wrap;
        gap: 0.75rem !important;
        padding-bottom: 0.5rem;
        margin: 0;
    }

    .features-section .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .feature-card {
        padding: 1rem;
        height: auto !important;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .feature-list {
        margin-top: 0.75rem;
    }

    .feature-list li {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    /* Streaming Section - compact */
    .streaming-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .streaming-section .section-title {
        font-size: 1.25rem;
    }

    .streaming-section .text-muted {
        font-size: 0.85rem;
    }

    .streaming-benefit {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .streaming-benefit i {
        font-size: 1rem;
    }

    .streaming-showcase {
        padding: 1rem;
    }

    .streaming-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.4rem;
    }

    .service-badge {
        padding: 0.3rem;
        border-radius: 6px;
    }

    .service-badge img {
        height: 30px;
    }

    /* Personas link */
    .personas-link a {
        font-size: 0.85rem;
    }

    /* Content Types - compact mobile grid */
    .content-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .content-section .section-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem !important;
    }

    .content-section .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .content-card {
        padding: 0.75rem 0.5rem;
    }

    .content-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .content-icon i {
        font-size: 1rem;
    }

    .content-card h5 {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }

    .content-card .small {
        font-size: 0.6rem;
    }

    /* Proof Section - 2x2 compact grid */
    .proof-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .proof-card {
        padding: 0.6rem;
        border-radius: 8px;
    }

    .proof-card i {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .proof-card h5 {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .proof-card p {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    /* CTA Section - compact */
    .cta-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .cta-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem !important;
    }

    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .cta-content .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-content .mt-3 {
        margin-top: 0.5rem !important;
        font-size: 0.75rem !important;
    }

    /* Footer - compact */
    .landing-footer {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .landing-footer img {
        height: 22px !important;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .hero-cta .btn {
        display: block;
        width: 100%;
    }

    .hero-cta .btn.me-2 {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }

    .mobile-poster-card img {
        width: 60px;
        height: 90px;
    }

    .mobile-poster-label {
        font-size: 0.5rem;
        padding: 0.2rem 0.1rem;
    }

    .streaming-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
