/* ============================================
   VENOM IPTV — CSS PREMIUM v2.0
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --red: #e50914;
    --red-dark: #9b0000;
    --red-light: #ff3d3d;
    --red-glow: rgba(229, 9, 20, 0.35);
    --red-subtle: rgba(229, 9, 20, 0.08);
    --bg-900: #040404;
    --bg-800: #0a0a0a;
    --bg-700: #0f0f0f;
    --bg-600: #141414;
    --bg-500: #1a1a1a;
    --bg-400: #222222;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-300: #c0c0c0;
    --gray-400: #a0a0a0;
    --gray-500: #707070;
    --gray-600: #444444;
    --border: rgba(255,255,255,0.07);
    --border-red: rgba(229,9,20,0.3);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --shadow-red: 0 0 40px rgba(229,9,20,0.2);
    --shadow-card: 0 4px 30px rgba(0,0,0,0.5);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --navbar-h: 96px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-900);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-800);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--red-light);
    }

/* ============================================
   CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: screen;
}

.cursor-trail {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--red-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.4;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
}

    .section-tag::before,
    .section-tag::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 1px;
        background: var(--red);
        vertical-align: middle;
        margin: 0 10px;
        opacity: 0.6;
    }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.section-sub {
    color: var(--gray-400);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 15px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--red-glow);
    white-space: nowrap;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 40px var(--red-glow), 0 8px 30px rgba(0,0,0,0.4);
    }

        .btn-primary:hover::before {
            transform: translateX(100%);
        }

    .btn-primary:active {
        transform: translateY(-1px);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--gray-100);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

    .btn-ghost:hover {
        border-color: var(--red);
        color: var(--white);
        background: rgba(229,9,20,0.08);
        transform: translateY(-3px);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--border-red);
    color: var(--red-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: transparent;
    white-space: nowrap;
}

    .btn-outline:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 0 30px var(--red-glow);
    }

.big-btn {
    min-width: 200px;
    padding: 18px 32px;
    font-size: 15px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-pulse {
    animation: pulseShadow 2.5s ease-in-out infinite;
}

@keyframes pulseShadow {
    0%, 100% {
        box-shadow: 0 0 20px var(--red-glow);
    }

    50% {
        box-shadow: 0 0 45px var(--red-glow), 0 0 80px rgba(229,9,20,0.12);
    }
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================
   NAVBAR — GLASSMORPHISM PREMIUM
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--navbar-h);
    /* Glass base */
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.015) 50%,
        rgba(229,9,20,0.03) 100%
    );
    backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
    /* Frosted border */
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 1px 0 0 rgba(255,255,255,0.05) inset,
        0 8px 32px rgba(0,0,0,0.4),
        0 0 0 0.5px rgba(229,9,20,0.08);
    transition: var(--transition);
}

    .navbar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(229,9,20,0.025) 50%,
            transparent 100%
        );
        pointer-events: none;
    }

    .navbar.scrolled {
        background: linear-gradient(
            135deg,
            rgba(4,4,4,0.82) 0%,
            rgba(10,0,0,0.78) 100%
        );
        backdrop-filter: blur(32px) saturate(200%) brightness(0.95);
        -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(0.95);
        border-bottom: 1px solid rgba(229,9,20,0.18);
        box-shadow:
            0 1px 0 0 rgba(255,255,255,0.04) inset,
            0 8px 40px rgba(0,0,0,0.65),
            0 0 60px rgba(229,9,20,0.04);
        height: 68px;
    }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

.logo img {
    height: 92px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    transition: var(--transition);
    transform: translateY(5px);
    filter: drop-shadow(0 0 12px rgba(229,9,20,0.25));
}

.navbar.scrolled .logo img {
    height: 82px;
    transform: translateY(6px);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.25s ease;
        border-radius: 2px;
    }

    .nav-link:hover {
        color: var(--white);
    }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

    .nav-link.active {
        color: var(--white);
    }

        .nav-link.active::after {
            transform: scaleX(1);
        }

.nav-cta {
    font-size: 13px;
    padding: 12px 22px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 8px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(4,4,4,0.97);
    border-bottom: 1px solid var(--border-red);
}

    .mobile-menu.open {
        display: flex;
    }

