@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-gold: #dbc48e;
    --gold-light: #f4e5a9;
    --gold-dark: #c9a876;
    --dark-bg: #0a0a0f;
    --darker-bg: #060609;
    --card-bg: rgba(15, 15, 25, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-blue: #00d4ff;
    --success-green: #22c55e;
    --danger-red: #ef4444;
    --warning-orange: #f59e0b;
    --glow-intensity: 1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { 
    font-family: 'Inter', sans-serif; 
    background: var(--dark-bg); 
    color: var(--text-primary); 
    line-height: 1.6; 
    overflow-x: hidden;
    cursor: auto;
}

/* Utility Classes for Desktop/Mobile */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
}

/* Custom Cursor - Desktop Only */
.cursor, .cursor-follower {
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
    mix-blend-mode: screen;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    z-index: 10000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.3;
}

.cursor.hover { transform: translate(-50%, -50%) scale(2); background: var(--gold-light); }
.cursor-follower.hover { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }

/* Particles Canvas - Desktop Only */
#particles-js { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
    pointer-events: none;
}

/* Loader - Simplified for Mobile */
.loader { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: var(--dark-bg); 
    z-index: 10000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: opacity 0.5s ease;
}

.loader-content { text-align: center; position: relative; }

.loader-logo { 
    font-family: 'Orbitron', monospace; 
    font-size: 3rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 3rem; 
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse { 
    0%, 100% { transform: scale(1); opacity: 1; } 
    50% { transform: scale(1.05); opacity: 0.8; } 
}

.loader-bar { 
    width: 300px; 
    height: 6px; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 3px; 
    overflow: hidden; 
    margin: 0 auto;
}

.loader-progress { 
    height: 100%; 
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light)); 
    border-radius: 3px; 
    animation: loading 2s ease-in-out;
}

@keyframes loading { 
    0% { width: 0%; } 
    100% { width: 100%; } 
}

/* Header - Optimized */
.header { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    transition: all 0.3s ease; 
    padding: 1.5rem 0;
}

.header.scrolled { 
    background: rgba(6, 6, 9, 0.95); 
    backdrop-filter: blur(20px) saturate(180%); 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
    z-index: 2;
}

.nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.logo { 
    font-family: 'Orbitron', monospace; 
    font-size: 1.5rem; 
    font-weight: 700; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
}

.logo img { 
    height: 40px; 
    width: auto;
    filter: drop-shadow(0 0 10px rgba(219, 196, 142, 0.3));
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
    align-items: center;
}

.nav-link { 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-weight: 500; 
    transition: all 0.3s ease; 
    position: relative; 
    padding: 0.5rem 0;
}

.nav-link::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light)); 
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link:focus-visible { 
    color: var(--primary-gold);
}

.nav-link:hover::after, .nav-link:focus-visible::after { 
    width: 100%;
}

.cta-header { 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    color: var(--dark-bg); 
    padding: 0.75rem 1.5rem; 
    border-radius: 8px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: all 0.3s ease;
}

.cta-header:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(219, 196, 142, 0.4);
}

/* Hero Section - Simplified for Mobile */
.hero { 
    padding: 150px 0 100px; 
    position: relative; 
    overflow: hidden; 
    min-height: 100vh; 
    display: flex; 
    align-items: center;
}

.hero-bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0;
}

/* Mobile background - static gradient */
.hero-bg-mobile {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(219, 196, 142, 0.05) 100%);
}

/* Desktop animations */
.gradient-animation { 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: linear-gradient(45deg, 
        transparent, 
        rgba(219, 196, 142, 0.1), 
        transparent, 
        rgba(244, 229, 169, 0.1)
    ); 
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift { 
    0%, 100% { transform: rotate(0deg) scale(1); } 
    50% { transform: rotate(180deg) scale(1.5); } 
}

.floating-shapes { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
}

.shape { 
    position: absolute; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    opacity: 0.05; 
    border-radius: 50%; 
    filter: blur(40px); 
    animation: float 20s ease-in-out infinite;
}

.shape:nth-child(1) { 
    width: 400px; 
    height: 400px; 
    top: -100px; 
    left: -100px;
}

.shape:nth-child(2) { 
    width: 300px; 
    height: 300px; 
    bottom: -50px; 
    right: -50px;
}

@keyframes float { 
    0%, 100% { transform: translate(0, 0) scale(1); } 
    50% { transform: translate(30px, -30px) scale(1.1); } 
}

.glow-line { 
    position: absolute; 
    height: 1px; 
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent); 
    animation: glowMove 8s linear infinite;
}

