/* Landing Page Styles */

/* Landing Page Container */
.landing-page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.landing-page.hidden {
    display: none !important;
}

/* Navigation */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.4s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-icon {
    font-size: 1.8rem;
}

.brand-name {
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn.primary {
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    border: none;
    color: #000 !important;
    font-weight: 600;
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7rem 5rem 4rem;
    gap: 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.hero-content {
    flex: 1;
    max-width: 620px;
}



.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #f0b90b, #ff6b35, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    color: #000;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-note {
    color: #888;
    font-size: 0.9rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-video-container {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
}



/* ======================================================
   FEATURES SECTION
   ====================================================== */
.features-section {
    padding: 4rem 2rem;
    background: #0d0d1a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
}

.features-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.features-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.features-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(240, 185, 11, 0.2);
    border: 1px solid rgba(240, 185, 11, 0.5);
    color: #f0b90b;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-arrow:hover {
    background: rgba(240, 185, 11, 0.4);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.feature-card {
    flex: 0 0 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 185, 11, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #888;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* ======================================================
   REVIEWS SECTION
   ====================================================== */
.reviews-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 185, 11, 0.2);
}

.review-stars {
    color: #f0b90b;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #bbb;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.review-role {
    font-size: 0.75rem;
    color: #888;
}

/* ======================================================
   PRICING SECTION
   ====================================================== */
.pricing-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0d0d1a 0%, #0a0a1f 100%);
    border-top: 1px solid rgba(240, 185, 11, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 185, 11, 0.3);
}

.pricing-card.popular {
    border: 2px solid #f0b90b;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.08), rgba(255, 107, 53, 0.04));
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pricing-features li {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, 0.4);
}

/* Desktop Deal Banner */
.pricing-desktop-deal {
    max-width: 1100px;
    margin: 0 auto;
}

.desktop-deal-inner {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.06), rgba(255, 107, 53, 0.04));
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.desktop-deal-text {
    flex: 1;
}

.desktop-deal-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(240, 185, 11, 0.15);
    color: #f0b90b;
    border: 1px solid rgba(240, 185, 11, 0.3);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.desktop-deal-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.desktop-deal-text p {
    color: #aaa;
    font-size: 0.9rem;
}

.desktop-deal-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    color: #000 !important;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.desktop-deal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.5);
}

/* ======================================================
   FINAL CTA SECTION
   ====================================================== */
.final-cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(240, 185, 11, 0.1);
}

.final-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.final-cta-sub {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======================================================
   FOOTER
   ====================================================== */
.landing-footer {
    background: #0a0a0a;
    padding: 2rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f0b90b;
}

.footer-copy {
    color: #666;
    font-size: 0.85rem;
}

/* ======================================================
   AUTH MODALS
   ====================================================== */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.auth-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
}

.auth-modal h2 {
    margin-bottom: 0.5rem;
}

.auth-modal-subtitle {
    color: #888;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}

.auth-form input:focus {
    outline: none;
    border-color: #f0b90b;
}

.auth-submit-btn {
    padding: 1rem;
    background: linear-gradient(135deg, #f0b90b, #ff6b35);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
}

.auth-divider {
    margin: 1rem 0;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

.auth-google-btn {
    width: 100%;
    padding: 0.95rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.auth-google-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.auth-toggle {
    margin-top: 1.5rem;
    color: #888;
}

.auth-toggle a {
    color: #f0b90b;
}

.auth-error {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
}

.auth-error.success {
    background: rgba(0, 200, 120, 0.1);
    border-color: rgba(0, 200, 120, 0.35);
    color: #5df2ad;
}

/* Upgrade Modal */
.upgrade-content {
    max-width: 500px;
}

.upgrade-tiers {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.upgrade-tier {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.upgrade-tier:hover {
    transform: translateY(-3px);
    border-color: #f0b90b;
}

.upgrade-tier.popular {
    border: 2px solid #f0b90b;
    background: rgba(240, 185, 11, 0.1);
}

.tier-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0b90b;
}

.tier-videos {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
}

.tier-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-badge.basic {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.tier-badge.pro {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
}

.tier-badge.premium {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.tier-badge.premium_plus {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
}

.quota-display {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

/* ======================================================
   YOUTUBE CLICK-TO-PLAY FACADE
   ====================================================== */
.yt-facade {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.yt-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.yt-facade:hover .yt-thumbnail {
    filter: brightness(0.7);
}

.yt-play-btn {
    position: relative;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
    transition: transform 0.2s;
}

.yt-facade:hover .yt-play-btn {
    transform: scale(1.1);
}

.yt-play-bg {
    fill: #ff0000;
    fill-opacity: 0.92;
}

.yt-play-arrow {
    fill: #fff;
}

.yt-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }


    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .nav-links a:not(.nav-btn) {
        display: none;
    }

    .landing-nav {
        padding: 1rem 1rem;
    }


    .features-section {
        padding: 2rem 1rem;
    }

    .features-carousel-container {
        padding: 0 2rem;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .feature-card {
        flex: 0 0 160px;
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .desktop-deal-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .desktop-deal-text {
        text-align: center;
    }

    .final-cta-title {
        font-size: 1.6rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .cta-btn {
        width: 100%;
        max-width: 400px;
    }

    .landing-footer {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-video-container {
        max-width: 100%;
    }

    .upgrade-tiers {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}
