:root {
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --neon: #D7FF22;
    --white: #FFFFFF;
    --gray: #F0F0F0;
    --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { font-family: 'Montserrat', sans-serif; color: var(--black); background: var(--gray); font-size: 16px; position: relative; overflow-x: hidden; }
h1, h2, h3, h4, .logo, .massive-text { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--black); text-transform: uppercase;}
a { text-decoration: none; color: inherit; transition: 0.3s; }
.mt-20 { margin-top: 20px;} .mt-40 { margin-top: 40px;} .mt-60 { margin-top: 60px;} .mt-100 { margin-top: 100px; }
.mb-60 { margin-bottom: 60px;}
.py-120 { padding: 120px 0; }
.p-20 { padding: 20px;} .p-40 { padding: 40px;}
.text-center { text-align: center; }
.text-neon { color: var(--neon) !important; text-shadow: 0 0 10px rgba(215,255,34,0.3); }
.text-dark { color: var(--black); }
.text-sm { font-size: 14px; } .text-xs { font-size: 12px; }
.w-100 { width: 100%; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.align-center { align-items: center; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

/* Custom Cursor */
.cursor { position: fixed; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: 0.1s ease-out;}
.cursor-follower { position: fixed; width: 30px; height: 30px; border-radius: 50%; background: rgba(215, 255, 34, 0.4); pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: 0.3s ease-out;}

/* Buttons */
.btn-neon { background: var(--neon); color: var(--black); padding: 12px 28px; border-radius: 4px; font-weight: 700; font-family: 'Syne'; border: 2px solid var(--black); display: inline-block; box-shadow: 4px 4px 0 var(--black); transition: 0.2s;}
.btn-neon:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--black); }

.btn-solid-dark { background: var(--black); color: var(--white); padding: 15px 35px; border-radius: 4px; font-weight: 700; font-family: 'Syne'; display: inline-block; transition: 0.3s; letter-spacing: 1px;}
.btn-solid-dark:hover { background: var(--neon); color: var(--black); }

.btn-ghost-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 15px 35px; border-radius: 4px; font-weight: 600; font-family: 'Syne'; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;}
.btn-ghost-light:hover { border-color: var(--neon); color: var(--neon); }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: 0.4s; background: var(--gray); border-bottom: 2px solid var(--black); }
.navbar-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; letter-spacing: -1px; }
.neon-dot { color: var(--neon); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-family: 'Syne'; font-weight: 600; font-size: 15px; position: relative; overflow: hidden; display: inline-block;}
.nav-links a::after { content:''; position: absolute; width: 100%; height: 2px; bottom: 0; left: -100%; background: var(--black); transition: 0.3s;}
.nav-links a:hover::after { left: 0; }
.menu-toggle { display: none; font-size: 24px; color: var(--black); }

/* Marquee */
.marquee-container { width: 100%; overflow: hidden; background: var(--black); color: var(--white); padding: 15px 0; border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); display: flex;}
.marquee-content { display: flex; white-space: nowrap; animation: marquee 20s linear infinite; font-family: 'Syne'; font-size: 14px; font-weight: 700; letter-spacing: 2px;}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Hero */
.hero { min-height: 85vh; display: flex; align-items: center; position: relative; padding: 100px 0; overflow: hidden;}
.hero-wrapper { position: relative; z-index: 10; max-width: 900px;}
.hero h1 { font-size: 6rem; line-height: 1;}
.outline-text { -webkit-text-stroke: 2px var(--black); color: transparent !important; }
.dark-section .outline-text { -webkit-text-stroke: 2px var(--white); color: transparent !important; }
.hero p { font-size: 1.4rem; font-weight: 500; max-width: 600px; line-height: 1.5;}
.abstract-shape { position: absolute; right: 5%; top: 20%; width: 500px; height: 500px; background: url('../images/hero.png') center/cover; border-radius: 50%; filter: grayscale(100%) contrast(150%); mix-blend-mode: multiply; opacity: 0.8; animation: spin 30s linear infinite;}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Glitch Effect */
.glitch-text { position: relative; display: inline-block;}
.glitch-text::before, .glitch-text::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gray); z-index: -1;}
.glitch-text::before { left: 4px; text-shadow: -2px 0 var(--neon); clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 5s infinite linear alternate-reverse;}
.glitch-text::after { left: -4px; text-shadow: -2px 0 red; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim2 5s infinite linear alternate-reverse;}
@keyframes glitch-anim { 0% { clip: rect(98px, 9999px, 83px, 0); } 20% { clip: rect(13px, 9999px, 80px, 0); } 40% { clip: rect(40px, 9999px, 57px, 0); } 60% { clip: rect(6px, 9999px, 49px, 0); } 80% { clip: rect(72px, 9999px, 47px, 0); } 100% { clip: rect(21px, 9999px, 52px, 0); } }
@keyframes glitch-anim2 { 0% { clip: rect(11px, 9999px, 18px, 0); } 20% { clip: rect(11px, 9999px, 3px, 0); } 40% { clip: rect(92px, 9999px, 93px, 0); } 60% { clip: rect(12px, 9999px, 37px, 0); } 80% { clip: rect(61px, 9999px, 44px, 0); } 100% { clip: rect(60px, 9999px, 4px, 0); } }

