@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #FF4500;
    --light-orange: #FF8C69;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --gray: #2A2A2A;
    --light-gray: #3A3A3A;
    --white: #FFFFFF;
    --text-gray: #CCCCCC;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

/* Smooth transitions for interactive elements */
a, button, .pricing-card, .feature-card, .download-card, .stat-item, .period-btn {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.pricing .container {
    overflow: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow: hidden;
    will-change: auto;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-200px) translateX(-50px);
    }
    75% {
        transform: translateY(-100px) translateX(100px);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.logo-container-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-top {
    max-width: 200px;
    width: 100%;
    height: auto;
    animation: logo-float 3s ease-in-out infinite, logo-glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4));
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    overflow: visible;
}

.hero-content {
    text-align: left;
    overflow: visible;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Hero Highlight Banner - Chamativo */
.hero-highlight-banner {
    position: relative;
    margin-top: 35px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 20px 25px;
    padding-top: 35px;
    overflow: visible;
    animation: highlight-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3), inset 0 0 20px rgba(255, 107, 53, 0.1);
    z-index: 10;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-highlight-banner:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--light-orange);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5), inset 0 0 30px rgba(255, 107, 53, 0.2);
}

.hero-highlight-banner:active {
    transform: translateY(-1px) scale(1.01);
}

@keyframes highlight-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.3), inset 0 0 20px rgba(255, 107, 53, 0.1);
        border-color: var(--primary-orange);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.6), inset 0 0 30px rgba(255, 107, 53, 0.2);
        border-color: var(--light-orange);
    }
}

.highlight-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    animation: badge-bounce 2s ease-in-out infinite;
    z-index: 20;
    white-space: nowrap;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlight-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 2px 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.4);
    }
}

.highlight-sub {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
    animation: icon-spin 3s linear infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-particles {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
}

.highlight-particles .particle {
    font-size: 1.2rem;
    animation: particle-float 2s ease-in-out infinite;
    opacity: 0.8;
}

.highlight-particles .particle:nth-child(1) {
    animation-delay: 0s;
}

.highlight-particles .particle:nth-child(2) {
    animation-delay: 0.7s;
}

.highlight-particles .particle:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-highlight-banner {
        margin-top: 25px;
        padding: 18px 20px;
    }
    
    .highlight-badge {
        font-size: 0.65rem;
        padding: 5px 15px;
        right: 15px;
    }
    
    .highlight-main {
        font-size: 1.4rem;
    }
    
    .highlight-sub {
        font-size: 0.8rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
    }
    
    .highlight-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .highlight-content {
        gap: 15px;
    }
}

/* Hero Form */
.hero-form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.7)) brightness(1.2);
    }
}

@keyframes logo-rotate-glow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) hue-rotate(0deg);
    }
    25% {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 70px rgba(255, 107, 53, 0.5)) hue-rotate(10deg);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 0.8)) drop-shadow(0 0 80px rgba(255, 215, 0, 0.6)) hue-rotate(0deg);
    }
    75% {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 70px rgba(255, 107, 53, 0.5)) hue-rotate(-10deg);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) hue-rotate(0deg);
    }
}

.screen-content {
    padding: 20px;
    height: 100%;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.channel-item {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 10px;
    animation: channel-pulse 2s ease-in-out infinite;
}

.channel-item:nth-child(2) {
    animation-delay: 0.3s;
}

.channel-item:nth-child(3) {
    animation-delay: 0.6s;
}

.channel-item:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes channel-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.slide-up-delay-1 {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.bounce-in-delay-1 {
    animation: bounceIn 0.8s ease-out 0.2s both;
}

.bounce-in-delay-2 {
    animation: bounceIn 0.8s ease-out 0.4s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.8s ease-out;
}

.scale-in-delay-1 {
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.scale-in-delay-2 {
    animation: scaleIn 0.8s ease-out 0.4s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Referral Banner Section */
.referral-banner-section {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    overflow: hidden;
    z-index: 10;
}

.referral-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.referral-banner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.15) 50%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2), inset 0 0 60px rgba(255, 107, 53, 0.05);
    animation: bannerSlide 20s infinite linear;
    transform: translateX(0);
}

.referral-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    animation: glowSweep 3s infinite;
    pointer-events: none;
}

