/* ============================================
   IPTV Smarter Player — Premium Dark Theme CSS
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --card: #161616;
    --card-border: rgba(255, 255, 255, 0.07);
    --red: #e50914;
    --red-dark: #b8060f;
    --red-glow: rgba(229, 9, 20, 0.3);
    --white: #ffffff;
    --grey: #888888;
    --grey-light: #cccccc;
    --gold: #f0b90b;
    --font: 'Inter', system-ui, -apple-system, sans-serif;

    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 72px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-dark {
    background: var(--bg-alt);
}

/* ---- Reveal Animations ---- */
.reveal,
.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid var(--red);
    border-radius: 100px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ================================================
   HEADER
   ================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    transition: box-shadow var(--transition);
}

#header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.4));
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-light);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--grey);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    color: var(--white);
    background: var(--red);
}

.lang-sep {
    color: var(--card-border);
    font-size: 14px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--card-border);
    padding: 16px 24px;
    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-light);
    border-bottom: 1px solid var(--card-border);
}

.mobile-link:last-child {
    border-bottom: none;
}


/* ================================================
   HERO
   ================================================ */
#hero {
    min-height: 100vh;
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(229, 9, 20, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
        var(--bg);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

#hero>.container,
#hero {
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 28px;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--red) 0%, #ff4444 50%, #ff2d2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-light);
    margin-bottom: 36px;
    max-width: 560px;
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 8px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--card-border);
}

/* CTA buttons */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--red) 0%, #c40812 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: 0 4px 24px rgba(229, 9, 20, 0.4);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(229, 9, 20, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    transition: border-color var(--transition), background var(--transition);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

/* Pulse */
.pulse {
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(229, 9, 20, 0.4);
    }

    50% {
        box-shadow: 0 4px 48px rgba(229, 9, 20, 0.8), 0 0 80px rgba(229, 9, 20, 0.3);
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--grey);
}

.hero-trust i {
    color: var(--red);
}

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tv-mockup {
    position: relative;
    width: 380px;
    height: 240px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 12px;
    border: 2px solid var(--card-border);
    box-shadow: var(--shadow);
}

.tv-screen {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.tv-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(229, 9, 20, 0.2) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}


/* ================================================
   FEATURES GRID
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(229, 9, 20, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-icon-wrapper.red {
    background: rgba(229, 9, 20, 0.15);
    color: var(--red);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}


/* ================================================
   VOD
   ================================================ */
.vod-showcase {
    margin-bottom: 32px;
}

.vod-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.vod-cat {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    background: var(--card);
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    color: var(--grey);
}

.vod-cat:hover,
.vod-cat.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.vod-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    margin-top: 32px;
}

.vod-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.vod-slider:hover .vod-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

.vod-card {
    width: 220px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/3;
    background: var(--card);
    cursor: pointer;
}

.vod-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.vod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 9, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 28px;
}

.vod-card:hover img {
    transform: scale(1.07);
}

.vod-card:hover .vod-overlay {
    opacity: 1;
}

.vod-cta {
    text-align: center;
    margin-top: 48px;
}


/* ================================================
   PRICING
   ================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card-featured {
    border-color: var(--red);
    background: linear-gradient(145deg, #1a1010, #161616);
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.2), inset 0 1px 0 rgba(229, 9, 20, 0.3);
}

.featured-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-header {
    margin-bottom: 28px;
}

.plan-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--grey-light);
}

.plan-icon-gold {
    background: rgba(240, 185, 11, 0.15);
    color: var(--gold);
}

.plan-name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 13px;
    color: var(--grey);
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--card-border);
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--grey-light);
}

.plan-feature i {
    color: var(--red);
    font-size: 12px;
}

/* Duration tabs */
.duration-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.duration-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 16px 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: border-color var(--transition);
}

.duration-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.duration-tab.highlight {
    border-color: var(--red);
    background: rgba(229, 9, 20, 0.08);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.duration-label {
    font-size: 13px;
    color: var(--grey);
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 9px 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-plan-highlight {
    background: var(--red);
    border-color: var(--red);
}

.btn-plan-highlight:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--grey);
}

.pricing-note i {
    color: var(--red);
}


/* ================================================
   DEVICES
   ================================================ */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.device-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-light);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: default;
}

.device-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 8px 32px rgba(229, 9, 20, 0.15);
    color: var(--white);
}

.device-icon {
    width: 56px;
    height: 56px;
    background: rgba(229, 9, 20, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--red);
    transition: background var(--transition);
}

.device-card:hover .device-icon {
    background: rgba(229, 9, 20, 0.2);
}


/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, 0.2);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
}

.author-loc {
    font-size: 12px;
    color: var(--grey);
    margin-top: 2px;
}


/* ================================================
   FAQ
   ================================================ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(229, 9, 20, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--white);
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--red);
}

.faq-icon {
    font-size: 14px;
    color: var(--grey);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey);
}


/* ================================================
   FINAL CTA SECTION
   ================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.12) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ================================================
   FOOTER
   ================================================ */
#footer {
    background: #070707;
    border-top: 1px solid var(--card-border);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--card-border);
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.3));
}

.footer-tagline {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 20px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 100px;
    color: #25d366;
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition);
}

.footer-wa:hover {
    background: rgba(37, 211, 102, 0.2);
}

.footer-wa i {
    font-size: 16px;
}

.footer-links-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-col a {
    display: block;
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: var(--white);
}

/* Payment banner */
.payment-banner {
    padding: 40px 0;
    border-bottom: 1px solid var(--card-border);
    text-align: center;
}

.payment-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.payment-img {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    filter: brightness(0.9) grayscale(20%);
    transition: filter var(--transition);
    border-radius: var(--radius-sm);
}

.payment-img:hover {
    filter: brightness(1) grayscale(0%);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--grey);
}

.footer-disclaimer {
    font-size: 11px;
    color: #555;
}


/* ================================================
   STICKY WHATSAPP BUTTON
   ================================================ */
.sticky-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #25d366;
    color: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: wa-pulse 2.5s infinite;
    max-width: calc(100vw - 56px);
}

.sticky-wa:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7);
    animation: none;
}

.sticky-wa-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.sticky-wa-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.85), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* Star particles */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(229, 9, 20, 0.6);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    from {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}


/* ================================================
   STATIC PAGES (About, Contact, Terms, Privacy)
   ================================================ */
.page-header {
    padding: 160px 24px 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
}

.page-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px 120px;
}

.page-content h2 {
    font-size: 28px;
    color: var(--white);
    margin-top: 48px;
    margin-bottom: 24px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-light);
    margin-bottom: 20px;
}

.page-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
    color: var(--grey-light);
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(229, 9, 20, 0.15);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-text a {
    color: var(--white);
    font-weight: 600;
    transition: color var(--transition);
}

.contact-text a:hover {
    color: var(--red);
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: border-color var(--transition), background var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}


/* ================================================
   RESPONSIVE — TABLET
   ================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .devices-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .nav-center {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 4px;
    }

    .stat-item {
        padding: 0 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .sticky-wa {
        bottom: 16px;
        right: 16px;
    }

    .sticky-wa-text {
        display: none;
    }

    .sticky-wa {
        padding: 16px;
        border-radius: 50%;
    }

    .sticky-wa-icon {
        font-size: 24px;
    }

    .duration-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

    .pricing-card {
        padding: 28px 20px;
    }
}