
        :root {
            --neon-purple: #b44dff;
            --neon-pink: #e040fb;
            --neon-blue: #6c63ff;
            --deep-purple: #7c3aed;
            --dark-bg: #0a0a0f;
            --dark-card: #111118;
            --dark-card-hover: #1a1a25;
            --text-primary: #f0eef6;
            --text-secondary: #9890b0;
            --glow-purple: rgba(180, 77, 255, 0.4);
            --glow-pink: rgba(224, 64, 251, 0.3);
            --gradient-main: linear-gradient(135deg, #6c63ff, #b44dff, #e040fb);
            --gradient-subtle: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(180, 77, 255, 0.15));
        }

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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--neon-purple) var(--dark-bg);
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ========== NOISE OVERLAY ========== */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        /* ========== AMBIENT BACKGROUND GLOWS ========== */
        .bg-glow {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
        }
        .bg-glow-1 {
            width: 600px; height: 600px;
            background: rgba(108, 99, 255, 0.08);
            top: -200px; left: -200px;
            animation: floatGlow 20s ease-in-out infinite;
        }
        .bg-glow-2 {
            width: 500px; height: 500px;
            background: rgba(180, 77, 255, 0.06);
            bottom: -100px; right: -100px;
            animation: floatGlow 25s ease-in-out infinite reverse;
        }
        .bg-glow-3 {
            width: 400px; height: 400px;
            background: rgba(224, 64, 251, 0.05);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation: floatGlow 18s ease-in-out infinite 5s;
        }

        @keyframes floatGlow {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -30px) scale(1.1); }
            66% { transform: translate(-30px, 40px) scale(0.9); }
        }

        /* ========== NAVBAR ========== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0 2rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(0px);
        }

        nav.scrolled {
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(180, 77, 255, 0.15);
        }

        .nav-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .nav-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-decoration: none;
        }

        .nav-logo span {
            font-weight: 400;
            font-size: 0.85em;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            font-size: 1.05rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gradient-main);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-main) !important;
            color: #fff !important;
            padding: 0.55rem 1.4rem;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 0.95rem !important;
            transition: transform 0.3s, box-shadow 0.3s !important;
            box-shadow: 0 0 20px var(--glow-purple);
        }

        .nav-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px var(--glow-purple), 0 0 60px rgba(180, 77, 255, 0.2);
        }

        .nav-cta::after { display: none !important; }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px; height: 2px;
            background: var(--text-primary);
            transition: all 0.3s;
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 2rem 4rem;
            overflow: hidden;
        }

        .hero-grid {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(180, 77, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(180, 77, 255, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
            animation: gridPulse 8s ease-in-out infinite;
        }

        @keyframes gridPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero-glow-orb {
            position: absolute;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(180, 77, 255, 0.15), transparent 70%);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation: orbPulse 6s ease-in-out infinite;
        }

        @keyframes orbPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
            50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            border: 1px solid rgba(180, 77, 255, 0.3);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--neon-purple);
            font-weight: 500;
            margin-bottom: 2rem;
            background: rgba(180, 77, 255, 0.05);
            animation: fadeUp 0.8s ease both;
        }

        .hero-badge .dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #4ade80;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 0.5rem;
            animation: fadeUp 0.8s ease 0.2s both;
        }

        .hero h1 .gradient-text {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 .outline-text {
            -webkit-text-stroke: 2px var(--neon-purple);
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px var(--glow-purple));
        }

        .hero-sub {
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-secondary);
            margin: 1.5rem 0 2.5rem;
            font-weight: 300;
            animation: fadeUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease 0.6s both;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: #fff;
            box-shadow: 0 4px 25px var(--glow-purple);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px var(--glow-purple), 0 0 80px rgba(180, 77, 255, 0.15);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(180, 77, 255, 0.4);
        }

        .btn-outline:hover {
            background: rgba(180, 77, 255, 0.1);
            border-color: var(--neon-purple);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            animation: fadeUp 0.8s ease 0.8s both;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========== SECTIONS COMMON ========== */
        section {
            position: relative;
            z-index: 1;
            padding: 6rem 2rem;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--neon-purple);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header .section-desc {
            margin: 0 auto;
        }

        /* ========== SERVICES ========== */
        #services {
            background: linear-gradient(180deg, var(--dark-bg), rgba(15, 15, 25, 1), var(--dark-bg));
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.08);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--gradient-main);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            border-color: rgba(180, 77, 255, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(180, 77, 255, 0.05);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px; height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-subtle);
            border: 1px solid rgba(180, 77, 255, 0.15);
        }

        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* ========== PRICING ========== */
        #tarifs {
            background: var(--dark-bg);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.2rem;
            align-items: end;
        }

        .pricing-card {
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.08);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

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

        .pricing-card.featured {
            border-color: rgba(180, 77, 255, 0.35);
            background: linear-gradient(180deg, rgba(180, 77, 255, 0.08), var(--dark-card));
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-main);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.3rem 1.2rem;
            border-radius: 0 0 10px 10px;
        }

        .pricing-size-visual {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            margin-bottom: 1.5rem;
            height: 80px;
        }

        .size-cylinder {
            border-radius: 12px;
            background: var(--gradient-main);
            opacity: 0.7;
            box-shadow: 0 0 20px var(--glow-purple);
        }

        .pricing-tier {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.25rem;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-dimensions {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .pricing-price .currency {
            font-size: 1.2rem;
            vertical-align: super;
        }

        .pricing-from {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .pricing-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            min-height: 50px;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }

        /* ========== OPTIONS ========== */
        #options {
            background: linear-gradient(180deg, var(--dark-bg), rgba(15, 15, 25, 1));
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

        .option-card {
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.08);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            transition: all 0.3s ease;
        }

        .option-card:hover {
            border-color: rgba(180, 77, 255, 0.2);
            background: var(--dark-card-hover);
        }

        .option-icon {
            flex-shrink: 0;
            width: 48px; height: 48px;
            border-radius: 12px;
            background: var(--gradient-subtle);
            border: 1px solid rgba(180, 77, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .option-card h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .option-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .option-price {
            font-weight: 700;
            color: var(--neon-purple) !important;
        }

        /* ========== HOW IT WORKS ========== */
        #process {
            background: rgba(15, 15, 25, 1);
        }

        .process-timeline {
            display: flex;
            gap: 0;
            position: relative;
            justify-content: center;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 10%; right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
            opacity: 0.3;
        }

        .process-step {
            flex: 1;
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
            max-width: 250px;
        }

        .step-number {
            width: 70px; height: 70px;
            border-radius: 50%;
            background: var(--dark-card);
            border: 2px solid rgba(180, 77, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--neon-purple);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            border-color: var(--neon-purple);
            box-shadow: 0 0 30px var(--glow-purple);
            background: rgba(180, 77, 255, 0.1);
        }

        .process-step h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

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

        /* ========== FAQ ========== */
        #faq {
            background: var(--dark-bg);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.08);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item:hover, .faq-item.open {
            border-color: rgba(180, 77, 255, 0.2);
        }

        .faq-question {
            width: 100%;
            padding: 1.3rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
        }

        .faq-question .icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: var(--gradient-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-question .icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

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

        .faq-answer-inner {
            padding: 0 1.5rem 1.3rem;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* ========== CONTACT / CTA ========== */
        #contact {
            background: linear-gradient(180deg, var(--dark-bg), rgba(15, 15, 25, 1));
            padding: 8rem 2rem;
        }

        .contact-wrapper {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .contact-glow {
            position: absolute;
            width: 600px; height: 300px;
            border-radius: 50%;
            background: radial-gradient(ellipse, rgba(180, 77, 255, 0.1), transparent 70%);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .contact-wrapper .section-title {
            position: relative;
            z-index: 2;
        }

        .contact-wrapper .section-desc {
            max-width: 500px;
            margin: 0 auto 2.5rem;
            position: relative;
            z-index: 2;
        }

        .contact-methods {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.1);
            border-radius: 16px;
            padding: 2rem 2.5rem;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            min-width: 220px;
        }

        .contact-card:hover {
            border-color: rgba(180, 77, 255, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(180, 77, 255, 0.06);
        }

        .contact-card-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .contact-card h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-card p {
            color: var(--neon-purple);
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* ========== FOOTER ========== */
        footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid rgba(180, 77, 255, 0.1);
            padding: 3rem 2rem;
            text-align: center;
            background: rgba(10, 10, 15, 0.95);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            width: 42px; height: 42px;
            border-radius: 12px;
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            border-color: var(--neon-purple);
            color: var(--neon-purple);
            box-shadow: 0 0 20px rgba(180, 77, 255, 0.15);
        }

        /* ========== 3 POLES ========== */
        #poles {
            background: linear-gradient(180deg, var(--dark-bg), rgba(15, 15, 25, 1));
        }

        .poles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            align-items: stretch;
        }

        .pole-card {
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.1);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .pole-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: var(--gradient-main);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .pole-card:hover {
            border-color: rgba(180, 77, 255, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(180, 77, 255, 0.08);
        }

        .pole-card:hover::before {
            transform: scaleX(1);
        }

        .pole-featured {
            border-color: rgba(180, 77, 255, 0.25);
            background: linear-gradient(180deg, rgba(180, 77, 255, 0.06), var(--dark-card));
        }

        .pole-badge {
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-main);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.3rem 1.5rem;
            border-radius: 0 0 12px 12px;
        }

        .pole-icon-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .pole-icon {
            width: 70px; height: 70px;
            border-radius: 18px;
            background: var(--gradient-subtle);
            border: 1px solid rgba(180, 77, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .pole-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.15;
        }

        .pole-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }

        .pole-subtitle {
            color: var(--neon-purple);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .pole-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .pole-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pole-features li {
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 0.4rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .pole-features li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--neon-purple);
            font-weight: 700;
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            .poles-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0; right: -100%;
                width: 75%; height: 100vh;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                padding: 2rem;
                gap: 2rem;
                transition: right 0.4s ease;
                border-left: 1px solid rgba(180, 77, 255, 0.15);
            }

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

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .process-timeline {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .process-timeline::before {
                display: none;
            }

            .process-step {
                max-width: 100%;
            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
        }

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

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

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* ========== WHATSAPP FLOATING BUTTON ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            width: 60px; height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            animation: whatsappPulse 3s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 30px; height: 30px;
            fill: #fff;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
        }

        /* ========== GALLERY SECTION ========== */
        #galerie {
            background: linear-gradient(180deg, rgba(15, 15, 25, 1), var(--dark-bg));
        }

        .gallery-marquee {
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            margin-top: 2rem;
        }

        .gallery-track {
            display: flex;
            gap: 1.5rem;
            animation: marquee 30s linear infinite;
            width: max-content;
        }

        .gallery-item {
            flex-shrink: 0;
            width: 280px; height: 200px;
            border-radius: 16px;
            background: var(--dark-card);
            border: 1px solid rgba(180, 77, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .gallery-item .placeholder-icon {
            font-size: 3rem;
            opacity: 0.4;
        }

        .gallery-item .placeholder-text {
            position: absolute;
            bottom: 1rem; left: 1rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Particles */
        .particle {
            position: fixed;
            width: 3px; height: 3px;
            border-radius: 50%;
            background: var(--neon-purple);
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            animation: particleFloat linear infinite;
        }

        @keyframes particleFloat {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { opacity: 0; transform: translateY(-10vh) scale(1); }
        }
    
/* ========== PAGE HERO BANNER ========== */
.page-hero {
    position: relative;
    z-index: 1;
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(15,15,25,1), var(--dark-bg));
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(180,77,255,.08), transparent 70%);
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.page-hero .section-title {
    position: relative; z-index: 2;
    animation: fadeUp .8s ease both;
}
.page-hero .section-desc {
    position: relative; z-index: 2;
    margin: 0 auto;
    animation: fadeUp .8s ease .2s both;
}
.page-hero .section-label {
    position: relative; z-index: 2;
    animation: fadeUp .8s ease .1s both;
}

/* Active nav */
.nav-links a.active {
    color: var(--text-primary) !important;
}
.nav-links a.active::after {
    width: 100% !important;
}

        @keyframes splashGlow { from{transform:scale(.8);opacity:.5} to{transform:scale(1.2);opacity:1} }
        @keyframes splashLogo { from{opacity:0;transform:translateY(20px) scale(.9)} to{opacity:1;transform:translateY(0) scale(1)} }
        @keyframes splashLine { from{width:0} to{width:min(200px,50vw)} }
        @keyframes splashTag { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
        @keyframes splashDot { 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1.3)} }
    