@keyframes bannerSlide {
    0% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(-5px);
    }
}

@keyframes glowSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.referral-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.referral-icon-left {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    animation: pulse 2s infinite;
}

.referral-icon-left svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
}

.referral-text {
    flex: 1;
    text-align: center;
}

.referral-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    transform: rotate(-2deg);
}

.referral-title-main {
    background: linear-gradient(135deg, var(--primary-orange), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    animation: titleGlow 2s infinite alternate;
}

.referral-title-sub {
    background: linear-gradient(135deg, var(--white), #E0E0E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    }
    100% {
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    }
}

.referral-description {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-1deg);
}

.referral-description .highlight-days {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #FFD700);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 800;
    margin: 0 5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    animation: highlightPulse 2s infinite;
}

.referral-description .highlight-app {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #FFD700);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 800;
    margin: 0 5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    animation: highlightPulse 2s infinite 0.5s;
}

@keyframes highlightPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.8);
    }
}

.referral-icon-right {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
}

.calendar-icon {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--primary-orange);
    animation: calendarBounce 2s infinite;
}

.calendar-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

.calendar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes calendarBounce {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Responsive Referral Banner */
@media (max-width: 768px) {
    .referral-banner {
        padding: 20px 20px;
        border-radius: 15px;
    }
    
    .referral-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .referral-icon-left {
        width: 50px;
        height: 50px;
    }
    
    .referral-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .referral-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .referral-icon-right {
        width: 60px;
        height: 60px;
    }
    
    .calendar-text {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .referral-banner-section {
        padding: 20px 0;
    }
    
    .referral-banner {
        padding: 15px 15px;
        margin: 0 10px;
    }
    
    .referral-title {
        font-size: 1.5rem;
    }
    
    .referral-description {
        font-size: 0.75rem;
    }
    
    .referral-description .highlight-days,
    .referral-description .highlight-app {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-gray);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.feature-card:active {
    transform: translateY(-8px) scale(1.01);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: icon-rotate 3s ease-in-out infinite;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes icon-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    background: rgba(42, 42, 42, 0.6);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.problem-icon svg {
    width: 30px;
    height: 30px;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.comparison-bad {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(183, 28, 28, 0.1) 100%);
    border-color: rgba(244, 67, 54, 0.2);
}

.comparison-good {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.comparison-card:hover {
    transform: translateY(-10px);
}

.comparison-bad:hover {
    border-color: rgba(244, 67, 54, 0.4);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.2);
}

.comparison-good:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    transition: all 0.3s ease;
}

.comparison-bad .comparison-icon {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.comparison-good .comparison-icon {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.comparison-icon svg {
    width: 40px;
    height: 40px;
}

.comparison-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.comparison-badge {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 auto 30px;
    text-align: center;
    width: 100%;
    display: block;
}

.comparison-badge.bad {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 2px solid rgba(244, 67, 54, 0.4);
}

.comparison-badge.good {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 1rem;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.comparison-bad .comparison-features li svg {
    color: #f44336;
}

.comparison-good .comparison-features li svg {
    color: var(--primary-orange);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--black);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.download-card {
    background: var(--gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.download-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.4);
}

.download-card:active {
    transform: translateY(-10px) scale(1.03);
}

.platform-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--dark-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.download-card:hover .platform-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.platform-icon svg {
    width: 50px;
    height: 50px;
}

.download-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.download-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

/* Tutorials Section */

/* Free Trial Form Card (now in hero) */
.free-trial-form-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.free-trial-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.1));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.free-trial-form-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(255, 107, 53, 0.15);
}

.free-trial-form-card:hover::before {
    opacity: 1;
}

.test-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 10;
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    }
}

.free-trial-form-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.free-trial-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 45px;
    line-height: 1.7;
    opacity: 0.9;
}

.free-trial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group .optional {
    font-weight: 400;
    text-transform: none;
    color: var(--text-gray);
}

.form-group input {
    padding: 16px 22px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.form-group input:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(26, 26, 26, 0.9);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(26, 26, 26, 1);
    box-shadow: 
        0 0 0 3px rgba(255, 107, 53, 0.15),
        0 4px 12px rgba(255, 107, 53, 0.1);
}