.glow-line:nth-child(1) { top: 20%; width: 80%; }
.glow-line:nth-child(2) { top: 50%; width: 60%; animation-delay: 2s; }

@keyframes glowMove { 
    0% { transform: translateX(-100%); } 
    100% { transform: translateX(200%); } 
}

.hero-content { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    align-items: center; 
    position: relative; 
    z-index: 2;
}

.hero-text h1 { 
    font-family: 'Orbitron', monospace; 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-wrap: balance;
}

.hero-text p { 
    font-size: 1.25rem; 
    color: var(--text-secondary); 
    margin-bottom: 2rem; 
    line-height: 1.8;
}

.meta-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.75rem; 
    background: rgba(219, 196, 142, 0.1); 
    border: 1px solid rgba(219, 196, 142, 0.3); 
    padding: 0.5rem 1rem; 
    border-radius: 25px; 
    margin-bottom: 2rem; 
    font-size: 0.9rem; 
    color: var(--primary-gold); 
    font-weight: 600; 
    backdrop-filter: blur(10px);
}

.meta-badge img { height: 20px; width: auto; }

.hero-buttons { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap;
}

.btn { 
    padding: 1rem 2rem; 
    border-radius: 8px; 
    font-weight: 600; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.5rem; 
    transition: all 0.3s ease; 
    border: none; 
    cursor: pointer; 
    font-size: 1rem; 
    position: relative; 
    overflow: hidden;
}

.btn-primary { 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    color: var(--dark-bg); 
    box-shadow: 0 8px 25px rgba(219, 196, 142, 0.3);
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 35px rgba(219, 196, 142, 0.4);
}

.btn-secondary { 
    background: var(--glass-bg); 
    color: var(--text-primary); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px);
}

.btn-secondary:hover { 
    background: rgba(255, 255, 255, 0.1); 
    transform: translateY(-2px); 
    border-color: var(--primary-gold);
}

.btn-large {
    font-size: 1.2rem; 
    padding: 1.2rem 2.5rem;
}

/* Hero Visual */
.hero-visual { 
    position: relative; 
    min-height: 450px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.dashboard-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateY(-10deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-15deg) rotateX(10deg); }
}

.dashboard-wrapper img { 
    width: 100%; 
    height: auto; 
    border-radius: 16px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); 
    border: 1px solid rgba(219, 196, 142, 0.2);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.stats-overlay > * { pointer-events: auto; }

.floating-stats { 
    position: absolute; 
    background: var(--glass-bg); 
    backdrop-filter: blur(20px) saturate(180%); 
    border: 1px solid rgba(219, 196, 142, 0.3); 
    border-radius: 12px; 
    padding: 1rem; 
    animation: floatStats 6s ease-in-out infinite; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-stats.stat-1 { top: 10%; right: -20px; }
.floating-stats.stat-2 { bottom: 20%; left: -20px; animation-delay: 2s; }

@keyframes floatStats { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-20px); } 
}

.floating-stat-value { 
    font-family: 'Orbitron', monospace; 
    font-size: 1.5rem; 
    color: var(--primary-gold); 
    font-weight: 700;
}

.floating-stat-label { 
    font-size: 0.75rem; 
    color: var(--text-muted);
}

/* Feature Cards */
.features, .integrations, .pipeline, .results, .testimonials, .pricing, .cta-section { 
    padding: 100px 0; 
    position: relative;
}

.integrations, .results, .cta-section { overflow: hidden; }
.features, .pipeline, .testimonials, .pricing { background: var(--glass-bg); }

.section-header { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto 4rem;
}

.section-title { 
    font-family: 'Orbitron', monospace; 
    font-size: 2.5rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-wrap: balance;
    position: relative;
}

