/* ===== ROBOTS PAGE SPECIFIC STYLES ===== */

/* Robot Showcase */
.robot-showcase {
    background: var(--dark-gray);
    padding: 80px 0;
}

.robot-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.robot-image-placeholder {
    background: var(--black);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.robot-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(0, 255, 65, 0.05) 0px,
            transparent 2px,
            transparent 10px,
            rgba(0, 255, 65, 0.05) 12px
        );
}

.placeholder-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.robot-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
}

.placeholder-content p {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.placeholder-content span {
    color: var(--light-gray);
    font-size: 1rem;
}

.robot-details {
    padding: 2rem;
}

.robot-name {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.robot-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.robot-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec {
    background: var(--black);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.spec:hover {
    border-color: var(--neon-green);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.spec h4 {
    color: var(--neon-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.spec p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Design Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-green), transparent);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--neon-green);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
}

.timeline-content h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Capabilities Section */
.capabilities-section {
    background: var(--black);
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.capability-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 255, 65, 0.3);
}

.capability-card h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.capability-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .robot-featured {
        grid-template-columns: 1fr;
    }

    .robot-specs {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-timeline::before {
        left: 29px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-content {
        margin-left: 0;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .robot-name {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .capability-card {
        padding: 1.5rem;
    }
}