.btn-test-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 19px 32px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-test-form::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-test-form:hover::before {
    width: 300px;
    height: 300px;
}

.btn-test-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
}

.btn-test-form:active {
    transform: translateY(-1px);
}

.btn-test-form svg {
    width: 24px;
    height: 24px;
    fill: #25D366;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-test-form:hover svg {
    transform: scale(1.1);
}

.btn-test-form span {
    position: relative;
    z-index: 1;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 25px;
    text-align: center;
    opacity: 0.7;
}

.form-security svg {
    width: 14px;
    height: 14px;
    color: var(--text-gray);
    flex-shrink: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .free-trial {
        padding: 80px 0;
    }
    
    .free-trial-form-card {
        padding: 45px 30px;
        margin: 0 20px;
        border-radius: 20px;
    }
    
    .test-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
    }
    
    .free-trial-form-title {
        font-size: 1.8rem;
    }
    
    .free-trial-form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
    }
    
    .btn-test-form {
        font-size: 0.85rem;
        padding: 17px 28px;
        letter-spacing: 1px;
    }
    
    .form-group input {
        padding: 15px 20px;
    }
}

/* Pricing Section */
.pricing {
    padding: 40px 0 100px;
    background: var(--dark-gray);
    position: relative;
    overflow: visible;
}

.pricing-banner {
    background: var(--black);
    padding: 100px 0 80px;
    position: relative;
    overflow: visible;
}

.pricing-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
    opacity: 0.6;
    animation: banner-glow 10s ease-in-out infinite;
}

@keyframes banner-glow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.pricing-banner-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.investment-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.investment-tag span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-banner-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.title-line {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-highlight {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), transparent);
    border-radius: 4px;
    z-index: -1;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    text-align: right;
}

.pricing-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 400px;
    opacity: 0.9;
}

.banner-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 70px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.1);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-item:hover .stat-number {
    color: var(--light-orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 107, 53, 0.2);
}

.testimonials-mini {
    position: relative;
    height: 80px;
    margin-top: 25px;
    max-width: 100%;
    overflow: hidden;
    min-height: 80px;
}

.testimonial-mini-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(42, 42, 42, 0.6);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
    will-change: opacity, transform;
}

.testimonial-mini-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.testimonial-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 0.7rem;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