.section-subtitle { 
    font-size: 1.25rem; 
    color: var(--text-secondary); 
    line-height: 1.8;
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem;
}

.feature-card { 
    background: var(--card-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 16px; 
    padding: 2rem; 
    transition: all 0.3s ease;
}

.feature-card:hover { 
    transform: translateY(-5px); 
    border-color: rgba(219, 196, 142, 0.3); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon { 
    width: 60px; 
    height: 60px; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: var(--dark-bg);
}

.feature-title { 
    font-family: 'Orbitron', monospace; 
    font-size: 1.25rem; 
    margin-bottom: 1rem; 
    color: var(--primary-gold);
}

.feature-description { 
    color: var(--text-secondary); 
    line-height: 1.6;
}

/* Integrations */
.integration-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 2rem; 
    margin-top: 3rem;
}

.integration-card { 
    background: var(--card-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; 
    padding: 1.5rem; 
    text-align: center; 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    min-height: 120px;
}

.integration-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(219, 196, 142, 0.3);
}

.integration-logo { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 50px; 
    margin-bottom: 0.75rem;
}

.integration-logo img { 
    max-height: 40px; 
    max-width: 120px; 
    width: auto; 
    height: auto;
}

.integration-name { 
    font-size: 0.9rem; 
    color: var(--text-secondary); 
    font-weight: 600;
}

/* Pipeline - Desktop Only */
.pipeline-visual { 
    background: var(--card-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 16px; 
    padding: 2rem; 
    margin-top: 3rem; 
    overflow-x: auto; 
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pipeline-instruction {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-gold);
}

.pipeline-stages { 
    display: flex; 
    gap: 2rem; 
    min-width: 800px;
}

.pipeline-stage { 
    flex: 1; 
    min-width: 200px; 
    transition: all 0.3s ease; 
    border-radius: 8px;
}

.pipeline-stage.drag-over { 
    background: rgba(219, 196, 142, 0.1); 
    border: 2px dashed var(--primary-gold);
}

.stage-header { 
    background: var(--glass-bg); 
    padding: 1rem; 
    border-radius: 8px 8px 0 0; 
    text-align: center; 
    border-bottom: 2px solid var(--primary-gold);
}

.stage-title { 
    font-weight: 600; 
    color: var(--primary-gold);
}

.stage-count { 
    font-size: 0.8rem; 
    color: var(--text-muted);
}

.stage-cards { 
    padding: 1rem; 
    min-height: 300px;
}

.pipeline-card { 
    background: var(--glass-bg); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 8px; 
    padding: 1rem; 
    margin-bottom: 1rem; 
    cursor: grab; 
    transition: all 0.3s ease;
}

.pipeline-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(219, 196, 142, 0.5);
}

.pipeline-card:active { cursor: grabbing; }

.pipeline-card.dragging { 
    opacity: 0.5; 
    cursor: grabbing; 
    transform: rotate(3deg); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.client-name { font-weight: 600; margin-bottom: 0.5rem; }
.client-info { font-size: 0.8rem; color: var(--text-muted); }
.client-value { font-size: 0.9rem; color: var(--primary-gold); font-weight: 600; margin: 0.5rem 0; }

.client-tags { 
    display: flex; 
    gap: 6px; 
    flex-wrap: wrap; 
    margin-top: 0.5rem;
}

.tag { 
    background: rgba(219, 196, 142, 0.15); 
    color: var(--gold-light); 
    padding: 3px 8px; 
    border-radius: 12px; 
    font-size: 0.7rem; 
    font-weight: 500;
}

.pipeline-stats { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 2rem; 
    justify-content: center; 
    margin-top: 2rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box { 
    background: rgba(219, 196, 142, 0.05); 
    border: 1px solid rgba(219, 196, 142, 0.2); 
    padding: 1rem; 
    border-radius: 8px; 
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(219, 196, 142, 0.2);
}

.stat-value { 
    font-family: 'Orbitron', monospace; 
    font-size: 1.5rem; 
    color: var(--primary-gold); 
    font-weight: 700;
}

.stat-label { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    text-transform: uppercase;
}

/* Results */
.results-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 3rem; 
    margin-top: 3rem;
}

.result-card { text-align: center; }

.result-number { 
    font-family: 'Orbitron', monospace; 
    font-size: 4rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    line-height: 1; 
    margin-bottom: 1rem; 
    display: inline-block; 
    position: relative;
}

.result-label { 
    font-size: 1.1rem; 
    color: var(--text-secondary); 
    font-weight: 500;
}

/* Video Section */
.video-wrapper { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    border-radius: 16px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); 
    border: 1px solid rgba(219, 196, 142, 0.3); 
    max-width: 800px; 
    margin: 3rem auto 0;
    background: var(--dark-bg);
}

.video-wrapper iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border: none;
}