.mobile-link {
    color: var(--gray-300);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

    .mobile-link:hover {
        color: var(--white);
        background: var(--red-subtle);
    }

.mobile-cta {
    margin-top: 10px;
    text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--navbar-h);
    background: var(--bg-900);
    overflow: hidden;
}

/* Background grid */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(229,9,20,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(229,9,20,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glow orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow--left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229,9,20,0.14), transparent 70%);
    top: -100px;
    left: -100px;
    animation: glowFloat 8s ease-in-out infinite alternate;
}

.hero-glow--right {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,9,20,0.1), transparent 70%);
    bottom: -100px;
    right: -50px;
    animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.15);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

/* Hero left */
.hero-left {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,9,20,0.12);
    color: var(--red-light);
    border: 1px solid rgba(229,9,20,0.25);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease 0.25s both;
}

.hero-title__line--accent {
    color: var(--red);
    text-shadow: 0 0 40px rgba(229,9,20,0.5);
}

.hero-desc {
    color: var(--gray-400);
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 38px;
    animation: fadeUp 0.7s ease 0.4s both;
}

    .hero-desc strong {
        color: var(--white);
        font-weight: 600;
    }

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeUp 0.7s ease 0.55s both;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeUp 0.7s ease 0.7s both;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4px;
    backdrop-filter: blur(10px);
    display: inline-flex;
}

.stat-box {
    padding: 18px 28px;
    text-align: center;
}

    .stat-box h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--red);
        line-height: 1;
        margin-bottom: 4px;
    }

    .stat-box span {
        font-size: 11px;
        color: var(--gray-500);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero right */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s ease 0.35s both;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-red);
    animation: ringPulse 3s ease-in-out infinite;
}

.hero-image-ring--1 {
    width: 110%;
    aspect-ratio: 1;
    animation-delay: 0s;
    opacity: 0.3;
}

.hero-image-ring--2 {
    width: 125%;
    aspect-ratio: 1;
    animation-delay: 1.5s;
    opacity: 0.15;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.08;
    }
}

.hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 60px rgba(229,9,20,0.15), var(--shadow-card);
    animation: floatY 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(229,9,20,0.1));
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    animation: fadeUp 1s ease 1.2s both;
}

.scroll-indicator__dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: scrollBounce 1.4s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* Hero fade up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bg-800);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 24px;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
}

    .trust-item svg {
        color: var(--red);
        flex-shrink: 0;
    }

.trust-sep {
    color: var(--gray-600);
    font-size: 12px;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    background: var(--bg-900);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    background: var(--bg-700);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(229,9,20,0.04), transparent);
        opacity: 0;
        transition: var(--transition);
    }

    .benefit-card:hover {
        border-color: var(--border-red);
        transform: translateY(-8px);
        box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 40px rgba(229,9,20,0.1);
    }

        .benefit-card:hover::before {
            opacity: 1;
        }

.benefit-card__icon {
    width: 72px;
    height: 72px;
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--red-light);
    transition: var(--transition);
}

.benefit-card:hover .benefit-card__icon {
    background: rgba(229,9,20,0.2);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(229,9,20,0.3);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-400);
}

.benefit-card__border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-card__border {
    transform: scaleX(1);
}

/* ============================================
   DEVICES
   ============================================ */
