:root {
    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-card: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --accent-primary: #2563EB;
    --accent-secondary: #60A5FA;
    --success: #10B981;
    --border-color: rgba(0, 0, 0, 0.08);
    --glow-primary: rgba(37, 99, 235, 0.4);
    --glow-secondary: rgba(96, 165, 250, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 15px var(--glow-primary);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--glow-secondary);
    background-position: right center;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: var(--accent-primary);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.btn-yellow {
    background: linear-gradient(135deg, #FACC15, #EAB308, #FACC15);
    background-size: 200% auto;
    color: #0F172A;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    transition: all 0.5s ease;
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.6);
    background-position: right center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 800;
}

.logo-text {
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent-secondary);
    font-size: 2.5rem;
    line-height: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--glow-primary);
}

.glow-2 {
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--glow-secondary);
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    margin: 0 auto 2.5rem;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Abstract Device CSS Art */
.abstract-device {
    position: relative;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    perspective: 1000px;
    animation: floatDevice 6s ease-in-out infinite;
}

@keyframes floatDevice {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.screen {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 40px var(--glow-primary), inset 0 0 0 1px rgba(255,255,255,0.5);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.abstract-device:hover .screen {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.05);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.15), 0 0 60px var(--glow-primary), inset 0 0 0 1px rgba(255,255,255,0.6);
}

.screen-content {
    background: url('assets/rrt.png') center/cover;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.4), rgba(96, 165, 250, 0.4));
    mix-blend-mode: overlay;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
    margin-left: 5px;
}

.play-btn:hover {
    transform: scale(1.1);
}

.stand {
    width: 120px;
    height: 20px;
    background: linear-gradient(to right, #334155, #1E293B);
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    transform: rotateY(-15deg);
}

/* Partners Marquee */
.partners-marquee {
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
    display: flex;
    z-index: 10;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 3rem;
    gap: 6rem;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.feature-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.feature-glow-1 {
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--glow-primary);
}

.feature-glow-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--glow-secondary);
}

.feature-glow-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.2);
}

.features .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-left: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.1), 0 0 20px 0 rgba(37, 99, 235, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.8);
}

.feature-card:hover::before {
    left: 200%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.2));
    border-color: rgba(37, 99, 235, 0.5);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 60%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-left: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1), 0 0 20px 0 rgba(37, 99, 235, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.8);
}

.pricing-card:hover::before {
    left: 200%;
}

.pricing-card.highlighted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-top: 1px solid rgba(37, 99, 235, 0.8);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15), 0 0 30px rgba(37, 99, 235, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% auto;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--glow-primary);
    animation: gradientFlow 3s ease infinite;
    z-index: 10;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.plan-duration {
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0F172A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.125rem;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.plan-features li.feature-subtext {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.7;
    margin-top: -0.5rem;
    padding-left: 24px;
}

/* Footer */
.footer {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a, .contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .contact-link:hover {
    color: var(--accent-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}
/* VOD Section */
.vod-section {
    padding: 4rem 0;
    overflow: hidden;
    background: var(--bg-main);
}

.vod-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.vod-track {
    display: flex;
    width: max-content;
}

.vod-track-right {
    animation: scrollRight 40s linear infinite;
}

.vod-track-left {
    animation: scrollLeft 40s linear infinite;
}

.vod-track:hover {
    animation-play-state: paused;
}

.vod-content {
    display: flex;
    gap: 1.5rem;
    padding: 0 0.75rem;
}

.vod-poster {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.vod-poster:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
    z-index: 10;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Promo & Devices Section */
.promo-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-secondary));
}

.devices-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.devices-header h2 {
    font-size: 2rem;
    white-space: nowrap;
}

.devices-marquee {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.devices-marquee::before,
.devices-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.devices-marquee::before { left: 0; background: linear-gradient(to right, var(--bg-main), transparent); }
.devices-marquee::after { right: 0; background: linear-gradient(to left, var(--bg-secondary), transparent); }

.devices-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

.devices-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.device-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.device-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

.nfl-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 24px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1), inset 0 0 0 1px rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.nfl-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.2), transparent 50%);
    pointer-events: none;
}

.nfl-content {
    max-width: 50%;
    z-index: 2;
}

.nfl-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.nfl-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.nfl-graphics {
    z-index: 2;
    text-align: right;
}

.nfl-logo {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-fab svg {
    width: 35px;
    height: 35px;
    fill: white;
    z-index: 2;
}

.whatsapp-fab::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    animation: pulse-wa 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 3rem;
    }

    .hero-text, .hero-image-container {
        width: 100%;
        flex: none;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .pricing-card.highlighted {
        transform: scale(1) !important;
    }
    
    .pricing-card.highlighted:hover {
        transform: translateY(-10px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column !important;
        text-align: center;
        gap: 3rem;
    }

    h1 {
        font-size: 2.2rem !important;
    }
    h2 {
        font-size: 1.8rem !important;
    }
    h3 {
        font-size: 1.4rem !important;
    }

    .nav-links, .nav-btn {
        display: none;
    }

    .container {
        padding: 0 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-fab svg {
        width: 30px;
        height: 30px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-main);
    position: relative;
    z-index: 10;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--accent-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.rating-stars {
    color: #F59E0B;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-left: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1), 0 0 20px rgba(37, 99, 235, 0.05);
}

.review-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.review-card p {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.review-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How-To Section */
.howto-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.howto-step {
    position: relative;
    padding: 3rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.howto-step:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.howto-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.howto-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust Banner */
.trust-banner {
    padding: 3rem 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.8));
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    color: var(--success);
}

.trust-text {
    flex-grow: 1;
    min-width: 300px;
}

.trust-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.trust-text p {
    color: var(--text-secondary);
    margin: 0;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.payment-icon {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 25px;
    left: 25px; /* Opposite side of WhatsApp */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-chat-widget:hover {
    transform: scale(1.1);
}

.chat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.chat-status-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: var(--success);
    border: 2px solid #2563EB;
    border-radius: 50%;
    animation: pulseChat 2s infinite;
}

@keyframes pulseChat {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        text-align: center;
    }
    .live-chat-widget {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .chat-icon svg {
        width: 24px;
        height: 24px;
    }

    /* NFL Banner Mobile Fix */
    .nfl-banner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }
    .nfl-content {
        max-width: 100%;
    }
    .nfl-graphics {
        text-align: center;
    }
    .nfl-content h3 {
        font-size: 1.8rem;
    }
    .nfl-logo {
        font-size: 1.8rem;
    }

    /* Devices Marquee Mobile Fix */
    .devices-content {
        gap: 2rem;
    }
    .device-item svg {
        width: 32px;
        height: 32px;
    }
    .device-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-large {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    .badge {
        font-size: 0.75rem;
    }
}

.hero-image-container {
    margin: 2.5rem auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
.no-scroll { overflow: hidden; }
