/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Colors */
    --primary-color: #1B2845;
    --secondary-color: #B76E79;
    --accent-color: #E8D1C5;
    --bg-color: #FFFFFF;
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-light: #000000;
    
    /* Typography */
    --font-heading: 'Lobster', cursive;
    --font-body: 'Lexend', sans-serif;
    --font-accent: 'Rubik', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(27, 40, 69, 0.05);
    --shadow-md: 0 4px 12px rgba(27, 40, 69, 0.1);
    --shadow-lg: 0 8px 24px rgba(27, 40, 69, 0.15);
    --shadow-xl: 0 16px 48px rgba(27, 40, 69, 0.2);
    
    /* Header Height */
    --header-height: 80px;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.7;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow-x: hidden;
}

/* Marble Background Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23E8D1C5' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #000000;
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: black;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #C88694);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-trial {
    background: linear-gradient(135deg, var(--secondary-color), #C88694);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ==================== HEADER/NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav__logo .logo-img {
    height: 65px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav__link {
    font-family: var(--font-accent);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-trial-btn {
    display: none;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding-top: calc(var(--header-height) + var(--spacing-2xl));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
}

.hero__content {
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 6vw, 4.3rem);
    color: #000000;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    max-width: 800px;
    letter-spacing: 0.5px;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero__image {
    animation: fadeInRight 1s ease-out;
    position: relative;
}

.hero__animation {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tv-screen {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #1B2845, #2C3E60);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 40, 69, 0.4);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.tv-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.1), transparent);
}

.streaming-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: waveAnimation 3s ease-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 1s;
}

.wave:nth-child(3) {
    animation-delay: 2s;
}

.play-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.tv-stand {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #C88694);
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.tv-stand::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 10px;
    background: var(--primary-color);
    bottom: -10px;
    left: 20%;
    border-radius: 5px;
}

.floating-devices {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.device {
    position: absolute;
    font-size: 3rem;
    animation: floatDevice 4s ease-in-out infinite;
}

.device-phone {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.device-tablet {
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.device-laptop {
    top: 20%;
    right: 5%;
    animation-delay: 3s;
}

.hero__decoration {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

/* ==================== COUNTER SECTION ==================== */
.counter {
    background: linear-gradient(135deg, var(--primary-color), #2C3E60);
    color: white;
    padding: var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
}

.counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(232, 209, 197, 0.03) 10px,
        rgba(232, 209, 197, 0.03) 20px
    );
    animation: movePattern 20s linear infinite;
}

.counter__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.counter__item {
    text-align: center;
    padding: var(--spacing-md);
}

.counter__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter__number::after {
    content: '+';
}

