@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #050811;
    --bg-card: rgba(10, 17, 32, 0.75);
    --bg-card-hover: rgba(16, 28, 52, 0.88);
    
    /* Sparrow Digital Brand Palette (Electric Cyan & Tech Blue) */
    --neon-cyan: #00f3ff;
    --neon-blue: #0077ff;
    --neon-silver: #e2e8f0;
    --neon-green: #00ff87;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-glow: rgba(0, 243, 255, 0.3);
    --border-card: rgba(0, 243, 255, 0.1);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

/* Cyber Neon Preloader Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050811;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.preloader-logo-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 24px;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 25px var(--neon-cyan);
    animation: preloaderPulse 1.5s infinite alternate ease-in-out;
}

.preloader-glow-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 3px solid var(--neon-cyan);
    border-bottom: 3px solid var(--neon-blue);
    animation: spinRing 1.2s linear infinite;
}

@keyframes preloaderPulse {
    0% { transform: scale(0.92); box-shadow: 0 0 20px var(--neon-cyan); }
    100% { transform: scale(1.06); box-shadow: 0 0 45px var(--neon-blue), 0 0 20px #ffffff; }
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.preloader-title .highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.preloader-tagline {
    font-size: 0.76rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 22px;
    font-weight: 700;
}

.preloader-bar {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan), #ffffff);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: fillProgress 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 119, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(0, 170, 255, 0.12) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Background Cyber Grid overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Cyber Neon Text & Glow Classes */
.neon-title {
    font-family: 'Orbitron', 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.gradient-neon-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 50%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.4));
}

.text-cyan { color: var(--neon-cyan); }
.text-blue { color: var(--neon-blue); }
.text-silver { color: var(--neon-silver); }
.text-green { color: var(--neon-green); }

/* Navigation */
.navbar {
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan), inset 0 0 10px var(--neon-cyan);
    animation: neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 243, 255, 0.4); border-color: var(--neon-cyan); }
    100% { box-shadow: 0 0 20px var(--neon-blue), 0 0 35px rgba(0, 119, 255, 0.6); border-color: #00a8ff; }
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.brand-name .highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px var(--neon-cyan);
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    width: 100%;
    padding: 14px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2cf076 0%, #16a090 100%);
}

.btn-outline {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-outline:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.35);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 28px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 22px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 36px;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(10, 17, 32, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.stat-item i {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* Search and Filter Box */
.search-filter-box {
    background: rgba(10, 17, 32, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 243, 255, 0.25);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 243, 255, 0.15);
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

#searchInput {
    width: 100%;
    background: rgba(5, 8, 17, 0.85);
    border: 1px solid rgba(0, 243, 255, 0.25);
    padding: 16px 20px 16px 50px;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

#searchInput:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.filter-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chip.active, .chip:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* Products Section */
.products-section {
    padding: 60px 20px 80px;
}

.section-header {
    margin-bottom: 44px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 28px;
}

/* Product Card - Cyber Neon Theme */
.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-silver));
    opacity: 0.6;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 243, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 243, 255, 0.25);
}

.product-card:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0, 243, 255, 0.12);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.product-badge.hot {
    background: rgba(0, 119, 255, 0.2);
    border-color: var(--neon-blue);
    color: #38bdf8;
    box-shadow: 0 0 12px rgba(0, 119, 255, 0.4);
}

.product-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.brand-real-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.product-card:hover .product-icon-wrap {
    border-color: rgba(0, 243, 255, 0.4);
    background: rgba(20, 32, 58, 0.8);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.25);
}

.product-card:hover .brand-real-logo {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 4px 12px rgba(0, 243, 255, 0.4));
}

.product-icon-wrap.capcut {
    border-color: rgba(0, 243, 255, 0.25);
}

.product-icon-wrap.canva {
    border-color: rgba(125, 42, 232, 0.3);
}

