/* ===== GET STARTED SECTION ===== */
.get-started-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #1a2332 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.get-started-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.get-started-section .section-title-main,
.get-started-section .section-subtitle-main {
    color: white;
    position: relative;
    z-index: 1;
}

.get-started-section .section-title-main {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.registration-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,215,0,0.3);
}

.registration-card h3 {
    font-size: 32px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.registration-steps {
    list-style: none;
    font-size: 18px;
    line-height: 2.5;
    margin-bottom: 35px;
    color: #444;
}

.registration-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.registration-steps strong {
    color: #2c3e50;
}

.email-cta {
    text-align: center;
    margin-bottom: 30px;
}

.email-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a2332;
    padding: 22px 60px;
    font-size: 22px;
    font-weight: 800;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255,215,0,0.5);
    position: relative;
    overflow: hidden;
}

.email-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.email-button:hover::before {
    width: 300px;
    height: 300px;
}

.email-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255,215,0,0.7);
}

.phone-support {
    text-align: center;
    font-size: 16px;
    color: #666;
}

.phone-support a {
    color: #2c3e50;
    font-weight: 700;
    text-decoration: none;
}

.registration-note {
    margin-top: 40px;
    padding: 25px;
    background: #fff3cd;
    border-radius: 15px;
    text-align: center;
    color: #856404;
}