/* Carousel */
.clients-carousel { 
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden; 
    padding: 2rem 0;
    margin-top: 4rem;
}

.carousel-track { 
    display: flex; 
    animation: scroll 40s linear infinite; 
    width: fit-content;
}

.carousel-slide { 
    flex: 0 0 auto; 
    width: 250px; 
    height: 100px; 
    margin: 0 2rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--card-bg); 
    border-radius: 12px; 
    padding: 1.5rem; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    transition: all 0.3s ease;
}

.carousel-slide:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary-gold); 
    box-shadow: 0 10px 20px rgba(219, 196, 142, 0.2);
}

.carousel-slide img { 
    max-width: 100%; 
    max-height: 60px; 
    height: auto; 
    width: auto; 
    object-fit: contain; 
    filter: brightness(0.9) grayscale(50%); 
    transition: filter 0.3s ease;
}

.carousel-slide:hover img { 
    filter: brightness(1.1) grayscale(0%);
}

@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* Pricing */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2rem; 
    margin-top: 4rem; 
    align-items: stretch;
}

.pricing-card { 
    background: var(--card-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 20px; 
    padding: 2.5rem; 
    text-align: center; 
    position: relative; 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column;
}

.pricing-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary-gold); 
    box-shadow: 0 20px 40px rgba(219, 196, 142, 0.2);
}

.pricing-card.featured { 
    border-color: var(--primary-gold); 
    transform: scale(1.05); 
    box-shadow: 0 20px 40px rgba(219, 196, 142, 0.3); 
    z-index: 10;
}

.pricing-card.featured::before { 
    content: 'MAIS POPULAR'; 
    position: absolute; 
    top: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    color: var(--dark-bg); 
    padding: 0.5rem 1.5rem; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    font-family: 'Orbitron', monospace; 
    box-shadow: 0 5px 15px rgba(219, 196, 142, 0.3);
}

.plan-name { 
    font-family: 'Orbitron', monospace; 
    font-size: 1.5rem; 
    margin-bottom: 1rem; 
    color: var(--primary-gold);
}

.plan-price { 
    font-family: 'Orbitron', monospace; 
    font-size: 3rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 0.5rem;
}

.plan-price small { font-size: 1rem; font-weight: 400; }
.plan-period { color: var(--text-secondary); font-size: 1rem; }

.pricing-features { 
    list-style: none; 
    margin: 2rem 0; 
    text-align: left; 
    flex-grow: 1;
}