.product-icon-wrap.google {
    border-color: rgba(66, 133, 244, 0.3);
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.product-duration {
    display: inline-block;
    color: var(--neon-cyan);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.product-features {
    list-style: none;
    margin-bottom: 26px;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--neon-green);
    filter: drop-shadow(0 0 4px var(--neon-green));
}

.price-container {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.price-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.price-currency {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* How It Works Section */
.how-it-works {
    background: rgba(10, 17, 32, 0.5);
    padding: 70px 0;
    border-top: 1px solid rgba(0, 243, 255, 0.15);
    border-bottom: 1px solid rgba(0, 243, 255, 0.15);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 44px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.step-number {
    position: absolute;
    top: 18px;
    left: 22px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: rgba(0, 243, 255, 0.15);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* Features */
.features-section {
    padding: 70px 20px;
}

.features-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.f-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.12);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 243, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

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

/* FAQ */
.faq-section {
    padding: 40px 20px 90px;
    max-width: 850px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 243, 255, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--neon-cyan);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: #04050b;
    border-top: 1px solid rgba(0, 243, 255, 0.15);
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
    padding-bottom: 50px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    vertical-align: middle;
    margin-right: 10px;
    border: 1px solid var(--neon-cyan);
}

.footer-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    vertical-align: middle;
    color: #fff;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 14px;
}

.footer-contact h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 16px;
    color: var(--neon-cyan);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, #0055ff, #00f3ff, #0055ff);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    color: #050811;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reviews Section */
.reviews-section {
    padding: 70px 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0, 243, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.review-stars {
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.reviewer-name {
    font-weight: 800;
    color: var(--neon-cyan);
    font-size: 0.95rem;
}

.reviewer-location {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Payment Badges Section */
.payments-section {
    padding: 30px 20px 60px;
}

.payment-box {
    background: rgba(10, 17, 32, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.payment-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #fff;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pay-badge i {
    color: var(--neon-cyan);
}

/* Floating Live Order Toast */
.live-toast {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: rgba(10, 17, 32, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 998;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.15);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-details {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--neon-cyan);
}

.toast-desc {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin: 2px 0;
}

.toast-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mobile & Tablet Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .top-announcement-bar {
        font-size: 0.76rem;
        padding: 6px 10px;
    }

    .navbar {
        padding: 12px 0;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .nav-contact-btn span {
        display: none;
    }

    .nav-contact-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 35px;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .hero-stats {
        gap: 8px;
        margin-bottom: 28px;
    }

    .stat-item {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    /* Search & Filter Box */
    .search-filter-box {
        padding: 14px;
        gap: 12px;
        border-radius: var(--radius-md);
    }

    #searchInput {
        padding: 12px 16px 12px 42px;
        font-size: 0.88rem;
    }

    .search-icon {
        left: 14px;
        font-size: 0.95rem;
    }

    .filter-chips {
        gap: 8px;
    }

    .chip {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    /* Products Section */
    .products-section {
        padding: 35px 10px 50px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Product Card Mobile - Compact & Neat */
    .product-card {
        padding: 20px 18px;
        border-radius: var(--radius-md);
    }

    .product-badge {
        top: 14px;
        right: 14px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .product-icon-wrap {
        width: 42px;
        height: 42px;
        max-width: 42px;
        max-height: 42px;
        border-radius: 12px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-real-logo {
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
    }

    .product-title {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .product-duration {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .product-features {
        margin-bottom: 16px;
    }

    .product-features li {
        font-size: 0.83rem;
        margin-bottom: 6px;
        gap: 8px;
    }

    .price-container {
        padding-top: 12px;
        margin-bottom: 12px;
    }

    .price-label {
        font-size: 0.7rem;
    }

    .price-value {
        font-size: 1.55rem;
    }

    .price-currency {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        padding: 11px;
        font-size: 0.9rem;
    }

    /* How it works */
    .how-it-works {
        padding: 45px 0;
    }

    .steps-grid {
        gap: 16px;
        margin-top: 24px;
    }

    .step-card {
        padding: 22px 18px;
        border-radius: var(--radius-md);
    }

    .step-number {
        font-size: 1.5rem;
        top: 12px;
        left: 14px;
    }

    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .step-card h3 {
        font-size: 1.05rem;
    }

    .step-card p {
        font-size: 0.84rem;
    }

    /* Features & Reviews */
    .features-section {
        padding: 40px 10px;
    }

    .features-box {
        gap: 14px;
    }

    .feature-card {
        padding: 18px;
        border-radius: var(--radius-md);
        gap: 10px;
    }

    .reviews-section {
        padding: 40px 10px;
    }

    .reviews-grid {
        gap: 14px;
        margin-top: 24px;
    }

    .review-card {
        padding: 18px;
        border-radius: var(--radius-md);
        gap: 10px;
    }

    .review-text {
        font-size: 0.86rem;
    }

    /* Payments Section */
    .payments-section {
        padding: 20px 10px 40px;
    }

    .payment-box {
        padding: 20px 14px;
        border-radius: var(--radius-md);
    }

    .payment-box h4 {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .pay-badge {
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    /* FAQ */
    .faq-section {
        padding: 30px 10px 60px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.86rem;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
    }

    .footer-content {
        gap: 24px;
        padding-bottom: 30px;
    }

    /* Floating Widgets */
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 18px;
    }

    .live-toast {
        bottom: 82px;
        left: 14px;
        right: 14px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .toast-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .toast-desc {
        font-size: 0.8rem;
    }

    .toast-time {
        font-size: 0.7rem;
    }
}

/* Hide Netlify Badge & Injected Drawers */
#netlify-badge,
.netlify-badge,
iframe[src*="netlify"],
[data-netlify-deploy-id] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* V2Ray VPN Store Specific Styles */
.v2ray-section {
    padding: 30px 20px 80px;
}

.network-tabs-header {
    margin-bottom: 20px;
}

.tabs-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: var(--neon-cyan);
    letter-spacing: 0.5px;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.network-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.network-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.2);
}

.network-card.active {
    background: rgba(16, 28, 52, 0.95);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.35);
}

.net-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.net-img-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.net-logo {
    width: 100%;
    height: 100%;
}

.net-info {
    display: flex;
    flex-direction: column;
}

.net-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.net-subtext {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.net-check {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s;
}

.network-card.active .net-check {
    opacity: 1;
}

/* V2Ray Package Box */
.v2ray-package-box {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 243, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.15);
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.pkg-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #fff;
}

.selected-net-tag {
    background: rgba(0, 243, 255, 0.15);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.sub-pkg-section {
    margin-bottom: 28px;
}

.sub-pkg-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-pkg-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sub-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s;
}

.sub-chip.active, .sub-chip:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

/* Tier Selection Grid */
.tier-section {
    margin-bottom: 32px;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.tier-card {
    background: rgba(5, 8, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.tier-card:hover {
    border-color: rgba(0, 243, 255, 0.4);
    background: rgba(16, 28, 52, 0.7);
}

.tier-card.active {
    background: rgba(16, 28, 52, 0.95);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.25);
}

.tier-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-dim);
    position: relative;
    flex-shrink: 0;
}

.tier-card.active .tier-radio {
    border-color: var(--neon-cyan);
}

.tier-card.active .tier-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

.tier-content {
    flex-grow: 1;
}

.tier-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.tier-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.tier-price {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--neon-cyan);
}

/* V2Ray Summary & Checkout Bar */
.v2ray-checkout-bar {
    background: rgba(5, 8, 17, 0.85);
    border: 1px solid rgba(0, 243, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.total-summary {
    display: flex;
    flex-direction: column;
}

.total-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.total-amount {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-cyan);
}

.v2ray-buy-btn {
    padding: 14px 28px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* V2Ray Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .nav-v2ray-btn {
        padding: 6px 12px !important;
        font-size: 0.78rem !important;
        border-radius: 20px !important;
    }

    .nav-v2ray-btn span {
        font-size: 0.76rem !important;
    }

    .v2ray-section {
        padding: 20px 10px 60px;
    }

    .network-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 24px;
    }

    .network-card {
        padding: 12px 10px;
        gap: 8px;
        border-radius: 14px;
    }

    .net-logo-wrap {
        width: 36px;
        height: 36px;
        padding: 3px;
        border-radius: 10px;
    }

    .net-name {
        font-size: 0.85rem;
    }

    .net-subtext {
        font-size: 0.65rem;
    }

    .v2ray-package-box {
        padding: 20px 14px;
        border-radius: var(--radius-md);
    }

    .pkg-header h3 {
        font-size: 1.02rem;
    }

    .selected-net-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .sub-chip {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tier-card {
        padding: 14px;
        gap: 12px;
    }

    .tier-title {
        font-size: 0.92rem;
    }

    .tier-desc {
        font-size: 0.72rem;
    }

    .tier-price {
        font-size: 1.1rem;
    }

    .v2ray-checkout-bar {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }

    .total-amount {
        font-size: 1.8rem;
    }

    .v2ray-buy-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.92rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 0.98rem;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .nav-v2ray-btn {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
    }
}

/* V2Ray Order Details Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.3);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 32px 28px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--neon-cyan);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.modal-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.input-group {
    margin-bottom: 18px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.input-group label i {
    color: var(--neon-cyan);
    margin-right: 6px;
}

.input-group input {
    width: 100%;
    background: rgba(5, 8, 17, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
    justify-content: center;
}
