* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0A0A0A;
    --surface: #1A1A1A;
    --lime: #C8FF00;
    --text-light: #F5F0E8;
    --text-muted: #999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
body {
    cursor: none;
}

#cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
    transform: translate(-50%, -50%);
}

a, button {
    cursor: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--lime);
}

.nav-cta {
    background: var(--bg-dark);
    color: var(--lime);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--lime);
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.3);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 14vw, 12rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero h1 .highlight {
    color: var(--lime);
    display: block;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero h1 span {
    display: block;
    animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--lime);
    color: var(--bg-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 255, 0, 0.4);
}

.btn-ghost {
    border: 2px solid var(--lime);
    color: var(--lime);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--lime);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.hero-badge {
    position: absolute;
    top: 20%;
    right: 10%;
    background: var(--surface);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 255, 0, 0.3);
    font-size: 0.9rem;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.social-proof-ticker {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid rgba(200, 255, 0, 0.1);
    border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Marquee Section */
.marquee {
    background: var(--lime);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 2px solid var(--bg-dark);
    border-bottom: 2px solid var(--bg-dark);
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--bg-dark);
    letter-spacing: 2px;
}

/* Section Styles */
section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 2px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--lime);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(200, 255, 0, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--lime);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid rgba(200, 255, 0, 0.1);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
}

.portfolio-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 255, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.portfolio-tags {
    color: var(--bg-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-link {
    color: var(--bg-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--bg-dark);
}

/* Process Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 255, 0, 0.1);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-company {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stars {
    color: var(--lime);
    margin-top: 1rem;
    font-size: 1.2rem;
}

.stats-bar {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.stat span {
    color: var(--lime);
}

/* CTA Section */
.cta-section {
    background: var(--lime);
    color: var(--bg-dark);
    text-align: center;
    padding: 8rem 5%;
    margin: 0;
    max-width: 100%;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-section .btn {
    background: var(--bg-dark);
    color: var(--lime);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.cta-section .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(10, 10, 10, 0.3);
}

.trust-signals {
    margin-top: 3rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-signals span {
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 4rem 5%;
    border-top: 1px solid rgba(200, 255, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--lime);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--lime);
    transform: translateY(-3px);
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 255, 0, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--lime);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable custom cursor on mobile */
    #cursor {
        display: none;
    }

    body {
        cursor: auto;
    }

    a, button {
        cursor: pointer;
    }

    /* Navigation */
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 6rem 5% 4rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem);
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .hero-badge {
        position: static;
        margin-top: 2rem;
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-bg {
        width: 400px;
        height: 400px;
    }

    .social-proof-ticker {
        bottom: 1rem;
        font-size: 0.85rem;
    }

    /* Marquee */
    .marquee-content span {
        font-size: 1.5rem;
    }

    /* Sections */
    section {
        padding: 4rem 5%;
    }

    .section-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 2.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item:first-child {
        grid-column: 1;
        aspect-ratio: 4/3;
    }

    .portfolio-overlay h3 {
        font-size: 2rem;
    }

    /* Process */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-number {
        font-size: 4rem;
    }

    .process-step h3 {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat {
        font-size: 1.2rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 5%;
    }

    .cta-section h2 {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-section .btn {
        font-size: 1rem;
        padding: 1.2rem 2rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .marquee-content span {
        font-size: 1.2rem;
    }
}