@media (max-width: 968px) {
    .pricing-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .banner-left {
        align-items: center;
    }
    
    .investment-tag {
        margin: 0 auto;
    }
    
    .banner-right {
        align-items: center;
        text-align: center;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-banner {
        padding: 50px 0 40px;
    }
    
    .pricing-banner-content {
        gap: 30px;
    }
    
    .title-line {
        font-size: 1.8rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .banner-stats {
        gap: 15px;
        padding: 18px 20px;
        width: 100%;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .stat-divider {
        width: 1px;
        height: 30px;
    }
    
    .investment-tag {
        padding: 8px 16px;
    }
    
    .investment-tag span {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .banner-left {
        gap: 20px;
    }

    .testimonials-mini {
        height: 75px;
        margin-top: 20px;
    }

    .testimonial-mini-card {
        padding: 10px 15px;
        gap: 10px;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .testimonial-name {
        font-size: 0.75rem;
    }

    .testimonial-stars {
        font-size: 0.65rem;
    }

    .testimonial-text {
        font-size: 0.7rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 20px;
    overflow: visible;
    position: relative;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
    padding: 40px;
    padding-top: 60px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: visible;
    margin-top: 30px;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.pricing-card:active {
    transform: translateY(-10px) scale(1.01);
}


.pricing-featured {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    margin-top: 0;
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.pricing-featured:active {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
    z-index: 10000 !important;
    white-space: nowrap;
    pointer-events: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    will-change: transform;
    transform-origin: center top;
    margin: 0;
}

/* Garantir que o badge nunca seja cortado */
.pricing-card:hover .popular-badge,
.pricing-card:active .popular-badge,
.pricing-card:focus .popular-badge,
.pricing-featured:hover .popular-badge,
.pricing-featured:active .popular-badge,
.pricing-featured:focus .popular-badge {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10000 !important;
    transform: translateX(-50%) !important;
    top: -35px !important;
}

.period-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.period-btn {
    padding: 8px 16px;
    background: var(--dark-gray);
    color: var(--text-gray);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.period-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.period-btn:hover::before {
    width: 100px;
    height: 100px;
}

.period-btn:hover {
    background: var(--light-gray);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px) scale(1.05);
}

.period-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

.period-btn span {
    position: relative;
    z-index: 1;
}

.pricing-featured .period-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-color: var(--primary-orange);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.badge-crown svg {
    width: 30px;
    height: 30px;
}

.pricing-card .badge-crown {
    display: none;
}

.pricing-header {
    position: relative;
    z-index: 1;
}

.pricing-header {
    position: relative;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.plan-descriptor {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.old-price {
    color: #ff4444;
    text-decoration: line-through;
    font-size: 1rem;
    opacity: 0.7;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.savings {
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
    display: block;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    padding: 0;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-included {
    color: var(--white);
}

.feature-excluded {
    color: #ff4444;
    opacity: 0.7;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    background: var(--gray);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-pricing-featured {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-pricing-featured:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
}

.iptv-disclaimer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.5;
    font-style: italic;
    padding: 0 20px;
}

.contact-info {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: var(--gray);
    border-radius: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-email {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-email:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-email svg {
    width: 24px;
    height: 24px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background: #20BA5A;
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Tutorials Section */
.tutorials {
    padding: 100px 0;
    background: var(--dark-gray);
}

.tutorial-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 50px;
}

.tab-button {
    padding: 12px 25px;
    background: var(--gray);
    color: var(--text-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-button:hover {
    background: var(--light-gray);
    color: var(--white);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.tutorial-card {
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 1;
    transform: scale(1);
}

.tutorial-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.tutorial-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--dark-gray);
    overflow: hidden;
}

.tutorial-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tutorial-info {
    padding: 25px;
}

.tutorial-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.tutorial-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tutorial-note {
    margin-top: 60px;
    padding: 20px;
    background: var(--gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    text-align: center;
}

.tutorial-note p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.tutorial-note strong {
    color: var(--primary-orange);
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-in 0.8s both;
}

.fade-in-delay-5 {
    animation: fadeIn 1s ease-in 1s both;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
}

.footer-social h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    color: var(--text-gray);
}

.legal-notice {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-notice strong {
    color: var(--primary-orange);
    display: block;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

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

    .hero-form {
        position: static;
    }

    .free-trial-form-card {
        max-width: 100%;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-banner-title {
        font-size: 2.5rem;
    }

    .period-selector {
        gap: 5px;
    }

    .period-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .logo-image-top {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-logo-top {
        margin-bottom: 25px;
        padding-top: 10px;
    }

    .logo-image-top {
        max-width: 100px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .hero-form {
        position: static;
    }

    .free-trial-form-card {
        padding: 35px 25px;
        max-width: 100%;
    }

    .free-trial-form-title {
        font-size: 1.6rem;
    }

    .free-trial-form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .form-group input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .btn-test-form {
        padding: 16px 25px;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .features-grid,
    .download-grid,
    .pricing-grid,
    .tutorials-grid,
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-card {
        padding: 30px 25px;
    }

    .comparison-card h3 {
        font-size: 1.5rem;
    }

    .comparison-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .problem-card {
        padding: 30px 25px;
    }

    .problem-card h3 {
        font-size: 1.2rem;
    }

    .feature-card,
    .download-card,
    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-card {
        margin-bottom: 20px;
    }

    .period-selector {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .period-btn {
        flex: 1;
        min-width: 80px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .price {
        margin-bottom: 20px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .period {
        font-size: 1rem;
    }

    .pricing-features {
        margin: 25px 0;
    }

    .pricing-features li {
        padding: 12px 0;
        font-size: 0.9rem;
    }

    .btn-pricing {
        padding: 14px;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }

    .download-card h3 {
        font-size: 1.5rem;
    }

    .download-card p {
        font-size: 0.9rem;
    }

    .btn-download {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .mouse {
        width: 25px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .title-line {
        font-size: 1.5rem;
    }

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

    .pricing-subtitle {
        font-size: 0.9rem;
    }

    .banner-stats {
        padding: 15px;
        gap: 12px;
    }

    .stat-item {
        min-width: 55px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        height: 25px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .free-trial-form-card {
        padding: 30px 20px;
    }

    .free-trial-form-title {
        font-size: 1.4rem;
    }

    .free-trial-form-subtitle {
        font-size: 0.8rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .btn-test-form {
        padding: 14px 20px;
        font-size: 0.8rem;
    }

    .feature-card,
    .download-card,
    .pricing-card {
        padding: 25px 20px;
    }

    .amount {
        font-size: 2rem;
    }

    .currency {
        font-size: 1rem;
    }

    .period {
        font-size: 0.9rem;
    }

    .period-btn {
        padding: 7px 10px;
        font-size: 0.75rem;
        min-width: 70px;
    }

    .pricing-features li {
        padding: 10px 0;
        font-size: 0.85rem;
    }

    .btn-pricing {
        padding: 12px;
        font-size: 0.85rem;
    }

    .investment-tag {
        padding: 7px 14px;
    }

    .investment-tag span {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .problems-grid {
        gap: 20px;
    }

    .problem-card {
        padding: 25px 20px;
    }

    .problem-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .problem-icon svg {
        width: 25px;
        height: 25px;
    }

    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .problem-card p {
        font-size: 0.85rem;
    }

    .comparison-grid {
        gap: 25px;
    }

    .comparison-card {
        padding: 25px 20px;
    }

    .comparison-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .comparison-icon svg {
        width: 30px;
        height: 30px;
    }

    .comparison-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .comparison-badge {
        font-size: 0.75rem;
        padding: 10px 15px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .comparison-features li {
        font-size: 0.85rem;
        padding: 12px 0;
        gap: 12px;
    }

    .comparison-features li svg {
        width: 20px;
        height: 20px;
    }
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: var(--gray);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--white);
}

.modal-content h2 {
    margin-bottom: 20px;
}

/* Carrinho */
.cart-item {
    background: var(--dark-gray);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.cart-price {
    margin: 15px 0;
}

.cart-features {
    list-style: none;
    margin-top: 15px;
}

.cart-features li {
    padding: 8px 0;
    color: var(--text-gray);
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cart-actions button {
    flex: 1;
}

/* Checkout */
.checkout-summary {
    background: var(--dark-gray);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.summary-item:last-child {
    border-bottom: none;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Pagamento PIX */
.qrcode-wrapper {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
}

.qrcode-image {
    max-width: 100%;
    height: auto;
}

.pix-key-container {
    margin: 20px 0;
}

.pix-key-display {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pix-key-display input {
    flex: 1;
    padding: 12px;
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.btn-copy {
    padding: 12px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--dark-orange);
}

.payment-status {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.payment-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
}

.payment-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

/* Links rápidos */
.quick-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.btn-link {
    padding: 12px 20px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: var(--gray);
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #4CAF50;
}

.notification-error {
    border-left: 4px solid #f44336;
}

.notification-info {
    border-left: 4px solid #2196F3;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .quick-links {
        bottom: 10px;
        right: 10px;
    }
    
    .btn-link {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* TV and Large Screens Support (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

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

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .pricing-card,
    .feature-card,
    .download-card {
        padding: 50px;
    }

    .btn {
        padding: 20px 45px;
        font-size: 1.1rem;
    }

    .title-line {
        font-size: 4rem;
    }

    .title-highlight {
        font-size: 5.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Focus states for TV navigation (keyboard/remote control) */
    .btn:focus-visible,
    .period-btn:focus-visible,
    .pricing-card:focus-visible,
    .feature-card:focus-visible,
    .download-card:focus-visible {
        outline: 4px solid var(--primary-orange);
        outline-offset: 6px;
        transform: scale(1.05);
    }

    .stat-item:focus-visible {
        outline: 3px solid var(--primary-orange);
        outline-offset: 4px;
        border-radius: 8px;
    }

    /* Larger touch targets for TV */
    .btn,
    .period-btn {
        min-height: 50px;
        min-width: 120px;
    }
}

