/* Selection Page Styles */

/* Hero Section */
.comparison-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    background-color: var(--bg-darker);
    top: var(--space-20);
    margin-bottom: var(--space-20);
}

.comparison-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.comparison-hero .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.comparison-hero .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.comparison-hero .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: -50px;
    left: -100px;
    filter: blur(80px);
}

.comparison-hero .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--brand-primary);
    bottom: 20%;
    right: 15%;
    filter: blur(40px);
}

.comparison-hero .shape-4 {
    width: 150px;
    height: 150px;
    background: var(--brand-secondary);
    top: 20%;
    left: 10%;
    filter: blur(30px);
}

.comparison-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.comparison-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.comparison-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Selection Section */
.comparison-selection {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.section-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -200px;
    left: -200px;
    filter: blur(80px);
}

.section-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -150px;
    right: -150px;
    filter: blur(70px);
}

.section-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--brand-primary);
    top: 30%;
    right: 10%;
    filter: blur(50px);
}

.section-shape.shape-4 {
    width: 200px;
    height: 200px;
    background: var(--brand-secondary);
    bottom: 20%;
    left: 15%;
    filter: blur(40px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Selection Options */
.selection-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.selection-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.selection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.selection-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: var(--radius-lg);
}

.selection-card:hover .card-glow {
    opacity: 0.5;
}

.broker-card {
    border-top: 4px solid var(--brand-blue);
}

.propfirm-card {
    border-top: 4px solid var(--brand-orange);
}

.selection-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: var(--bg-darker);
    box-shadow: var(--shadow-sm);
}

.broker-card .selection-icon {
    color: var(--brand-blue);
}

.propfirm-card .selection-icon {
    color: var(--brand-orange);
}

.selection-icon svg {
    width: 40px;
    height: 40px;
}

.selection-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.selection-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.selection-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: var(--text-tertiary);
}

.broker-card .feature-icon {
    color: var(--brand-blue);
}

.propfirm-card .feature-icon {
    color: var(--brand-orange);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.selection-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.selection-btn .btn-icon {
    transition: transform 0.3s ease;
}

.selection-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Benefits Section */
.comparison-benefits {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.comparison-benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--bg-darker);
    color: var(--brand-primary);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    position: relative;
    padding: 80px 0;
    background-color: var(--bg-darker);
    overflow: hidden;
    margin-top: 80px;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-primary);
    top: -200px;
    right: -100px;
    filter: blur(90px);
    opacity: 0.2;
}

.cta-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-secondary);
    bottom: -100px;
    left: -50px;
    filter: blur(80px);
    opacity: 0.15;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light-secondary);
    margin-bottom: 30px;
}

.questionnaire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.questionnaire-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.questionnaire-btn .btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .comparison-hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .comparison-hero {
        padding: 80px 0 50px;
    }

    .comparison-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .selection-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .comparison-hero h1 {
        font-size: 2rem;
    }

    .comparison-hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .selection-icon {
        width: 60px;
        height: 60px;
    }

    .selection-icon svg {
        width: 30px;
        height: 30px;
    }

    .selection-card h3 {
        font-size: 1.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon svg {
        width: 25px;
        height: 25px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}