/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #ffd700;
    --secondary-yellow: #ffed4e;
    --dark-yellow: #e6c200;
    --background-black: #000000;
    --card-black: #111111;
    --border-gray: #333333;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark-gray: #999999;
    --gradient-yellow: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(135deg, #111111 0%, #000000 100%);
    --shadow-yellow: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--background-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: pulse 2s infinite;
}

.bee-logo {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    animation: rotate 2s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.loader-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    animation: pulse 2s infinite;
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    text-decoration: none;
}

.nav-logo i {
    font-size: 2rem;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .btn {
    margin-left: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--background-black);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--background-black);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-gray);
}

.btn-outline:hover {
    background: var(--primary-yellow);
    color: var(--background-black);
    border-color: var(--primary-yellow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        var(--background-black);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<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="1" fill="%23ffd700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 6rem 0 2rem;
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-video {
    margin: 2rem auto;
    max-width: 600px;
}

.demo-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-yellow);
    background: var(--background-black);
    box-shadow: var(--shadow-yellow);
}

.demo-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.video-fallback {
    background: var(--gradient-dark);
    border: 2px solid var(--primary-yellow);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    color: var(--text-white);
}

.video-fallback a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
}

.video-fallback a:hover {
    text-decoration: underline;
}

.video-placeholder {
    background: var(--gradient-dark);
    border: 2px solid var(--primary-yellow);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-yellow);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.stat {
    text-align: center;
    flex: 1;
    max-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-yellow);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Section */
.platform {
    background: var(--gradient-dark);
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-yellow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-gray);
}

/* Content Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.content-item {
    background: var(--card-black);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 1rem;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.content-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    border-radius: var(--border-radius);
    aspect-ratio: 650/750;
}

.content-item:hover .content-image {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.content-item:hover .content-image img {
    transform: scale(1.02);
}

.content-item h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    text-align: center;
}

.content-item ul {
    list-style: none;
    gap: 0.5rem;
}

.content-item li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.content-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Featured Section */
.featured {
    background: var(--gradient-dark);
    padding: 5rem 0;
    overflow: hidden;
}

.featured .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.featured .section-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.featured .section-header h3 .highlight {
    color: var(--primary-yellow);
}

.auto-carousel {
    margin-bottom: 2rem;
    overflow: hidden;
}

.carousel-track-auto {
    display: flex;
    gap: 10px;
    width: max-content;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.auto-carousel[data-direction="right"] .carousel-track-auto {
    animation-name: scroll-right;
}

.auto-carousel[data-direction="left"] .carousel-track-auto {
    animation-name: scroll-left;
}

.movie-card-auto {
    flex: 0 0 220px;
    height: 330px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.movie-card-auto:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.movie-card-auto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.movie-card-auto:hover img {
    filter: brightness(1.1);
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pausa a animação ao passar o mouse */
.auto-carousel:hover .carousel-track-auto {
    animation-play-state: paused;
}

/* Platforms Section */
.platforms .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.platforms .section-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.platforms-desktop {
    display: block;
    margin-bottom: 3rem;
}

.platforms-mobile {
    display: none;
    margin-bottom: 3rem;
}

.platform-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-row-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-logo {
    width: 240px;
    height: 140px;
    background: var(--card-black);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.5);
    overflow: hidden;
}

.platform-logo.zoom-in {
    animation: zoomInPlatform 0.6s ease forwards;
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.platform-logo:hover {
    transform: scale(1.05);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-yellow);
}

.platform-logo:hover img {
    filter: brightness(1.1);
}

@keyframes zoomInPlatform {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.platform-offer {
    text-align: center;
    background: var(--gradient-yellow);
    color: var(--background-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-yellow);
    margin-top: 2rem;
}

.platform-offer h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.price-old {
    text-decoration: line-through;
    color: #ff0000;
}

.price-highlight {
    color: var(--background-black);
    font-weight: 900;
}

/* Differentials Section */
.differentials {
    background: var(--gradient-dark);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.differential {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.differential:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-yellow);
}

.differential-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.differential h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.differential p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Free Trial Section */
.free-trial {
    background: var(--gradient-yellow);
    color: var(--background-black);
}

.trial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trial-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.trial-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.trial-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.trial-feature i {
    color: var(--background-black);
    font-size: 1.2rem;
}

.free-trial .btn-primary {
    background: var(--background-black);
    color: var(--primary-yellow);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.free-trial .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-dark);
    padding: 5rem 0;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.testimonials .section-header h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-carousel {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
}

.testimonial-slide {
    min-width: calc(20% - 8px);
    flex-shrink: 0;
}

.testimonial-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid var(--border-gray);
}

.testimonial-slide:hover img {
    transform: scale(1.05);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-yellow);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-yellow);
    color: var(--background-black);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plan {
    background: var(--card-black);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.plan:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-yellow);
}

.plan.featured {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-yellow);
    transform: scale(1.05);
}

.plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-yellow);
    color: var(--background-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.plan-equivalent {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.savings-badge {
    background: var(--primary-yellow);
    color: var(--background-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.plan.best-value {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
}

.plan.best-value:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-item i {
    color: var(--primary-yellow);
    font-size: 1rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.plan-header .plan-price {
    text-align: center;
    margin: 1rem 0;
}

.plan-header .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    display: inline;
}

.plan-header .period {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 600;
}

.plan-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Section */
.faq {
    background: var(--gradient-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-black);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-yellow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question i {
    color: var(--primary-yellow);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--gradient-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-yellow);
    width: 50px;
}

.contact-method h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--background-black);
    border-top: 1px solid var(--border-gray);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.footer-logo i {
    font-size: 2rem;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-yellow);
    color: var(--background-black);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transform: translateY(-100%);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .stat {
        max-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .platform-features,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials tablet responsiveness */
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials .section-header h3 {
        font-size: 1.6rem;
    }

    .testimonial-slide {
        min-width: calc(33.333% - 7px);
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platforms-desktop {
        display: none;
    }
    
    .platforms-mobile {
        display: block;
    }
    
    .platform-logo {
        width: 190px;
        height: 110px;
    }
    
    .platform-offer h2 {
        font-size: 1.4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plan.featured,
    .plan.best-value {
        transform: none;
    }

    .plan.featured:hover,
    .plan.best-value:hover {
        transform: translateY(-10px);
    }

    .plan-header .price {
        font-size: 2rem;
    }

    .savings-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .movie-card-auto {
        flex: 0 0 150px;
        height: 230px;
    }

    .carousel-track-auto {
        animation-duration: 40s;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 5rem 0 2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .platform-logo {
        width: 150px;
        height: 90px;
    }
    
    .platform-row-mobile {
        gap: 0.5rem;
    }
    
    .platform-offer h2 {
        font-size: 1.2rem;
    }

    .trial-features {
        flex-direction: column;
        gap: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-image {
        height: auto;
    }
    
    .content-image img {
        aspect-ratio: 650/750;
    }

    .content-item {
        padding: 1rem;
    }

    .content-item h3 {
        font-size: 1.2rem;
    }

    .content-item li {
        font-size: 0.9rem;
    }

    /* Testimonials responsiveness */
    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonials .section-header h3 {
        font-size: 1.4rem;
    }

    .testimonial-slide {
        min-width: calc(50% - 5px);
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 6px;
    border: 2px solid var(--background-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-yellow);
}

/* Selection Color */
::selection {
    background: var(--primary-yellow);
    color: var(--background-black);
}

::-moz-selection {
    background: var(--primary-yellow);
    color: var(--background-black);
}