/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --bg-dark: #050505;
    --card-bg: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    /* Neon Palette */
    --neon-cyan: #00f3ff;
    --neon-magenta: #ff00ff;
    --neon-lime: #39ff14;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    --gradient-text: linear-gradient(to right, #fff, var(--neon-cyan));
    
    /* Fonts */
    --font-stack: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.highlight-cyan { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(0, 243, 255, 0.4); }
.highlight-magenta { color: var(--neon-magenta); text-shadow: 0 0 15px rgba(255, 0, 255, 0.4); }
.highlight-lime { color: var(--neon-lime); text-shadow: 0 0 15px rgba(57, 255, 20, 0.4); }

/* =========================================
   2. NAVBAR (Mobile Optimized)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: background 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 1001;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Center Links (Hidden on Mobile) */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-item:hover {
    color: var(--text-main);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Right Side Container (Login + Subscribe) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between buttons */
}

/* --- ANIMATED LOGIN BUTTON (Border Style) --- */
/*.login-anim-btn {*/
/*    display: inline-block;*/
/*    padding: 8px 20px;          */
/*    border: 2px solid #00f3ff;  */
/*    border-radius: 50px;        */
/*    background: transparent;    */
    
/*    font-weight: 800;*/
/*    font-size: 0.9rem;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
    
    /* Animation: Cycles Border, Text, and Glow */
/*    animation: border-neon-cycle 3s linear infinite;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.login-anim-btn:hover {*/
/*    transform: scale(1.05);*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*}*/

@keyframes border-neon-cycle {
    0% { 
        border-color: #00f3ff; 
        color: #00f3ff;
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.5), inset 0 0 5px rgba(0, 243, 255, 0.2);
    }
    33% { 
        border-color: #ff00ff; 
        color: #ff00ff;
        box-shadow: 0 0 5px rgba(255, 0, 255, 0.5), inset 0 0 5px rgba(255, 0, 255, 0.2);
    }
    66% { 
        border-color: #39ff14; 
        color: #39ff14;
        box-shadow: 0 0 5px rgba(57, 255, 20, 0.5), inset 0 0 5px rgba(57, 255, 20, 0.2);
    }
    100% { 
        border-color: #00f3ff; 
        color: #00f3ff;
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.5), inset 0 0 5px rgba(0, 243, 255, 0.2);
    }
}

/* Subscribe Button */
.cta-btn {
    background: var(--gradient-main);
    padding: 10px 24px;
    border-radius: 50px;
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

.glow-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(0, 243, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 243, 255, 0.6); }
    100% { box-shadow: 0 0 10px rgba(0, 243, 255, 0.3); }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Comparison Box */
.comparison-box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 0 auto 50px;
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.competitor, .careermind {
    flex: 1;
    padding: 30px;
    text-align: left;
}

.competitor { background: rgba(255, 50, 50, 0.03); }
.careermind { background: rgba(0, 243, 255, 0.03); position: relative; }

.competitor h3 { color: #ff4d4d; margin-bottom: 15px; font-size: 1.1rem; }
.careermind h3 { color: var(--neon-cyan); margin-bottom: 15px; font-size: 1.1rem; }

.comparison-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.vs-divider {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-weight: bold;
    font-style: italic;
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.primary-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.secondary-btn {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.3;
}
.orb-1 { width: 300px; height: 300px; background: var(--neon-cyan); top: 10%; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--neon-magenta); bottom: 10%; right: -150px; }

/* =========================================
   4. FEATURES SECTION
   ========================================= */
.features-section { padding: 100px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 60px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-magenta);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.15);
}

.feature-card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; color: #fff; font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* =========================================
   5. PRICING SECTION
   ========================================= */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -40px;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 320px;
    position: relative;
    transition: 0.3s;
}

.best-value {
    border: 2px solid var(--neon-lime);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-lime);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-card h3 { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 10px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; margin: 15px 0; color: #fff; }
.pricing-card .duration { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }

.features-list li {
    margin: 12px 0;
    color: #ccc;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.pricing-btn {
    display: block;
    margin-top: 25px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.pricing-btn:hover { background: #fff; color: #000; }

.glowing-btn { background: var(--neon-lime); color: #000; border: none; }
.glowing-btn:hover { background: #2ecc71; color: #000; box-shadow: 0 0 20px rgba(57, 255, 20, 0.4); }

/* =========================================
   6. CONTACT FORM
   ========================================= */
.contact-section { padding: 100px 0; }

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-wrapper h2 { text-align: center; margin-bottom: 30px; font-size: 1.8rem; }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; color: var(--text-muted); font-size: 0.9rem; }

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--neon-cyan);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    transition: 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #00c4ce;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

/* Form Status Messages */
#form-message {
    font-size: 0.95rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid transparent;
}

/* =========================================
   7. FOOTER
   ========================================= */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links { margin-top: 15px; }
.footer-links a { margin: 0 15px; font-size: 0.85rem; color: #777; }
.footer-links a:hover { color: var(--neon-cyan); }

/* =========================================
   8. ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   9. MOBILE MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    
    /* Navbar Adjustments */
    .nav-links { display: none; } /* Hide Center Links */
    
    .nav-container { padding: 0 10px; }
    
    .logo { font-size: 1.1rem; }
    
    .nav-right { gap: 8px; } /* Small gap so buttons fit */
    
    .login-anim-btn { 
        padding: 6px 14px;
        font-size: 0.75rem;
        border-width: 1.5px;
    }
    
    .cta-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    /* Hero */
    .hero-section { padding-top: 140px; }
    .hero-title { font-size: 2.2rem; }
    
    /* Comparison Box */
    .comparison-box { flex-direction: column; }
    .vs-divider {
        width: 100%; height: 40px;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Pricing */
    .pricing-grid { flex-direction: column; }
    .best-value { transform: scale(1); width: 100%; order: -1; margin-bottom: 20px; }
    .pricing-card { width: 100%; }
    
    /* Form */
    .form-wrapper { padding: 25px; }
}