/* Tujuane Premium Homepage CSS (Dark Neon Theme) */
:root {
    /* SAFETY FALLBACKS */
    --neon-cyan: #00f3ff;
    --theme-color: #00f3ff;
    --theme-glow: rgba(0, 243, 255, 0.5);
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-main: #ffffff;
    --text-white: #ffffff;
    /* Added for consistency */
    --text-muted: #888888;
    --text-dim: #888888;
    /* Added for consistency */
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.1);
    /* Added for consistency */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-main: 'Outfit', sans-serif;
    /* Added for consistency */
    --bg-glass-heavy: rgba(10, 10, 10, 0.95);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tujuane-homepage-wrapper {
    font-family: var(--font-body);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.05) 0%, transparent 40%);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    /* Force viewport width */
    max-width: 100%;
}

/* GLOBAL RESET FOR HOMEPAGE CONTEXT */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* --- NAVIGATION --- */
.tujuane-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: var(--glass-border);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Heart Beat Animation */
@keyframes pulseHeart {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.4));
    }

    15% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8));
    }

    30% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.4));
    }

    45% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8));
    }

    60% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.4));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.4));
    }
}

.nav-logo a {
    text-decoration: none;
    font-family: 'Outfit', sans-serif !important;
    /* FORCE DASHBOARD MATCH */
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    /* Fallback */
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #fff 50%, var(--neon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    /* The requested Italic */
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-logo i {
    color: var(--theme-color);
    text-shadow: 0 0 10px var(--theme-glow);
    animation: pulseHeart 2s infinite ease-in-out;
    /* The Beat */
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--theme-color);
    text-shadow: 0 0 8px var(--theme-glow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
}

/* --- HERO SECTION --- */
.homepage-hero {
    padding: 100px 0 40px;
    /* Reduced from 140px 0 80px */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -2px;
}

.hero-title span {
    color: var(--theme-color);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 50px;
    margin-top: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Neon Glow Buttons */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    /* Vertically center icon */
    justify-content: center;
    gap: 10px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-gradient i {
    margin-top: -1px;
    /* Subtle offset only */
}

.btn-gradient:hover {
    background: var(--theme-color);
    color: #000;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features i {
    color: var(--theme-color);
    margin-right: 8px;
}

/* --- STEPS SECTION --- */
.homepage-steps {
    padding: 60px 20px;
    text-align: center;
}

.homepage-steps h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.step-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    border: var(--glass-border);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.1);
}

.step-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.step-card h3 {
    font-size: 20px;
    margin: 15px 0 15px;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card h3 i {
    margin-right: 10px;
    color: var(--theme-color);
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* --- STATS --- */
.home-stats {
    padding: 60px 0;
    border-top: var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--theme-color);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

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

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .tujuane-header {
        height: 60px;
        /* Reduced from 80px */
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 2001 !important;
        /* Above the overlay */
    }

    .nav-menu {
        top: 0 !important;
        display: none;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(25px);
        padding: 80px 20px 20px 20px;
        flex-direction: column;
        border-bottom: none;
        z-index: 2000 !important;
        /* Cover the header */
    }

    .homepage-hero {
        padding-top: 70px !important;
        /* Tighten gap (60px header + 10px space) */
        padding-bottom: 40px;
    }

    .hero-container {
        padding-top: 0 !important;
        /* Let parent handle it */
    }

    .hero-title {
        font-size: 36px;
        /* Slightly smaller to prevent overflow */
        line-height: 1.2;
        margin-top: 10px !important;
        /* Visual breathing room */
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .stats-grid {
        gap: 40px;
    }

    .step-card {
        padding: 40px 20px;
        width: 100%;
        /* Force full width */
        box-sizing: border-box;
        /* Ensure padding includes in width */
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Single column stack */
        gap: 30px;
        padding: 0 15px;
        /* Add breathing room */
    }

    /* Prevent logo from breaking header height */
    /* .nav-logo a { font-size: 18px; } REMOVED to keep 16px match */
}