/* Dark Section / About */
.dark-section { background: var(--black); color: var(--white); }
.split-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.badget { display: inline-block; border: 1px solid var(--neon); color: var(--neon); padding: 5px 15px; border-radius: 20px; font-family: 'Syne'; font-size: 12px; margin-bottom: 20px;}
.dark-section h2 { color: var(--white); font-size: 4rem; line-height: 1.1; }
.about-desc p { font-size: 1.2rem; line-height: 1.6; color: rgba(255,255,255,0.7);}
.stats-grid { display: flex; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px;}
.stat-item { flex: 1; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 20px;}
.stat-item.border-none { border: none; padding-right: 0;}
.stat-item h3 { font-size: 2.5rem; color: var(--white); margin-bottom: 5px;}
.stat-item p { font-size: 12px; font-weight: 500; font-family: 'Syne'; letter-spacing: 1px; color: var(--text-muted);}

/* Services Accordion */
.massive-text { font-size: 6vw; line-height: 0.9;}
.accordion-container { max-width: 900px; margin: 0 auto; border-top: 2px solid var(--black);}
.acc-item { border-bottom: 2px solid var(--black); }
.acc-header { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; cursor: none;}
.acc-header h3 { font-size: 2rem; transition: 0.3s; }
.acc-header i { font-size: 1.5rem; transition: 0.3s; }
.acc-header:hover h3 { color: #555; transform: translateX(10px);}
.acc-body { max-height: 0; overflow: hidden; transition: 0.4s ease-in-out; }
.acc-body p { padding-bottom: 30px; font-size: 1.2rem; max-width: 700px;}
.acc-item.active .acc-body { max-height: 300px; }
.acc-item.active .acc-header i { transform: rotate(45deg); color: red;}

/* Work Grid */
.relative-section { position: relative; overflow: hidden; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.work-card { height: 400px; background: var(--black-light); border-radius: 8px; overflow: hidden; position: relative;}
.work-card.large { grid-column: span 2; height: 500px; }
.work-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.6s filter; filter: grayscale(100%); }
.work-card:hover .work-img { filter: grayscale(0%); transform: scale(1.02); }
.w-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;}
.w-tag { font-family: 'Syne'; background: var(--neon); color: var(--black); font-size: 11px; font-weight: 700; padding: 5px 10px; display: inline-block; margin-bottom: 10px; border-radius: 2px; align-self: flex-start;}
.w-overlay h4 { color: var(--white); font-size: 2rem; }

/* Marquee CTA & Form */
.br-marquee-wrap { position: relative; overflow: hidden; background: var(--neon); padding: 150px 0;}
.marquee-bg { position: absolute; top: 50%; left: 0; transform: translateY(-50%); white-space: nowrap; font-family: 'Syne'; font-size: 15vw; font-weight: 800; color: rgba(0,0,0,0.05); animation: marquee 30s linear infinite; z-index: 1; pointer-events: none;}
.contact-box { background: var(--white); border: 4px solid var(--black); padding: 60px; max-width: 700px; margin: 0 auto; box-shadow: 15px 15px 0 var(--black); position: relative; z-index: 10;}
.contact-box h2 { font-size: 3rem; line-height: 1; }
.block-desc { font-weight: 600; font-size: 1.1rem;}
.flex-inputs { display: flex; gap: 20px; }
.br-input { width: 100%; border: 2px solid var(--black); padding: 15px; font-family: 'Montserrat'; font-size: 16px; font-weight: 500; outline: none; background: transparent;}
.br-input:focus { background: rgba(215, 255, 34, 0.2); }
select.br-input { cursor: none; }

