:root {
    --bg: #05080f;
    --surface: #0d141f;
    --surface-alt: rgba(13, 20, 31, 0.7);
    --primary: #00c2ff;
    --primary-dark: #0086ff;
    --accent: #ff6ec7;
    --accent-dark: #d94aaf;
    --text: #e6f1ff;
    --text-muted: #9bb1c7;
    --border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow: 0 25px 60px -25px rgba(0, 194, 255, 0.45);
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(0, 194, 255, 0.15), transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(255, 110, 199, 0.18), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.texture-overlay {
    position: fixed;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 40 40" fill="none"%3E%3Cpath d="M0 39.5L39.5 0M15 40L40 15" stroke="rgba(255,255,255,0.03)"/%3E%3C/svg%3E');
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.top-bar {
    background: rgba(0, 194, 255, 0.1);
    color: var(--text-muted);
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 15, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    font-size: 1.9rem;
}

.logo-icon {
    font-size: 1.6rem;
}

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

.accent {
    color: var(--primary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-ghost {
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: transparent;
}

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

.btn-primary {
    background: var(--gradient);
    color: #05080f;
    box-shadow: 0 15px 30px -12px rgba(0, 194, 255, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 35px 60px -25px rgba(0, 194, 255, 0.6);
}

.btn-mega {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    background: var(--gradient);
    color: #05080f;
    box-shadow: var(--shadow);
}

.btn-mega:hover {
    transform: translateY(-4px) scale(1.01);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

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

.btn.glow {
    position: relative;
}

.btn.glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.35), rgba(255, 110, 199, 0.35));
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.btn.glow:hover::after {
    opacity: 1;
}

.hero {
    position: relative;
    padding: 120px 0 100px;
    background: radial-gradient(circle at 15% 20%, rgba(0, 194, 255, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(255, 110, 199, 0.28) 0%, transparent 50%),
        rgba(5, 8, 15, 0.35);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.35);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.6rem, 6vw, 4.9rem);
    margin-top: 22px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    line-height: 0.9;
}

.gradient-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
}

.hero-lead strong {
    color: var(--primary);
}

.hero-bullets {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.hero-bullets li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(8, 14, 26, 0.7);
    border: 1px solid rgba(0, 194, 255, 0.18);
    color: var(--text-muted);
    font-weight: 600;
}

.hero-bullets span {
    font-size: 1.2rem;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    margin: 32px 0 24px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.plan-card {
    background: linear-gradient(160deg, rgba(0, 194, 255, 0.16), rgba(255, 110, 199, 0.12));
    border: 1px solid rgba(0, 194, 255, 0.35);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.plan-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.45);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin: 18px 0 6px;
    color: var(--text);
}

.plan-subtitle {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.plan-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.2rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.plan-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-benefits {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-benefits li::before {
    content: '✔';
    color: var(--primary);
    margin-right: 8px;
}

.btn-wide {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hero-stats-alt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
    background: rgba(8, 14, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 18px 40px -30px rgba(0, 194, 255, 0.8);
}

.stat-value {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.6rem;
    color: var(--primary);
    letter-spacing: 1.5px;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
}

.section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 4px;
    font-size: 0.95rem;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 720px;
    margin: 18px auto 0;
}

.highlights {
    background: rgba(8, 14, 26, 0.7);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.highlight {
    background: rgba(10, 16, 28, 0.65);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 194, 255, 0.35);
}

.highlight h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.highlight p {
    color: var(--text-muted);
}

.problem-solution {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(255, 110, 199, 0.12));
}

.ps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.ps-card {
    background: rgba(5, 8, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ps-card h3 {
    font-size: 1.4rem;
    color: var(--text);
}

.ps-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
}

.ps-card li::before {
    content: '•';
    color: var(--primary);
    margin-right: 10px;
}

.ps-card.solution {
    border-color: rgba(0, 194, 255, 0.45);
    box-shadow: 0 25px 50px -35px rgba(0, 194, 255, 0.8);
}

.ps-divider {
    align-self: center;
    font-size: 2rem;
    color: var(--primary);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 4px;
}

.channels {
    background: rgba(8, 14, 26, 0.6);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.channel-card {
    background: rgba(6, 11, 20, 0.75);
    border: 1px solid rgba(0, 194, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.channel-card:hover {
    border-color: rgba(255, 110, 199, 0.4);
    transform: translateY(-5px);
}

.channel-flag {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.channel-card h4 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.channel-card ul {
    list-style: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
}

.devices {
    background: rgba(5, 8, 15, 0.85);
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.device-item {
    background: rgba(14, 20, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.6px;
}

.pricing {
    background: radial-gradient(circle at top right, rgba(0, 194, 255, 0.2), transparent 55%), rgba(5, 8, 15, 0.6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pricing-card {
    background: rgba(8, 12, 23, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 194, 255, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(155deg, rgba(0, 194, 255, 0.18), rgba(255, 110, 199, 0.18));
    border-color: rgba(0, 194, 255, 0.5);
    box-shadow: var(--shadow);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--gradient);
    color: #05080f;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.plan-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

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

.amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.2rem;
    letter-spacing: 2px;
}

.period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
}

.plan-features li::before {
    content: '✔';
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.plan-features li {
    display: flex;
    align-items: center;
}

.how-it-works {
    background: rgba(5, 10, 19, 0.85);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.step {
    background: rgba(9, 14, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 194, 255, 0.4);
}

.step-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: var(--primary);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.testimonials {
    background: radial-gradient(circle at 30% 20%, rgba(0, 194, 255, 0.12) 0%, transparent 55%), rgba(8, 13, 24, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.testimonial-card {
    background: rgba(9, 13, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.testimonial-card.featured {
    border-color: rgba(0, 194, 255, 0.45);
    box-shadow: 0 25px 50px -35px rgba(0, 194, 255, 0.6);
}

.stars {
    color: #ffd166;
    letter-spacing: 2px;
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

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

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: #05080f;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .info strong {
    color: var(--text);
    display: block;
}

.author .info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq {
    background: rgba(5, 9, 17, 0.9);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(8, 13, 22, 0.75);
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.toggle {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.final-cta {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.2), rgba(255, 110, 199, 0.2));
}

.cta-box {
    background: rgba(6, 10, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 18px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 26px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.footer {
    background: rgba(4, 6, 12, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 30px;
}

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

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

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

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

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
    z-index: 100;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    border-radius: 999px;
    padding: 14px 32px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-showcase {
        flex-direction: row;
        gap: 20px;
    }

    .plan-card,
    .hero-stats-alt,
    .device-strip {
        flex: 1 1 0;
    }

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

    .hero-stats {
        max-width: 520px;
    }

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

    .pricing-grid,
    .highlights-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-showcase {
        flex-direction: column;
    }

    .plan-price-row {
        gap: 8px;
    }

    .hero-stats,
    .hero-stats-alt {
        grid-template-columns: 1fr 1fr;
    }

    .device-strip {
        justify-content: flex-start;
    }

    .top-bar {
        font-size: 0.85rem;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .nav-content {
        justify-content: space-between;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .highlights-grid,
    .channel-grid,
    .device-grid,
    .pricing-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ps-wrapper {
        grid-template-columns: 1fr;
    }

    .ps-divider {
        display: none;
    }

    .cta-box {
        padding: 40px 24px;
    }

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

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-cta {
        right: 16px;
        left: 16px;
        bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .sticky-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-bullets li {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats,
    .hero-stats-alt {
        grid-template-columns: 1fr;
    }

    .device-strip {
        gap: 8px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

    .btn-mega {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-card {
        padding: 20px;
    }
    
    .plan-price {
        flex-direction: column;
        align-items: flex-start;
    }
}
