: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;

    /* Theme Colors: Neon Yellow & Teal */
    --neon-yellow: #FFD700;
    --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: var(--neon-yellow);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-teal);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #ffffff;
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.1;
}

@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;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* HEADER STYLES (Consistency) */
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-yellow);
}

.btn-primary {
    background: var(--neon-yellow);
    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(255, 215, 0, 0.3);
    background: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


/* HERO */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.page-title span {
    color: var(--neon-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

/* BUTTONS */
.btn-neon {
    background: var(--neon-yellow);
    color: black;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-neon:hover {
    background: white;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* VISUAL: ABSTRACT MAIL */
.visual-column {
    display: flex;
    justify-content: center;
    position: relative;
}

.abstract-mail-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.mail-card {
    width: 280px;
    height: 340px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 20px;
    padding: 20px;
    transform: rotate(-5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: 0.5s;
}

.mail-card:hover {
    transform: rotate(0deg) translateY(-10px);
    border-color: var(--neon-yellow);
}

.mail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card-hover);
}

.line {
    width: 120px;
    height: 10px;
    border-radius: 5px;
    background: var(--bg-card-hover);
}

.mail-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-block {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.content-block.short {
    height: 60px;
}

.cta-block {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    background: var(--neon-yellow);
    opacity: 0.8;
}

.mail-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: var(--neon-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: black;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: floatIcon 6s infinite ease-in-out;
}

.float-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--neon-teal);
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
    animation: floatIcon 8s infinite ease-in-out reverse;
}

.icon-1 {
    bottom: 20px;
    left: -20px;
}

.icon-2 {
    top: 40px;
    right: -50px;
    animation-delay: -2s;
    font-size: 2rem;
    color: white;
    opacity: 0.5;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--neon-yellow);
}

.icon-wrapper {
    font-size: 2.5rem;
    color: var(--neon-yellow);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.section-title span {
    color: var(--neon-yellow);
}

/* STATS SECTION */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 60px 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--neon-yellow);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 200px;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
}

/* PROCESS SECTION */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-yellow) 0%, transparent 100%);
    opacity: 0.3;
    z-index: -1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--neon-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--neon-yellow);
    transition: 0.3s;
}

.process-step:hover .step-icon {
    background: var(--neon-yellow);
    color: black;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* RESPONSIVE UPDATES FOR NEW SECTIONS */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* FINAL CTA */
.final-cta-box {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 60px 20px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.final-cta-box p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.large-btn {
    width: auto;
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-column {
        order: 1;
        text-align: center;
    }

    .visual-column {
        order: 2;
        display: none;
        /* Hide visual on mobile to save space or adjust */
    }

    /* Mobile Visual Adjustment (Optional: Show simplified) */
    /* .visual-column { display: flex; } .mail-card { position: relative; left: 0; transform: none; } */

    .hero-cta-group {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .page-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 40px 0;
    }

    .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;
    }
}