:root {
    --primary: #00d4aa;
    --primary-dark: #00a887;
    --secondary: #6c5ce7;
    --bg-dark: #0f1623;
    --bg-card: #131b2e;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --gradient: linear-gradient(135deg, #00d4aa 0%, #6c5ce7 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #050810;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.btn {
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: #050810;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    margin-left: 8px;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 10%, #1a1f35 0%, #050810 50%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, white, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: white;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check {
    color: var(--primary);
    font-weight: bold;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.5rem;
}

/* Stats Section */
.stats {
    background: var(--bg-card);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Channels/Features Section */
.channels {
    padding: 100px 0;
}

.channels h2,
.apps h2,
.pricing h2,
.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.channel-card,
.app-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.channel-card:hover,
.app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
}

.channel-icon,
.app-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.channel-card h3,
.app-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.channel-card p,
.app-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Apps Section */
.apps {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.05) 0%, #050810 70%);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.app-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(108, 92, 231, 0.2);
    color: #a29bfe;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.apps-cta {
    text-align: center;
    background: linear-gradient(90deg, rgba(5, 8, 16, 0) 0%, rgba(108, 92, 231, 0.1) 50%, rgba(5, 8, 16, 0) 100%);
    padding: 24px;
    border-radius: 12px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(180deg, #1a2335 0%, #131b2e 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #050810;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.pricing-save {
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li::first-letter {
    color: var(--primary);
    /* Though the check is part of text in HTML */
}

.payment-badges {
    text-align: center;
    opacity: 0.7;
}

.payment-badges p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 1.2rem;
}

/* Trial Section */
.trial {
    padding: 60px 0;
}

.trial-box {
    background: radial-gradient(circle at top right, #1f2940 0%, #131b2e 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.trial-badge {
    display: inline-block;
    background: var(--gradient);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-weight: 600;
    margin-bottom: 20px;
    color: #050810;
}

.trial h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trial-content>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.trial-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.trial-features span {
    color: var(--primary);
    font-weight: 500;
}

.trial-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsive Settings */
@media (max-width: 640px) {
    .trial-box {
        padding: 40px 24px;
    }

    .trial h2 {
        font-size: 1.8rem;
    }

    .trial-features {
        flex-direction: column;
        gap: 12px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--bg-dark);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(108, 92, 231, 0.2) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta h2 {
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.cta .btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4);
    transform: scale(1.1);
}

.cta .btn-primary:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 15px 50px rgba(108, 92, 231, 0.6);
}

/* Footer */
.footer {
    padding: 60px 0 24px;
    background: #050810;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .pricing-card.popular {
        transform: scale(1.02);
        border-width: 2px;
        box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
        z-index: 10;
        margin: 10px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    /* Padding for sticky button */
    .footer {
        padding-bottom: 90px;
    }
}

/* High Demand Timer */
.offer-bar {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    animation: fadeIn 1s ease-out;
}

.offer-text {
    color: #ff6b6b;
    font-weight: 600;
}

.timer {
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-family: monospace;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* Recent Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(19, 27, 46, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.sales-popup.show {
    transform: translateX(0);
}

.sales-icon {
    font-size: 1.5rem;
    background: rgba(0, 212, 170, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sales-content {
    flex: 1;
}

.sales-title {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.sales-content p {
    font-size: 0.9rem;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.sales-content b {
    color: var(--primary);
}

.sales-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Mobile Adjustments for Popups */
@media (max-width: 968px) {
    .sales-popup {
        left: 50%;
        bottom: 80px;
        /* Moved up to avoid sticky button */
        transform: translate(-50%, 150%);
        width: 90%;
        max-width: none;
    }

    .sales-popup.show {
        transform: translate(-50%, 0);
    }
}

@media (max-width: 640px) {
    .offer-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 60px 0 100px;
    background: var(--bg-dark);
}

.video-showcase h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    position: relative;
    aspect-ratio: 16/9;
}

.showcase-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .video-showcase {
        padding: 40px 0;
    }

    .video-container {
        border-radius: 12px;
        margin: 0 10px;
    }
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(19, 27, 46, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 170, 0.3);
    padding: 12px 20px;
    z-index: 10000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.btn-sticky {
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: none;
}

@media (max-width: 968px) {
    .mobile-sticky-cta {
        display: flex;
        animation: slideUp 0.5s ease-out;
    }

    .footer {
        padding-bottom: 90px;
    }
}

@media (max-width: 380px) {
    .sticky-text {
        font-size: 0.85rem;
    }

    .btn-sticky {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.05) 0%, #050810 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.author-info h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--primary);
    font-size: 0.85rem;
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}