@charset "utf-8";

/* ==========================================
   LAPOWORLD - NEON THEME STYLESHEET
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pure Black & Dark Grays */
    --bg-dark: #000000; 
    --bg-card: #0a0a0a;
    --bg-elevated: #141414;
    
    /* Neon Orange Theme */
    --accent: #ff5e00; 
    --accent-light: #ff8533;
    --accent-dark: #cc4b00;
    
    /* Glow Effects */
    --glow: 0 0 15px rgba(255, 94, 0, 0.6);
    --glow-strong: 0 0 25px rgba(255, 94, 0, 0.8);
    --glow-text: 0 0 8px rgba(255, 94, 0, 0.8);
    
    /* Text & Borders */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border: #222222;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ==========================================
   ANIMATIONS & EFFECTS
   ========================================== */

/* Slide Up & Fade In */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pop In (Scale up) */
.pop-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pop-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Continuous Bouncing Taunt */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}
.bounce-taunt {
    animation: bounce 2.5s infinite;
    display: inline-block;
}

/* ==========================================
   NAVIGATION
   ========================================== */

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--accent);
    box-shadow: var(--glow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--accent);
    text-shadow: var(--glow-text);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: var(--glow-text);
}

/* Buttons */
.nav-cta, .btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--accent);
    box-shadow: var(--glow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-cta:hover, .btn-primary:hover {
    background: var(--bg-dark);
    color: var(--accent);
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
}

/* ==========================================
   LAYOUT SECTIONS & GRIDS
   ========================================== */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-grid, .pricing-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Cards */
.feature-card, .pricing-card, .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover, .pricing-card:hover {
    border-color: var(--accent);
    box-shadow: var(--glow);
    transform: translateY(-5px);
    z-index: 2;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.feature-card:hover .service-img {
    filter: grayscale(0%);
    border-color: var(--accent);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: var(--glow-text);
    margin: 1rem 0;
}

/* ==========================================
   FUTURISTIC TECH TREE (BLOG PAGE)
   ========================================== */

.tech-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.tree-node {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 700px;
    position: relative;
    margin-bottom: 4rem;
    transition: all 0.3s;
}

.tree-node:hover {
    border-color: var(--accent);
    box-shadow: var(--glow);
    transform: scale(1.02);
}

/* The glowing connection line */
.tree-node::after {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: 50%;
    width: 2px;
    height: 4rem;
    background: var(--accent);
    box-shadow: var(--glow);
    transform: translateX(-50%);
}

.tree-node:last-child::after {
    display: none;
}

.tree-node h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: var(--glow-text);
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */

@media (max-width: 768px) {
    .hero-container {
        text-align: center;
        flex-direction: column;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-container {
        padding: 4rem 1.5rem;
    }
}