.counter__label {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* ==================== LOGO SLIDER ==================== */
.logo-slider {
    background: white;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.logo-slider__container {
    overflow: hidden;
}

.logo-slider__track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

.logo-slider__item {
    flex: 0 0 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    margin: 0 var(--spacing-md);
}

.logo-slider__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo-slider__item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.how-it-works__card {
    background: linear-gradient(135deg, var(--primary-color), #2C3E60);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.how-it-works__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.how-it-works__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.how-it-works__card:hover::before {
    transform: scaleX(1);
}

.how-it-works__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: rgba(183, 110, 121, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.how-it-works__icon img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.how-it-works__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.how-it-works__description {
    color: white;
    line-height: 1.7;
}

/* ==================== PRICING ==================== */
.pricing {
    background: linear-gradient(180deg, rgba(232, 209, 197, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing__card {
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.15), rgba(232, 209, 197, 0.3));
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid var(--accent-color);
}

.pricing__card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.pricing__card--featured {
    background: linear-gradient(135deg, var(--primary-color), #2C3E60);
    color: white;
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.pricing__card--featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.pricing__card--featured .pricing__name,
.pricing__card--featured .pricing__period,
.pricing__card--featured .pricing__feature {
    color: white;
}

.pricing__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #C88694);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing__header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--accent-color);
}

.pricing__card--featured .pricing__header {
    border-bottom-color: rgba(232, 209, 197, 0.3);
}

.pricing__name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.pricing__period {
    font-family: var(--font-accent);
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing__price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pricing__currency {
    font-size: 2rem;
    vertical-align: super;
}

.pricing__amount {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing__card--featured .pricing__amount {
    color: white;
}

.pricing__features {
    margin-bottom: var(--spacing-lg);
}

.pricing__feature {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(232, 209, 197, 0.3);
    font-size: 0.95rem;
}

.pricing__feature:last-child {
    border-bottom: none;
}

.pricing__card .btn {
    width: 100%;
}

/* ==================== MOVIES SLIDER ==================== */
.movies-slider {
    background: var(--primary-color);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.movies-slider .section__title {
    color: white;
    margin-bottom: var(--spacing-xl);
}

.movies-slider .section__title::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.movies-slider__container {
    overflow: hidden;
    margin-top: var(--spacing-lg);
}

.movies-slider__track {
    display: flex;
    animation: scrollReverse 40s linear infinite;
    width: fit-content;
}

.movies-slider__item {
    flex: 0 0 350px;
    height: 500px;
    margin: 0 var(--spacing-sm);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.movies-slider__item:hover {
    box-shadow: 0 12px 40px rgba(183, 110, 121, 0.4);
}

.movies-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.movies-slider__item:hover img {
    transform: scale(1.2);
    object-position: center 40%;
}

/* ==================== BANNER ==================== */
.banner {
    padding: var(--spacing-lg) 0;
}

.banner__img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ==================== FEATURES ==================== */
.features__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), #2C3E60);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.features__item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.features__item--reverse {
    grid-template-columns: 1fr 1fr;
}

.features__item--reverse .features__content {
    order: 2;
}

.features__item--reverse .features__image {
    order: 1;
}

.features__item--reverse:hover {
    transform: translateX(-10px);
}

.features__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.features__description {
    color: white;
    font-size: 1.125rem;
    line-height: 1.8;
}

.features__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features__image img {
    width: 100%;
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: transform var(--transition-normal);
}

.features__item:hover .features__image img {
    transform: scale(1.1) rotate(5deg);
}

/* ==================== FAQ ==================== */
.faq {
    background: linear-gradient(180deg, rgba(232, 209, 197, 0.1) 0%, white 100%);
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-xl);
}

.faq__item {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq__item:hover {
    box-shadow: var(--shadow-md);
}

.faq__question {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #2C3E60);
    border: none;
    padding: var(--spacing-md);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-accent);
    font-size: 1.125rem;
    color: white;
    font-weight: 600;
    transition: all var(--transition-normal);
    border-radius: 10px;
}

.faq__question:hover {
    background: linear-gradient(135deg, #2C3E60, #1B2845);
    transform: translateX(5px);
}

.faq__icon {
    font-size: 1.5rem;
    color: white;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: linear-gradient(180deg, rgba(232, 209, 197, 0.1) 0%, white 100%);
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial__card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid var(--accent-color);
}

.testimonial__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.testimonial__info {
    flex: 1;
}

.testimonial__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial__rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial__rating .star {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ==================== CTA ==================== */
.cta {
    background: 
        linear-gradient(135deg, rgba(27, 40, 69, 0.95), rgba(44, 62, 96, 0.95)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23B76E79' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23E8D1C5'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.2;
    animation: pulse 8s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(232, 209, 197, 0.03) 10px,
            rgba(232, 209, 197, 0.03) 20px
        );
    pointer-events: none;
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: popIn 0.8s ease-out;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: var(--spacing-md);
    animation: titleBounce 2s ease-in-out infinite;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta__description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s backwards;
}

.cta__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s backwards;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer__link {
    font-family: var(--font-accent);
    color: white;
    opacity: 0.9;
    transition: all var(--transition-normal);
}

.footer__link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer__separator {
    opacity: 0.5;
}

.footer__copyright {
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes waveAnimation {
    0% {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes floatDevice {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes titleBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
}

/* ==================== HERO SCREEN ANIMATION ==================== */
.hero__screen-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.hero-screen {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    background: #000;
    border-radius: 20px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 10px #1a1a1a,
        0 20px 50px rgba(0,0,0,0.5);
    animation: floatScreen 6s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-screen:hover {
    transform: scale(1.02);
}

/* Screen Background Pattern */
.hero-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2C3E60 0%, #000000 100%);
    opacity: 0.8;
    z-index: 0;
}

.screen-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(183, 110, 121, 0.2), transparent 70%);
    animation: screenGlow 3s ease-in-out infinite;
    z-index: 2;
}

/* UI Elements */
.screen-ui-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.screen-ui-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 10px var(--secondary-color);
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.play-button-animated {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.play-button-animated:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(183, 110, 121, 0.2);
    border-color: var(--secondary-color);
}

.play-button-animated::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: ripple 2s infinite;
    opacity: 0;
}

.play-button-animated::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: ripple 2s infinite 0.5s;
    opacity: 0;
}

.play-icon-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 10px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.streaming-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0.3;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
    animation: streamFlow 3s linear infinite;
}

.line:nth-child(1) { left: 15%; animation-delay: 0s; animation-duration: 4s; }
.line:nth-child(2) { left: 35%; animation-delay: 1s; animation-duration: 3s; }
.line:nth-child(3) { left: 65%; animation-delay: 2s; animation-duration: 5s; }
.line:nth-child(4) { left: 85%; animation-delay: 0.5s; animation-duration: 3.5s; }

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ==================== CATEGORIES SECTION ==================== */
.categories.section {
    padding-bottom: var(--spacing-md);
}

/* ==================== FEATURES SECTION ==================== */
.features.section {
    padding-top: var(--spacing-md);
}

/* ==================== CATEGORIES SECTION ==================== */
.categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.category__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.category__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.category__image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category__card:hover .category__image img {
    transform: scale(1.1);
}

.category__content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: white;
    position: relative;
    z-index: 2;
}

.category__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-normal);
}

.category__card:hover .category__title {
    color: var(--secondary-color);
}

.category__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Animations */
@keyframes floatScreen {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes screenGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes playButtonPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(183, 110, 121, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 30px rgba(183, 110, 121, 0.9);
    }
}

@keyframes streamFlow {
    0% {
        top: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 1024px) {
    .hero__container,
    .features__item,
    .features__item--reverse {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero__content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .features__item--reverse .features__content,
    .features__item--reverse .features__image {
        order: 0;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing__card--featured {
        transform: scale(1);
    }
    
    .how-it-works__grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
        --spacing-2xl: 4rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-color);
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        padding: 8rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
        display: flex;
        flex-direction: column;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__close {
        color: white;
        background: rgba(255,255,255,0.1);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        top: 1.5rem;
        right: 1.5rem;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav__link {
        color: rgba(255,255,255,0.9);
        font-size: 1.2rem;
        padding: 1.5rem 0;
        display: block;
        width: 100%;
        text-align: center;
        transition: color 0.3s ease;
    }

    .nav__link:hover, .nav__link.active {
        color: var(--secondary-color);
    }

    .nav__link::after {
        display: none;
    }

    .mobile-trial-btn {
        display: block !important;
        margin-top: 2rem;
        text-align: center;
        background: linear-gradient(135deg, var(--secondary-color), #C88694);
        border: none;
        width: 100%;
        padding: 1.5rem;
        font-size: 1.2rem !important;
        font-weight: 700;
        color: white;
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .nav__toggle {
        display: block;
    }
    
    .btn-trial {
        display: none;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + var(--spacing-lg));
        min-height: auto;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .counter__container {
        grid-template-columns: 1fr;
    }
    
    .faq__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__item {
        flex: 0 0 300px;
    }
    
    .testimonials__arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .movies-slider__item {
        flex: 0 0 250px;
        height: 375px;
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .testimonial__card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer__links {
        flex-direction: column;
    }
    
    .footer__separator {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .nav__logo .logo-img {
        height: 45px;
    }

    .counter__container {
        gap: 0.5rem;
    }

    .counter__item {
        padding: 1rem 0;
    }

    .hero__title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .logo-slider {
        padding: 1rem 0;
    }

    .logo-slider__item {
        flex: 0 0 120px;
        height: 80px;
        padding: 0.5rem;
        margin: 0 0.5rem;
    }
}
