@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');

* {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #4E88E6 0%, #244E99 50%, #712D91 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #4E88E6 0%, #712D91 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(78, 136, 230, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #4E88E6 0%, #712D91 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.retreat-image {
    background: linear-gradient(135deg, rgba(78, 136, 230, 0.8) 0%, rgba(113, 45, 145, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%234E88E6;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23712D91;stop-opacity:0.8" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/><circle cx="300" cy="150" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="120" fill="rgba(255,255,255,0.08)"/><circle cx="600" cy="450" r="60" fill="rgba(255,255,255,0.12)"/></svg>');
    background-size: cover;
    background-position: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 136, 230, 0.2);
}

.progress-step {
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4E88E6 0%, #712D91 100%);
    transform: translateY(-50%);
}

.progress-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .progress-step::after {
        display: none;
    }
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4E88E6, #712D91, transparent);
}

.sec-pad {
    padding: 7rem 0 4rem 0 !important;
}