.devices {
    background: var(--bg-800);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.device-card {
    background: var(--bg-700);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

    .device-card:hover {
        border-color: var(--red);
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-red);
    }

.device-card__icon {
    width: 72px;
    height: 72px;
    background: rgba(229,9,20,0.08);
    border: 1px solid rgba(229,9,20,0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
    transition: var(--transition);
}

.device-card:hover .device-card__icon {
    background: rgba(229,9,20,0.18);
    border-color: var(--red);
    color: #fff;
    transform: scale(1.08);
}

.device-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.device-card__sub {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: var(--bg-900);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-700);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    /* sem transition — o tilt 3D usa rAF para suavidade real */
    overflow: visible;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.pricing-card__features {
    flex: 1;
}

    .pricing-card:hover {
        box-shadow: var(--shadow-card);
    }

.pricing-card--featured {
    background: linear-gradient(145deg, #0f0f0f, #180000);
    border: 2px solid var(--red);
    box-shadow: var(--shadow-red), 0 0 0 1px rgba(229,9,20,0.1);
    z-index: 2;
}

    .pricing-card--featured:hover {
        box-shadow: 0 0 60px rgba(229,9,20,0.3), var(--shadow-card);
    }

.pricing-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(229,9,20,0.4);
}

.pricing-card__header {
    margin-bottom: 32px;
}

.pricing-card__period {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card__currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.pricing-card__value {
    font-size: 58px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
}

.pricing-card__freq {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-card__economy {
    display: inline-block;
    font-size: 12px;
    color: var(--red-light);
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 500;
}

.pricing-card__features {
    flex: 1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .pricing-card__features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: var(--gray-300);
    }

        .pricing-card__features li svg {
            color: var(--red-light);
            flex-shrink: 0;
        }

.pricing-card__btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .pricing-note a {
        color: var(--red-light);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color var(--transition-fast);
    }

        .pricing-note a:hover {
            color: var(--white);
        }

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--bg-800);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-700);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

    .faq-item[open] {
        border-color: var(--border-red);
    }

    .faq-item summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 24px;
        cursor: pointer;
        list-style: none;
        transition: background var(--transition-fast);
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            background: rgba(255,255,255,0.02);
        }

.faq-item__q {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-100);
}

.faq-item__icon {
    color: var(--gray-500);
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition-fast);
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
    color: var(--red);
}

.faq-item__body {
    padding: 0 24px 22px;
    border-top: 1px solid var(--border);
}

    .faq-item__body p {
        font-size: 14px;
        color: var(--gray-400);
        line-height: 1.7;
        padding-top: 18px;
    }

/* FAQ CTA */
.faq-cta {
    position: sticky;
    top: 100px;
}

.faq-cta__inner {
    background: linear-gradient(145deg, #0f0f0f, #180000);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-red);
}

.faq-cta__icon {
    width: 72px;
    height: 72px;
    background: rgba(229,9,20,0.15);
    border: 1px solid rgba(229,9,20,0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--red-light);
}

.faq-cta__inner h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-cta__inner p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-cta__inner .btn-primary {
    width: 100%;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229,9,20,0.15), rgba(155,0,0,0.08)), var(--bg-900);
}

    .cta-section__bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(229,9,20,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(229,9,20,0.06) 1px, transparent 1px);
        background-size: 40px 40px;
    }

.cta-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(229,9,20,0.05);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-xl);
    padding: 60px 60px;
    backdrop-filter: blur(10px);
}

.cta-section__text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.cta-section__text p {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 400px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-800);
    border-top: 1px solid var(--border);
    padding-top: 64px;
}

.footer-body {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand__logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    margin-bottom: 10px;
    transform: translateY(12px);
    filter: drop-shadow(0 0 12px rgba(229,9,20,0.18));
}

.footer-brand__tagline {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
    transition: var(--transition);
}

    .footer-social__link:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
        transform: translateY(-3px);
    }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-nav h4 {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gray-300);
        margin-bottom: 8px;
    }

    .footer-nav a {
        font-size: 14px;
        color: var(--gray-500);
        transition: color var(--transition-fast);
        padding: 3px 0;
    }

        .footer-nav a:hover {
            color: var(--white);
        }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gray-600);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--bg-600);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

    .scroll-top.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .scroll-top:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
        box-shadow: 0 0 20px var(--red-glow);
    }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 800;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
}

    .whatsapp-float:hover {
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    }

.whatsapp-float__ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: var(--red);
    border: 2px solid var(--bg-900);
    border-radius: 50%;
    animation: ping 1.8s ease-in-out infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    60% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ============================================
   PARTICLES
   ============================================ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0;
    animation: particleRise linear infinite;
    box-shadow: 0 0 6px rgba(229,9,20,0.6);
}

@keyframes particleRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.6);
    }

    10% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(50px) scale(1.2);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-cta {
        position: static;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
    }

    .hero-img {
        max-width: 440px;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cta-section__content {
        flex-direction: column;
        text-align: center;
        padding: 50px 32px;
    }

    .footer-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    :root {
        --navbar-h: 70px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .big-btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-bar__inner {
        gap: 8px 12px;
    }

    .trust-sep {
        display: none;
    }

    .cta-section__content {
        padding: 40px 24px;
    }
}
