.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-section h1 span {
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.project-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.project-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-card {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    box-shadow: 0 5px 15px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.status-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.apply-banner {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
}

.apply-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-apply {
    display: inline-block;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.btn-apply:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--accent-glow);
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .apply-banner { padding: 2rem; }
}