/* ============================================
   Features/How It Works Page - Clean Minimal 2025 Design
   Based on Setup Guide pattern
   ============================================ */

/* ==========================================================================
   Page Foundation
   ========================================================================== */

.c-features-page {
    background: #f8fafc;
    min-height: 100vh;
}

/* ==========================================================================
   Hero Section - Clean & Simple
   ========================================================================== */

.c-features-page__hero {
    background: #ffffff;
    padding: 48px 24px 40px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.c-features-page__hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.c-features-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.c-features-page__subtitle {
    font-size: 17px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

/* Hero Meta - Small badges */
.c-features-page__hero-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.c-features-page__hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.c-features-page__hero-stat svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    color: #3b82f6;
}

/* ==========================================================================
   Content Container
   ========================================================================== */

.c-features-page__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ==========================================================================
   Section Styling
   ========================================================================== */

.c-features-page__section {
    padding-top: 48px;
}

.c-features-page__section-header {
    margin-bottom: 32px;
    text-align: center;
}

.c-features-page__section-badge {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 12px;
}

.c-features-page__section-badge--participants {
    background: linear-gradient(135deg, #3b82f6 0%, #0891b2 100%);
}

.c-features-page__section-badge--private {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.c-features-page__section-badge--types {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.c-features-page__section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.c-features-page__section-description {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Step Cards
   ========================================================================== */

.c-features-page__step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.c-features-page__step:hover {
    border-color: #cbd5e1;
}

.c-features-page__step-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-features-page__step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.c-features-page__step-number--participants {
    background: linear-gradient(135deg, #3b82f6 0%, #0891b2 100%);
}

.c-features-page__step-number--private {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.c-features-page__step-info {
    flex: 1;
    min-width: 0;
}

.c-features-page__step-title {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.c-features-page__step-description {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Benefit Cards
   ========================================================================== */

.c-features-page__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.c-features-page__benefit {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.2s ease;
}

.c-features-page__benefit:hover {
    border-color: #cbd5e1;
}

.c-features-page__benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    background: #f0f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-features-page__benefit-icon svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
    color: #3b82f6;
}

.c-features-page__benefit-content {
    flex: 1;
}

.c-features-page__benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.c-features-page__benefit-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Note/Disclaimer Box
   ========================================================================== */

.c-features-page__note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 24px;
}

.c-features-page__note svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    color: #b45309;
    margin-top: 1px;
}

.c-features-page__note p {
    font-size: 14px;
    color: #854d0e;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Competition Type Cards
   ========================================================================== */

.c-features-page__types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.c-features-page__type {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.c-features-page__type:hover {
    border-color: #cbd5e1;
}

.c-features-page__type-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.c-features-page__type-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-features-page__type-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    color: white;
}

.c-features-page__type-icon--golden-goal {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.c-features-page__type-icon--correct-score {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.c-features-page__type-icon--gaa {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.c-features-page__type-icon--perfect-strike {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.c-features-page__type-name {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.c-features-page__type-description {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.c-features-page__cta {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    margin-top: 48px;
}

.c-features-page__cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.c-features-page__cta-text {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px 0;
}

.c-features-page__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #0891b2 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.c-features-page__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    color: white;
}

.c-features-page__cta-button svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */

@media (max-width: 640px) {
    .c-features-page__hero {
        padding: 32px 20px;
    }

    .c-features-page__title {
        font-size: 26px;
    }

    .c-features-page__subtitle {
        font-size: 15px;
    }

    .c-features-page__content {
        padding: 0 16px 64px;
    }

    .c-features-page__section {
        padding-top: 40px;
    }

    .c-features-page__section-title {
        font-size: 20px;
    }

    .c-features-page__step {
        padding: 20px;
    }

    .c-features-page__step-header {
        gap: 12px;
    }

    .c-features-page__step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .c-features-page__step-title {
        font-size: 16px;
    }

    .c-features-page__benefit,
    .c-features-page__type {
        padding: 20px;
    }

    .c-features-page__cta {
        padding: 32px 20px;
        margin-top: 40px;
    }

    .c-features-page__cta-title {
        font-size: 20px;
    }
}
