@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Montserrat:wght@700;800&family=Outfit:wght@500;800&family=Poppins:wght@400;600&display=swap');

:root {
    --bg-primary: #0B132B;
    --bg-secondary: #1C2541;
    --accent-primary: #3A86FF;
    /* Electric Blue */
    --accent-premium: #FFD700;
    /* Gold */
    --accent-gold-glow: rgba(255, 215, 0, 0.4);
    --text-main: #FFFFFF;
    --text-dim: #C0C0C0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html,
body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Basic text protection */
    user-select: none;
    -webkit-user-select: none;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    z-index: -1;
    pointer-events: none;
}

.bg-glow-bottom {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    bottom: -400px;
    left: -400px;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
nav,
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.nav-cta {
    color: #00FF00;
}

.nav-links a.nav-cta {
    background: rgba(0, 255, 0, 0.12);
    border: 1px solid rgba(0, 255, 0, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 0 80px;
    /* Reduced side padding to 0 for centering balance */
    background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow-x: hidden;
    /* Safety for floating background effects */
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.hero .slogan {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: var(--text-dim);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 60px;
    max-width: 800px;
}

video {
    max-width: 100%;
    height: auto;
}

/* Hero typography & layout */
.hero-title {
    font-size: clamp(1.5rem, 4.5vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 10px;
    padding: 0 16px;
    max-width: 100%;
    word-break: break-word;
    white-space: nowrap;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.75rem, 2.8vw, 1.3rem);
    color: #00FF00;
    letter-spacing: clamp(0.5px, 0.5vw, 2px);
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    padding: 0 20px;
    max-width: 100%;
    line-height: 1.5;
}

.hero-video-wrap {
    width: clamp(260px, 90vw, 450px);
    margin: -10px auto 40px;
    position: relative;
    padding: 0 16px;
}

.hero-video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 5px;
    padding: 0 16px;
    max-width: 100%;
}

.section-heading-profit {
    font-size: clamp(1.4rem, 6vw, 3.5rem);
    margin-top: 100px;
}

.section-heading-reviews {
    font-size: clamp(1.6rem, 7vw, 4.5rem);
}

.accent-green {
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
}

.reviews-header-wrap {
    margin-top: 150px;
    text-align: center;
    width: 100%;
}

.about-box {
    margin: 80px auto;
    max-width: 800px;
    width: calc(100% - 32px);
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    backdrop-filter: blur(10px);
}

.about-box-title {
    color: #00FF00;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-box-text {
    color: #ccc;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.disclaimer-title {
    margin-bottom: 20px;
    color: #ff3b3b;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: clamp(0.85rem, 3vw, 1rem);
}

.disclaimer-text {
    color: #666;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    line-height: 1.6;
}

.site-footer {
    text-align: center;
    padding: 60px 20px;
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

.footer-brand-title {
    letter-spacing: clamp(1px, 1.5vw, 4px);
    margin-bottom: 20px;
    font-weight: 900;
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    padding: 0 12px;
    line-height: 1.3;
}

.footer-copy {
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0 16px;
}

/* Robot Logo Container - Updated for new Premium Image */
.logo-container {
    width: clamp(280px, 80vw, 500px);
    height: auto;
    aspect-ratio: 1/1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 15px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    /* High-End Shadow for Premium Look */
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(58, 134, 255, 0.1);
    margin-bottom: 60px;
    /* Removed floating animation as requested */
    overflow: hidden;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    /* Removed drop-shadow to keep the premium focus on the card shadow */
}

/* Buy Button */
.btn-buy {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulseGold 3s infinite;
}

.btn-buy:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px var(--accent-gold-glow);
    background: linear-gradient(135deg, #FFF080 0%, #FFD700 100%);
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Sections General */
section {
    padding: 100px 8%;
}

.section-tag {
    color: var(--accent-primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    background: rgba(58, 134, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Steps Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.2);
}

.step-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

/* Trust Section */
.trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--glass-bg);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.check-icon {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

/* Disclaimer */
.disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 8%;
    text-align: center;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    color: #888;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer */
footer {
    padding: 80px 8% 40px;
    background: #05080a;
    position: relative;
    z-index: 9999; /* Force it to the top layer */
    pointer-events: auto !important; /* Force clicks to work */
}

footer a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: var(--accent-premium);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    color: #444;
    font-size: 0.85rem;
}

/* Aggressive Branding Styles */
.aggressive-header {
    animation: aggressiveEntrance 0.6s cubic-bezier(0.1, 1.2, 0.1, 1) both, intenseGlow 2s ease-in-out infinite alternate;
    opacity: 1 !important;
}

@keyframes aggressiveEntrance {
    0% {
        transform: scale(1.15);
        filter: blur(8px);
        opacity: 0;
    }

    100% {
        transform: translate3d(0, 0, 0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes intenseGlow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 215, 0, 0.05);
    }

    to {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.25), 0 0 50px rgba(255, 215, 0, 0.4);
    }
}

/* Scroll Animation Adjustment */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slogan {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInLate 1.2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    margin-bottom: 40px !important;
}

#live-ticker {
    color: #00FF00;
    /* Lime green for LIVE feel */
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transition: opacity 0.5s ease;
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: #00FF00;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes slideInLate {
    from {
        letter-spacing: 20px;
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        letter-spacing: 6px;
        opacity: 1;
        transform: scale(1);
    }
}

/* Multi-Row Organic Floating Grid */
.floating-grid {
    width: 100%;
    margin: 10px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    /* Safe vanishing effect */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.floating-row {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: slide-left 40s linear infinite;
}

.floating-row img {
    height: 120px;
    /* Smaller for organic grid feel */
    margin: 0 10px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

/* Randomized Organic Layout */
.floating-row img:nth-child(2n) {
    transform: rotate(2deg) translateY(5px);
}

.floating-row img:nth-child(3n) {
    transform: rotate(-3deg) translateY(-8px);
}

.floating-row img:nth-child(5n) {
    transform: rotate(1deg) scale(0.95);
}

.floating-row img:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
    border-color: var(--accent-premium);
}

/* Row-Specific Speeds & Directions (Synced with Reviews) */
.row-1 {
    animation: slide-right 60s linear infinite;
}

.row-2 {
    animation: slide-left 80s linear infinite;
}

.row-3 {
    animation: slide-right 70s linear infinite;
}

@keyframes slide-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive Scaling for Grid */
@media (max-width: 768px) {
    .floating-row img {
        height: 75px;
    }

    .floating-grid {
        gap: 8px;
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }
}

.logo-container {
    margin-top: 20px;
}

@keyframes slideInLate {
    from {
        letter-spacing: 20px;
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        letter-spacing: 6px;
        opacity: 1;
        transform: scale(1);
    }
}

/* Reviews Wall Styling */
.reviews-wall {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 50px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.review-row {
    display: flex;
    white-space: nowrap;
    width: max-content;
    gap: 20px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card strong {
    display: block;
    color: var(--accent-premium);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
    white-space: normal;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-premium);
    background: rgba(255, 215, 0, 0.05);
}

/* Review Row Animations */
.rev-1 {
    animation: slide-left 60s linear infinite;
}

.rev-2 {
    animation: slide-right 80s linear infinite;
}

.rev-3 {
    animation: slide-left 70s linear infinite;
}

@keyframes slide-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* === PERFORMANCE ARCHITECTURE: ULTRA-SMOOTH RENDERING === */

/* Force GPU Layer Promotion for all high-frequency animations */
.floating-row,
.review-row,
.premium-x,
video {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Ensure looping rows handle content without gaps or cropping */
.floating-grid,
.reviews-wall {
    width: 100%;
    overflow: hidden;
    contain: paint;
}

/* Base Performance Optimization (Works across all devices) */
section,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.hero {
    content-visibility: visible;
}

/* Custom scrollbar — matches site theme */
html {
    scrollbar-width: thin;
    scrollbar-color: #00FF00 rgba(255, 255, 255, 0.06);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00FF00 0%, #008800 100%);
    border-radius: 10px;
    border: 2px solid rgba(11, 19, 43, 0.9);
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33FF33 0%, #00AA00 100%);
}

*::-webkit-scrollbar-corner {
    background: var(--bg-primary);
}

/* === MOBILE-SPECIFIC PERFORMANCE OVERRIDES === */
@media (max-width: 768px) {

    /* Kill expensive GPU-intensive filter lookups on low-end phones */
    .feature-card,
    .logo-container,
    .review-card,
    .bot-card,
    .demo-live-plan-card,
    .about-box,
    nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(11, 19, 43, 0.98) !important;
    }

    /* Reduce text-glow and shadow complexity for fill-rate efficiency */
    .aggressive-header,
    .premium-x,
    h2,
    .accent-green,
    .bots-section-title span {
        text-shadow: none !important;
    }

    .hero h1,
    .aggressive-header {
        letter-spacing: -1px;
    }

    /* Scaling ensures character-safe widths (No cropping) */
    .floating-row img {
        height: 75px;
        margin: 0 6px;
    }

    .review-card {
        min-width: 220px;
        padding: 12px 18px;
    }

    /* Disable expensive animations/interactions during scroll on mobile */
    .review-card:hover,
    .feature-card:hover {
        transform: none !important;
    }

    /* Optimize Video Player for mobile performance */
    video {
        filter: none !important;
        box-shadow: none !important;
    }
}

.logo-container {
    margin-top: 20px;
}

.logo-container img {
    max-width: 300px;
}

/* === PREMIUM BRANDING: THE X FACTOR === */
.premium-x {
    display: inline-block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    transform: scale(1);
    margin-left: 0.15em;
    padding: 0 2px;
    z-index: 10;

    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFD700 30%,
            #ffffff 50%,
            #FFD700 70%,
            #FFD700 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.35));
    animation: chromeShimmer 2.5s infinite linear;
    will-change: background-position;
}

.premium-x::before {
    content: "TRADE";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #FFD700;
    -webkit-text-fill-color: #FFD700;
    filter: blur(10px);
    opacity: 0.35;
    pointer-events: none;
}

/* Diagonal Surface Shimmer Highlight */
@keyframes chromeShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Bionic Breathing Glow */
@keyframes bionicGlow {
    from {
        opacity: 0.3;
        filter: blur(8px) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
        transform: scale(1.05);
    }

    to {
        opacity: 0.7;
        filter: blur(20px) drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
        transform: scale(1.25);
    }
}

/* Optimization for mobile: ensure scaling doesn't break alignment */
@media (max-width: 768px) {
    .premium-x {
        transform: scale(1);
        margin-left: 0.1em;
    }
}

/* Download Modal */
#dl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.dl-modal-box {
    background: #004d00;
    border: 2px solid #00FF00;
    padding: 40px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.red-note-heading {
    color: #ff3b3b;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.modal-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

/* Pricing Banner */
.pricing-banner {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 20px;
    padding: 0 20px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-block {
    text-align: center;
}

.price-label {
    display: block;
    color: #aaa;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.price-strike {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: #888;
}

.price-strike::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 4px;
    background: #ff3b3b;
    transform: rotate(-12deg);
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.8);
    border-radius: 10px;
}

.price-current {
    font-size: 2.8rem;
    font-weight: 900;
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.price-countdown {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 59, 59, 0.3);
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
}

.price-countdown-label {
    display: block;
    color: #ff5555;
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 4px;
}

#botx-countdown {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Bots Section */
.bots-section {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.bots-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.bots-section-title span {
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.bots-section-sub {
    color: #888;
    font-size: 1rem;
    margin-bottom: 40px;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 25px;
}

.bot-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: left;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.bot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bot-card-featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.04);
}

.bot-card-featured:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.bot-card-badge {
    display: inline-block;
    background: rgba(0, 255, 0, 0.15);
    color: #00FF00;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.bot-card-badge-pro {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
}

.bot-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bot-card-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.bot-card-features {
    list-style: none;
    margin-bottom: 20px;
}

.bot-card-features li {
    color: #ccc;
    font-size: 0.85rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.bot-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF00;
    font-weight: 800;
}

.bot-card-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bot-price-old {
    position: relative;
    color: #666;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-color: #ff3b3b;
    text-decoration-thickness: 2px;
}

.bot-price-new {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00FF00;
}

.btn-buy-now {
    width: 100%;
    background: linear-gradient(135deg, #00FF00 0%, #008000 100%);
    color: #000;
    border: none;
    padding: 16px 24px;
    min-height: 48px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-buy-now:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 255, 0, 0.5);
    background: linear-gradient(135deg, #33FF33 0%, #00AA00 100%);
}

.bot-card-featured .btn-buy-now {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.bot-card-featured .btn-buy-now:hover {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Demo To Live — Quotex & Tradovix */
.demo-live-section {
    width: 100%;
    max-width: 1100px;
    margin: 70px auto 50px;
    padding: 0 20px;
    box-sizing: border-box;
}

.demo-live-section .bots-section-title {
    font-size: clamp(1.2rem, 4.5vw, 3rem);
    line-height: 1.25;
    letter-spacing: 0;
    padding: 0 4px;
    word-break: break-word;
}

.demo-live-section .bots-section-sub {
    font-size: clamp(0.85rem, 2.8vw, 1rem);
    line-height: 1.65;
    padding: 0 4px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.demo-live-features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 10px;
    margin-bottom: 40px;
    width: 100%;
}

.demo-live-tick {
    color: #00FF00;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1.3;
}

.demo-live-feature-pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.25);
    color: #ddd;
    font-size: clamp(0.72rem, 2.2vw, 0.85rem);
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 12px;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    min-width: 0;
}

.demo-live-feature-pill .demo-live-tick {
    font-size: 0.9em;
}

.demo-live-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.demo-live-plan-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    text-align: left;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.demo-live-card-head {
    padding: 26px 22px 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-live-card-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.demo-live-price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.demo-live-features-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.demo-live-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    font-size: clamp(0.8rem, 2.2vw, 0.88rem);
    line-height: 1.45;
}

.demo-live-features-list li > span:last-child {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.demo-live-features-list .demo-live-tick {
    margin-top: 1px;
}

.demo-live-card-body .btn-buy-now {
    margin-top: auto;
}

.demo-live-plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.demo-live-plan-featured {
    border-color: rgba(255, 215, 0, 0.45);
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.12);
}

.demo-live-plan-featured .demo-live-card-head {
    background: rgba(255, 215, 0, 0.07);
    border-bottom-color: rgba(255, 215, 0, 0.15);
}

.demo-live-plan-featured:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.demo-live-plan-label {
    display: inline-block;
    background: rgba(58, 134, 255, 0.15);
    color: #3A86FF;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(58, 134, 255, 0.3);
}

.demo-live-plan-label-popular {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
}

.demo-live-plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 8px 0 0;
}

.demo-live-plan-price-wrap,
.demo-live-price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.demo-live-plan-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00FF00;
    line-height: 1;
}

.demo-live-plan-period {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-live-plan-featured .demo-live-plan-price {
    color: #FFD700;
}

.demo-live-plan-featured .btn-buy-now {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.demo-live-plan-featured .btn-buy-now:hover {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Contact Modal */
#contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.88);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.contact-modal-box {
    background: linear-gradient(145deg, #0B132B 0%, #1C2541 100%);
    border: 2px solid rgba(0, 255, 0, 0.3);
    padding: 40px 35px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 255, 0, 0.2);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin: auto;
}

.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #aaa;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.contact-modal-close:hover {
    color: #fff;
}

.contact-modal-heading {
    color: #00FF00;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.contact-modal-sub {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-modal-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 24px;
    min-height: 56px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.contact-btn small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 4px;
    letter-spacing: 0;
}

.contact-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.contact-btn-telegram {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.contact-btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.5);
}

.contact-btn-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

/* Telegram Channel Popup */
#telegram-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overscroll-behavior: contain;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

#telegram-popup-overlay.is-open {
    display: block;
}

.telegram-popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #0B132B 0%, #1C2541 100%);
    border: 2px solid rgba(0, 136, 204, 0.45);
    padding: 40px 35px 32px;
    border-radius: 24px;
    width: calc(100% - 32px);
    max-width: 420px;
    max-height: calc(100dvh - max(32px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 136, 204, 0.25);
    animation: telegramPopupIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100000;
}

@keyframes telegramPopupIn {
    from {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

body.modal-scroll-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.telegram-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.telegram-popup-heading {
    color: #0088cc;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.telegram-popup-sub {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.telegram-popup-desc {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.telegram-join-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 24px;
    min-height: 56px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: 0.3s;
    background: #0088cc;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.35);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.telegram-join-btn small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
    letter-spacing: 0;
}

.telegram-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.5);
    background: #0099e6;
}

.telegram-popup-skip {
    display: block;
    width: 100%;
    margin-top: 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 10px;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.telegram-popup-skip:hover {
    color: #aaa;
}

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

    .price-current {
        font-size: 2.2rem;
    }
}

/* ============================================================
   MOBILE RESPONSIVE — tablets & phones
   ============================================================ */
@media (max-width: 768px) {
    nav {
        padding: 16px max(16px, env(safe-area-inset-left)) 16px max(16px, env(safe-area-inset-right));
        padding-top: max(16px, env(safe-area-inset-top));
    }

    .nav-brand {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem);
        letter-spacing: 1px;
    }

    .hero {
        padding: calc(100px + env(safe-area-inset-top, 0px)) 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.25rem, 5.5vw, 2rem);
        letter-spacing: 0.5px;
        white-space: normal;
    }

    .hero-tagline {
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .hero-video-wrap {
        width: min(100%, 360px);
        margin-bottom: 30px;
    }

    .section-heading-profit {
        margin-top: 60px;
    }

    .reviews-header-wrap {
        margin-top: 80px;
    }

    .section-heading {
        letter-spacing: 0;
    }

    .accent-green {
        text-shadow: none;
    }

    section {
        padding: 60px 16px;
    }

    .disclaimer {
        padding: 40px 16px;
    }

    .pricing-banner {
        margin: 30px auto 10px;
        padding: 0 12px;
    }

    .pricing-row {
        flex-direction: column;
        gap: 16px;
    }

    .price-strike {
        font-size: 1.6rem;
    }

    .price-current {
        font-size: 2.4rem;
    }

    .price-countdown {
        width: 100%;
        max-width: 220px;
    }

    .bots-section {
        margin: 40px auto 20px;
        padding: 0 16px;
        text-align: center;
    }

    .bots-section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        letter-spacing: 0;
    }

    .bots-section-sub {
        font-size: 0.9rem;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .bot-card {
        padding: 24px 20px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(11, 19, 43, 0.95);
    }

    .bot-card:hover {
        transform: none;
    }

    .bot-card-name {
        font-size: 1.15rem;
    }

    .demo-live-section {
        width: 100%;
        margin: 40px auto 30px;
        padding: 0 12px;
        text-align: center;
    }

    .demo-live-section .bots-section-title {
        font-size: clamp(1.1rem, 5vw, 1.75rem);
        padding: 0 6px;
    }

    .demo-live-section .bots-section-sub {
        font-size: 0.88rem;
        padding: 0 6px;
        margin-bottom: 24px;
    }

    .demo-live-features-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 24px;
        padding: 0;
    }

    .demo-live-feature-pill {
        font-size: 0.74rem;
        padding: 10px 12px;
        gap: 7px;
    }

    .demo-live-pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .demo-live-plan-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(11, 19, 43, 0.95);
    }

    .demo-live-plan-card:hover {
        transform: none;
    }

    .demo-live-card-head {
        padding: 22px 16px 18px;
    }

    .demo-live-card-body {
        padding: 18px 16px 22px;
    }

    .demo-live-plan-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
        padding: 4px 10px;
    }

    .demo-live-plan-name {
        font-size: 1.15rem;
    }

    .demo-live-plan-price {
        font-size: 1.85rem;
    }

    .demo-live-plan-period {
        font-size: 0.82rem;
    }

    .demo-live-features-list {
        gap: 10px;
        margin-bottom: 18px;
    }

    .demo-live-features-list li {
        font-size: 0.82rem;
        gap: 8px;
    }

    .demo-live-plan-card .btn-buy-now {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 14px 16px;
    }

    .compare-pricing-section,
    .compare-table-wrap {
        margin-left: -4px;
        margin-right: -4px;
    }

    .features-grid-pro {
        grid-template-columns: 1fr;
    }

    .brokers-row {
        gap: 8px;
    }

    .broker-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .about-box {
        margin: 50px auto;
        padding: 24px 20px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-footer {
        padding: 40px 16px;
        padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    }

    .contact-modal-box {
        padding: 32px 20px 28px;
        border-radius: 20px;
    }

    .contact-modal-heading {
        font-size: 1.3rem;
        letter-spacing: 2px;
        padding-right: 36px;
    }

    .contact-modal-sub {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .contact-modal-desc {
        font-size: 0.85rem;
        margin-bottom: 22px;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 16px 20px;
    }

    .contact-btn:hover {
        transform: none;
    }

    .telegram-popup-box {
        padding: 32px 20px 28px;
        border-radius: 20px;
        width: calc(100% - 24px);
        max-height: calc(100dvh - max(24px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
    }

    .telegram-popup-heading {
        font-size: 1.25rem;
        letter-spacing: 1px;
        padding-right: 36px;
    }

    .telegram-join-btn:hover {
        transform: none;
    }

    .btn-buy-now:hover {
        transform: none;
    }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.7rem;
    }

    .nav-brand {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .price-current {
        font-size: 2rem;
    }

    .bot-price-new {
        font-size: 1.5rem;
    }

    .btn-buy-now {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 14px 20px;
    }

    .demo-live-feature-pill {
        font-size: 0.68rem;
        padding: 9px 10px;
        gap: 6px;
    }

    .demo-live-section .bots-section-title {
        font-size: 1.05rem;
    }

    .demo-live-section .bots-section-sub {
        font-size: 0.82rem;
    }

    .demo-live-plan-price {
        font-size: 1.6rem;
    }

    .demo-live-features-list li {
        font-size: 0.78rem;
    }

    .floating-row img {
        height: 65px;
        margin: 0 5px;
    }

    .review-card {
        min-width: 200px;
    }
}

/* Landscape phones — keep content readable */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: calc(80px + env(safe-area-inset-top, 0px));
    }

    .hero-video-wrap {
        max-width: 280px;
        margin-bottom: 20px;
    }

    .section-heading-profit {
        margin-top: 40px;
    }

    .reviews-header-wrap {
        margin-top: 50px;
    }
}

/* ============================================================
   PROFESSIONAL SECTIONS — ZentraTrade
   ============================================================ */

.hero-desc {
    color: #aaa;
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
    max-width: 560px;
    margin: 0 auto 24px;
    padding: 0 20px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0 16px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00FF00 0%, #008800 100%);
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.35);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 255, 0, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: #FFD700;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 30px;
    padding: 0 20px;
}

