/* Hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #f0f0ff 0%, #e8e0ff 30%, #f5f0ff 60%, #eef2ff 100%);
}

/* Section titles */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: #7c3aed;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 0;
    border-left: 2px solid #e5e7eb;
    margin-left: 0.75rem;
}

.timeline-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: #7c3aed;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #c4b5fd;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

/* Transition for mobile menu */
[x-cloak] {
    display: none !important;
}

/* Link hover animation */
a {
    transition: color 0.2s ease;
}

/* Card hover lift */
.hover\:shadow-md:hover {
    transform: translateY(-1px);
}
