:root {
    --neon-red: #ff2d55;
    --neon-cyan: #00f0ff;
    --dark-bg: #0a0a0f;
    --dark-card: #12121c;
    --dark-card-hover: #1a1a2e;
    --text-primary: #e8e8f0;
    --text-muted: #6a6a80;
    --glow-red: 0 0 30px rgba(255, 45, 85, 0.4);
    --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.4);
}

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

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

/* Scanline overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.08) 2px,
            rgba(0, 0, 0, 0.08) 4px);
    pointer-events: none;
    z-index: 9999;
}

/* Grid background */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Floating particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 8s infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1.5);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-red);
    text-shadow: var(--glow-red);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0 60px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    position: relative;
    margin-bottom: 40px;
}

.logo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.bull-logo {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 45, 85, 0.5));
    animation: hover-float 4s ease-in-out infinite;
}

@keyframes hover-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.company-name .horny {
    color: var(--neon-red);
    text-shadow: var(--glow-red);
}

.company-name .security {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.slogan {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 12px;
    position: relative;
}

.slogan::before,
.slogan::after {
    content: '—';
    margin: 0 12px;
    color: var(--neon-red);
}

.sub-slogan {
    margin-top: 24px;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    font-weight: 400;
}

/* CTA */
.cta-row {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 16px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--neon-red);
    color: #fff;
    box-shadow: var(--glow-red);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-primary:hover {
    background: #ff4570;
    box-shadow: 0 0 50px rgba(255, 45, 85, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.4);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.08);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

/* MARQUEE */
.marquee-strip {
    margin-top: 80px;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

.marquee-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
}

.marquee-item span {
    color: var(--neon-red);
    margin: 0 8px;
}

/* SERVICES */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 56px;
}

.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(0, 240, 255, 0.06);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--neon-red);
    transition: height 0.4s;
}

.service-card:hover {
    background: var(--dark-card-hover);
    border-color: rgba(255, 45, 85, 0.2);
    transform: translateY(-4px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--neon-cyan);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* TESTIMONIALS */
.testimonials {
    padding: 40px 0 80px;
}

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

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid rgba(0, 240, 255, 0.06);
    padding: 32px;
    position: relative;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.testimonial-card .quote::before {
    content: '"';
    color: var(--neon-red);
    font-size: 2rem;
    font-style: normal;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}

.testimonial-author {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin: 0 0 80px;
}

.stat {
    background: var(--dark-card);
    padding: 32px 20px;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--neon-red);
    text-shadow: var(--glow-red);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.footer-text a {
    color: var(--neon-red);
    text-decoration: none;
}

.footer-disclaimer {
    margin-top: 16px;
    font-size: 0.7rem;
    color: rgba(106, 106, 128, 0.5);
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Glitch effect on hover */
.glitch-hover:hover {
    animation: glitch 0.3s ease;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-1px, -1px);
    }

    80% {
        transform: translate(1px, 1px);
    }

    100% {
        transform: translate(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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