/* Explain: Styles for UI components like buttons, cards, and navigation links. */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 148, 29, 0.1);
    color: var(--primary-hover);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-premium {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(18, 60, 115, 0.15);
}

.nav-link {
    border-radius: 999px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(247, 148, 29, 0.05);
}

.timeline-node {
    position: relative;
}

.timeline-node::before {
    content: '';
    position: absolute;
    top: 3rem;
    bottom: -2rem;
    left: 1.5rem;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-node:last-child::before {
    display: none;
}

@keyframes soft-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-soft-bounce {
    animation: soft-bounce 3s infinite ease-in-out;
}
