:root {
    --bg-void: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --primary-accent: #2c2c2c;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --neon-green: #00ff88;
    --neon-teal: #00ccff;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Mesh */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatBlob 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #00ff88;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #00ccff;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #7000ff;
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, 50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    flex-grow: 1;
    padding-top: 140px;
    padding-bottom: 80px;
}

/* --- HEADER --- */
header {
    padding: 20px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-teal);
}

.btn-primary {
    background: var(--neon-teal);
    color: black !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
    background: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* LAYOUT */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT COLUMN */
.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.page-title span {
    color: var(--neon-teal);
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.4);
    position: relative;
    display: inline-block;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

/* HERO CTA (Replaces Form) */
.hero-cta-group {
    display: flex;
    gap: 20px;
}

.btn-neon {
    background: var(--neon-teal);
    color: black !important;
    text-decoration: none;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: 0.3s;
    display: inline-block;
}

.btn-neon:hover {
    background: white;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
}

/* NEW SECTIONS */
.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.section-title span {
    color: var(--neon-green);
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--neon-teal);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-teal);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* PROCESS STRIP */
.process-section {
    position: relative;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* VISUAL COLUMN (ABSTRACT TABLET) */
.visual-column {
    display: flex;
    justify-content: center;
    position: relative;
}

.abstract-tablet-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--neon-teal);
    top: -30px;
    right: -20px;
    opacity: 0.6;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--neon-green);
    bottom: -20px;
    left: -10px;
    opacity: 0.4;
    filter: blur(15px);
    animation: float 8s ease-in-out infinite reverse;
}

.tablet-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: 0.5s;
}

.tablet-frame:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #222);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-wrapper {
    position: relative;
    z-index: 2;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.play-btn i {
    color: var(--neon-teal);
    font-size: 1.5rem;
    margin-left: 4px;
    /* Optical centering */
}

.play-btn:hover {
    background: var(--neon-teal);
    transform: scale(1.1);
    border-color: var(--neon-teal);
}

.play-btn:hover i {
    color: black;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--neon-teal);
    animation: pulseGlow 2s infinite;
    opacity: 0;
}

.video-ui-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ff5f56;
    border-radius: 50%;
}

.bar {
    height: 6px;
    width: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.video-ui-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 40%;
    background: var(--neon-teal);
}

.controls {
    display: flex;
    gap: 10px;
}

.c-icon {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-column {
        order: 1;
        text-align: center;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        margin: 0 auto 30px;
    }

    .glass-form-container {
        text-align: left;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta-group {
        justify-content: center !important;
        width: 100%;
        display: flex;
    }

    .visual-column {
        order: 2;
        margin-bottom: 0px !important;
        /* Removed completely */
    }

    .section-padding {
        padding: 30px 0 !important;
        /* Aggressively reduced */
    }

    .section-title {
        margin-bottom: 20px !important;
        font-size: 2rem !important;
    }

    .service-card {
        padding: 20px !important;
        min-height: auto !important;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        margin-bottom: 10px;
    }

    .tablet-frame {
        height: 250px;
    }

    .abstract-tablet-container {
        height: 250px !important;
        margin: 0 auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
        transition: 0.4s;
    }

    .nav-links.menu-open {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links .btn-primary {
        background: transparent !important;
        color: white !important;
        font-size: 1.5rem !important;
        padding: 0 !important;
    }
}