﻿.steps-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .steps-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .steps-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .steps-header h1 span {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .timeline {
            position: relative;
            margin: 0 auto;
        }

        .timeline-item {
            position: relative;
            padding-left: 3.5rem;
            margin-bottom: 3.5rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 14px;
            top: 32px;
            bottom: -50px;
            width: 2px;
            background: var(--border-color);
        }

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

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-weight: 700;
            font-family: var(--font-title);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--bg-color);
            box-shadow: 0 0 10px rgba(100, 29, 222, 0.4);
        }

        .step-content {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .step-content h3 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .step-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .step-cta-box {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