/* Footer */
.footer { padding: 40px 0 20px; background: var(--gray); border-top: 2px solid var(--black); }
.border-top { border-top: 1px solid #CCC; }
.socials a { font-size: 20px; margin-left: 20px;}
.socials a:hover { color: var(--neon); text-shadow: 0 0 5px var(--black);}
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: 0.3s;}
.modal.open { display: flex; opacity: 1; }
.modal-box { width: 90%; max-width: 900px; border: 2px solid var(--neon); position: relative;}
.close-modal { position: absolute; right: 20px; top: -40px; font-size: 30px; color: var(--white); cursor: none; }

/* Brands Carousel */
.brands-track-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative;}
.brands-track-container::before, .brands-track-container::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none;}
.brands-track-container::before { left: 0; background: linear-gradient(to right, var(--white), transparent);}
.brands-track-container::after { right: 0; background: linear-gradient(to left, var(--white), transparent);}
.brands-track { display: inline-flex; gap: 80px; align-items: center; animation: brandScroll 25s linear infinite;}
.brand-logo { height: 40px; filter: grayscale(100%) opacity(0.6); transition: 0.3s;}
.brand-logo:hover { filter: grayscale(0%) opacity(1); }
@keyframes brandScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--black-light); padding: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;}
.review-card:hover { border-color: var(--neon); transform: translateY(-5px); }
.stars { font-size: 14px; letter-spacing: 2px;}
.review-text { font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.8); font-style: italic;}
.reviewer { display: flex; align-items: center; gap: 15px;}
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--black);}
.reviewer h4 { font-family: 'Syne'; color: var(--white); font-size: 1.1rem; margin-bottom: 3px;}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center;}
.price-box { border: 2px solid var(--black); padding: 50px 30px; background: var(--gray); position: relative; transition: 0.3s;}
.price-box h3 { font-size: 1.5rem; border-bottom: 2px solid var(--black); padding-bottom: 15px; margin-bottom: 20px;}
.price-val { font-size: 3rem; font-family: 'Syne'; font-weight: 800; color: var(--black); }
.price-val span:first-child { font-size: 1.5rem; vertical-align: top;}
.my-20 { margin-top: 20px; margin-bottom: 20px;}
.price-list { list-style: none; }
.price-list li { margin-bottom: 15px; font-weight: 500; font-size: 15px; display: flex; gap: 10px; align-items: center;}
.price-box:hover { background: #fff; box-shadow: 10px 10px 0 var(--black); transform: translate(-5px, -5px);}

.premium-box { background: var(--black); border-color: var(--black); color: var(--white); transform: scale(1.05); box-shadow: 15px 15px 0 var(--neon);}
.premium-box h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2);}
.premium-box .price-val { color: var(--white); }
.premium-box:hover { background: var(--black-light); box-shadow: 10px 10px 0 var(--neon); transform: translate(-5px, -5px) scale(1.05);}
.most-popular { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--neon); color: var(--black); font-family: 'Syne'; font-weight: 800; font-size: 12px; padding: 5px 15px; border: 2px solid var(--black);}

/* Premium Footer */
.footer-grid-premium { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { font-family: 'Montserrat'; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: 0.3s; }
.footer-links li a:hover { color: var(--neon); letter-spacing: 1px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border: 2px solid var(--black-light); background: var(--black); color: var(--neon); font-size: 18px; transition: 0.3s; box-shadow: 4px 4px 0 var(--black-light); }
.social-icons a:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--black-light); border-color: var(--neon); }
.border-top-neon { border-top: 1px solid rgba(215, 255, 34, 0.2); }
.border-top-dark { border-top: 1px solid var(--black-light); }
.hover-neon { transition: 0.3s; }
.hover-neon:hover { color: var(--neon) !important; text-shadow: 0 0 5px var(--neon); }

@media(max-width: 992px) {
    .nav-links, .nav-right { display: none; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 3.5rem; }
    .abstract-shape { display: none; }
    .split-grid { grid-template-columns: 1fr; }
    .dark-section h2 { font-size: 3rem; }
    .stats-grid { flex-direction: column; gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px;}
    .work-grid { grid-template-columns: 1fr; }
    .work-card.large { grid-column: span 1; }
    .flex-inputs { flex-direction: column; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px;}
    .premium-box { transform: scale(1); }
    .premium-box:hover { transform: translate(-5px, -5px) scale(1); }
    .contact-box { padding: 30px; box-shadow: 8px 8px 0 var(--black); }
    .cursor, .cursor-follower { display: none; }
    .footer-grid-premium { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .social-icons { justify-content: center; }
    .footer .flex-between { flex-direction: column; gap: 15px; }
    * { cursor: auto; }
}