.stat-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    color: #00FF00;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Brokers */
.brokers-section {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

.brokers-label {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.brokers-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.broker-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ccc;
    transition: 0.3s;
}

.broker-badge:hover {
    border-color: rgba(0, 255, 0, 0.4);
    color: #00FF00;
}

/* Section blocks */
.section-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    padding: 0 16px;
}

.section-block-sub {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 16px;
}

/* Steps */
.steps-section,
.signals-section,
.compare-pricing-section,
.features-section,
.vs-section,
.setup-section,
.faq-section {
    width: 100%;
    max-width: 1100px;
    margin: 70px auto 40px;
    padding: 0 20px;
    text-align: center;
}

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

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: 0.3s;
}

.step-card:hover {
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00FF00;
    opacity: 0.5;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Live Signal Dashboard */
.signal-dashboard {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.signal-dashboard-header {
    background: rgba(0, 255, 0, 0.08);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00FF00;
    border-bottom: 1px solid rgba(0, 255, 0, 0.15);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00FF00;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.signal-time {
    margin-left: auto;
    color: #666;
    font-weight: 500;
    letter-spacing: 0;
}

.signal-feed {
    padding: 8px 0;
}

.signal-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.7fr 0.9fr;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
    animation: signalSlideIn 0.4s ease;
}

@keyframes signalSlideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.signal-pair {
    font-weight: 700;
    color: #fff;
}

.signal-call { color: #00FF00; font-weight: 700; }
.signal-put { color: #ff5555; font-weight: 700; }

.signal-conf {
    color: #FFD700;
    font-weight: 700;
}

.signal-win .signal-status { color: #00FF00; }
.signal-active .signal-status { color: #FFD700; animation: pulse-green 2s infinite; }

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #888;
}

.trust-badges span {
    color: #00FF00;
    font-weight: 600;
}

.bot-best-for {
    display: block;
    font-size: 0.75rem;
    color: #FFD700;
    margin-bottom: 8px;
    font-style: italic;
}

/* Comparison Table */
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.compare-table th {
    background: rgba(0, 255, 0, 0.08);
    color: #00FF00;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    color: #aaa;
}

.compare-table td {
    color: #ccc;
}

.compare-table .col-featured {
    background: rgba(255, 215, 0, 0.06);
}

.compare-table .check {
    color: #00FF00;
    font-weight: 800;
    font-size: 1.1rem;
}

.compare-table .cross {
    color: #555;
}

.compare-table s {
    color: #666;
    margin-right: 6px;
}

.compare-table strong {
    color: #00FF00;
}

/* Features Pro Grid */
.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.feature-card-pro {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
    transition: 0.3s;
}

.feature-card-pro:hover {
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon-pro {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card-pro h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card-pro p {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* VS Comparison */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.vs-card {
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
}

.vs-manual {
    background: rgba(255, 59, 59, 0.06);
    border: 1px solid rgba(255, 59, 59, 0.2);
}

.vs-bot {
    background: rgba(0, 255, 0, 0.06);
    border: 1px solid rgba(0, 255, 0, 0.25);
}

.vs-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.vs-manual h3 { color: #ff5555; }
.vs-bot h3 { color: #00FF00; }

.vs-card ul {
    list-style: none;
}

.vs-card li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vs-card li:last-child {
    border-bottom: none;
}

/* Setup Section */
.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.setup-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.setup-mock {
    background: #0a0f1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
    min-height: 120px;
    text-align: left;
}

.mock-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.mock-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mock-bar span:first-child { background: #ff5555; }
.mock-bar span:nth-child(2) { background: #FFD700; }
.mock-bar span:nth-child(3) { background: #00FF00; }

.mock-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mock-line.mock-green { background: rgba(0, 255, 0, 0.3); width: 80%; }
.mock-line.mock-short { width: 50%; }

.mock-btn {
    background: #00FF00;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    margin-top: 12px;
    letter-spacing: 1px;
}

.mock-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-step {
    font-size: 0.72rem;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #666;
}

.mock-step.done { color: #00FF00; border-left: 3px solid #00FF00; }
.mock-step.active { color: #FFD700; border-left: 3px solid #FFD700; background: rgba(255, 215, 0, 0.08); }

.mock-msg {
    font-size: 0.72rem;
    padding: 8px 12px;
    background: rgba(0, 136, 204, 0.15);
    border-radius: 8px;
    margin-bottom: 6px;
    color: #ccc;
}

.setup-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.setup-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 20px auto 0;
    text-align: left;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--glass-bg);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    -webkit-tap-highlight-color: transparent;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #00FF00;
    flex-shrink: 0;
    transition: 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: #888;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: left;
    padding: 0 20px;
}

.footer-about {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-heading {
    color: #00FF00;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #00FF00;
}

/* WhatsApp Float — override existing */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 998;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 19, 43, 0.97);
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    z-index: 997;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

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

.sticky-cta-btn {
    width: 100%;
    font-size: 1rem;
    padding: 16px;
}

/* Sale Notifications */
.sale-notifications {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 996;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: min(340px, calc(100vw - 40px));
}

.sale-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(11, 19, 43, 0.97);
    border: 1px solid rgba(0, 255, 0, 0.25);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translateX(calc(-100% - 30px));
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

.sale-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.sale-toast.hide {
    transform: translateX(calc(-100% - 30px));
    opacity: 0;
}

.sale-toast-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid rgba(0, 255, 0, 0.35);
    color: #00FF00;
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-toast-body {
    min-width: 0;
}

.sale-toast-text {
    color: #eee;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 4px;
}

.sale-toast-time {
    color: #666;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile nav & layout — tablets & phones */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 85vw);
        height: 100dvh;
        background: rgba(11, 19, 43, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        border-left: 1px solid var(--glass-border);
        transition: right 0.35s ease;
        align-items: flex-start;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }
}

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

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

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

    .signal-row {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        font-size: 0.75rem;
    }

    .signal-tf,
    .signal-conf {
        display: none;
    }

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

    .sticky-cta {
        display: block;
    }

    .site-footer {
        padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    }

    .whatsapp-float {
        bottom: calc(80px + env(safe-area-inset-bottom, 0px));
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .sale-notifications {
        bottom: calc(88px + env(safe-area-inset-bottom, 0px));
        left: 12px;
        max-width: calc(100vw - 80px);
    }

    .sale-toast {
        padding: 12px 14px;
    }

    .sale-toast-text {
        font-size: 0.78rem;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .feature-card-pro:hover,
    .step-card:hover {
        transform: none;
    }
}