.pricing-features li { 
    padding: 0.75rem 0; 
    color: var(--text-secondary); 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before { 
    content: '✓'; 
    color: var(--success-green); 
    font-weight: bold; 
    font-size: 1rem; 
    width: 24px; 
    height: 24px; 
    background: rgba(34, 197, 94, 0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
}

.pricing-notes { 
    max-width: 800px; 
    margin: 3rem auto 0; 
    padding: 2rem; 
    background: rgba(219, 196, 142, 0.05); 
    border: 1px solid rgba(219, 196, 142, 0.2); 
    border-radius: 12px; 
    text-align: left; 
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.pricing-notes sup { color: var(--primary-gold); font-weight: 600; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg), rgba(219, 196, 142, 0.05));
    position: relative;
    overflow: hidden;
}

.cta-content { text-align: center; position: relative; z-index: 2; }

.cta-content h2 { 
    font-family: 'Orbitron', monospace; 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 1.5rem; 
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-wrap: balance;
}

.cta-content p { 
    font-size: 1.25rem; 
    color: var(--text-secondary); 
    margin-bottom: 2.5rem; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
}

/* Footer */
.footer { 
    background: var(--darker-bg); 
    padding: 4rem 0 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 3rem; 
    margin-bottom: 3rem;
}

.footer-section h4 { 
    font-family: 'Orbitron', monospace; 
    color: var(--primary-gold); 
    margin-bottom: 1rem; 
    font-size: 1.1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }

.footer-links a { 
    color: var(--text-secondary); 
    text-decoration: none; 
    transition: all 0.3s ease;
}

.footer-links a:hover { 
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom { 
    text-align: center; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: var(--text-muted); 
    font-size: 0.9rem;
}

.app-buttons { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
    margin-top: 1rem;
}

.app-link { 
    display: inline-block; 
    transition: all 0.3s ease;
}

.app-link img { height: 40px; width: auto; }
.app-link:hover { transform: translateY(-3px); opacity: 0.8; }

/* Animations */
.fade-in { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in-left { 
    opacity: 0; 
    transform: translateX(-50px); 
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right { 
    opacity: 0; 
    transform: translateX(50px); 
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* Mobile Menu */
.mobile-menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--text-primary); 
    font-size: 1.5rem; 
    cursor: pointer; 
    z-index: 9999;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

/* Floating CTA */
.floating-cta { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 999; 
    opacity: 0; 
    transform: translateY(100px); 
    transition: opacity 0.5s ease, transform 0.5s ease; 
    pointer-events: none;
}

.floating-cta.visible { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: auto;
}

/* Accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-main:focus { top: 0; }

*:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible { outline-offset: 5px; }

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Remove heavy animations */
    .gradient-animation,
    .floating-shapes,
    .glow-lines,
    #particles-js,
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    /* Simplify animations */
    * {
        animation-duration: 0.3s !important;
        animation-iteration-count: 1 !important;
    }
    
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        transition-duration: 0.3s !important;
        transform: none !important;
    }
    
    /* Remove complex shadows and effects */
    * {
        text-shadow: none !important;
        filter: none !important;
    }
    
    .feature-card,
    .pricing-card,
    .integration-card,
    .pipeline-card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    /* Typography adjustments */
    html { font-size: 14px; }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    p, .feature-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Layout adjustments */
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    /* Mobile menu */
    .mobile-menu-toggle { 
        display: flex;
    }
    
    .nav-menu { 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 100%; 
        height: 100vh; 
        background: rgba(6, 6, 9, 0.98); 
        backdrop-filter: blur(20px); 
        flex-direction: column; 
        padding: 100px 20px 20px; 
        gap: 1.5rem; 
        align-items: flex-start; 
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active { 
        right: 0;
    }
    
    .nav-link,
    .cta-header {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .nav-menu .cta-header { 
        margin-top: 1rem;
        text-align: center;
    }
    
    /* Hero mobile */
    .hero-content { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .hero-buttons { 
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
    }
    
    .hero-visual { 
        margin-top: 3rem;
        min-height: auto;
    }
    
    .dashboard-wrapper {
        animation: none;
        transform: none;
        max-width: 100%;
    }
    
    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Integrations mobile */
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .integration-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    /* Results mobile */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .result-number {
        font-size: 3rem;
    }
    
    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured { 
        transform: none;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    /* Carousel mobile */
    .carousel-slide { 
        width: 200px; 
        margin: 0 1rem;
    }
    
    /* Footer mobile */
    .footer-content {
        text-align: center;
        gap: 2rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    /* Floating CTA mobile */
    .floating-cta {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%) translateY(100px);
        width: calc(100% - 40px);
        max-width: 300px;
    }
    
    .floating-cta.visible {
        transform: translateX(50%) translateY(0);
    }
    
    /* Touch-friendly spacing */
    .btn,
    .nav-link,
    .footer-links a,
    .pricing-features li {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Input optimizations */
    input, textarea, select {
        font-size: 16px !important;
        padding: 16px;
        border-radius: 8px;
    }
}

/* Landscape mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 40px 0 !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode optimization for OLED screens */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    :root {
        --dark-bg: #000000;
        --card-bg: rgba(10, 10, 20, 0.95);
    }
}