.exo-help-hero {
    padding: 88px 0 72px;
    background: linear-gradient(180deg, #ececff 0%, #f7f7ff 35%, #ffffff 75%);
    text-align: center;
}

.exo-help-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.exo-help-hero h1 {
    margin: 0 0 16px;
    font-size: 56px;
    line-height: 1.1;
    color: #18181b;
}

.exo-help-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #52525b;
    font-size: 20px;
    line-height: 1.7;
}

.exo-help-options {
    padding: 72px 0 86px;
    background: #ffffff;
}

.exo-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.exo-help-card {
    border: 2px solid #eef0ff;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
    padding: 34px 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.exo-help-card:hover {
    transform: translateY(-4px);
    border-color: #c7d2fe;
    box-shadow: 0 16px 34px rgba(99, 102, 241, 0.14);
}

.exo-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.exo-help-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #18181b;
}

.exo-help-card p {
    margin: 0 0 22px;
    color: #52525b;
    font-size: 17px;
    line-height: 1.7;
}

.exo-help-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.exo-help-button-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
}

.exo-help-button-primary:hover {
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.exo-help-button-secondary {
    background: #ffffff;
    border-color: #d4d4d8;
    color: #18181b;
}

.exo-help-button-secondary:hover {
    text-decoration: none;
    color: #18181b;
    border-color: #a1a1aa;
    background: #fafafa;
}

.exo-help-results {
    padding: 24px 0 88px;
    background: #ffffff;
}

.exo-help-results h2 {
    margin: 0 0 28px;
    text-align: center;
    font-size: 42px;
    line-height: 1.2;
    color: #18181b;
}

.exo-help-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.exo-help-results-card {
    border: 2px solid #eef0ff;
    border-radius: 20px;
    background: #fafbff;
    padding: 32px 30px;
}

.exo-help-results-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    color: #18181b;
}

.exo-help-results-card ul {
    margin: 0;
    padding-left: 22px;
}

.exo-help-results-card li {
    margin-bottom: 10px;
    color: #3f3f46;
    font-size: 17px;
    line-height: 1.6;
}

.exo-help-metrics-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.exo-help-metrics-list li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exo-help-metric {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #6366f1;
    color: #6366f1;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}

.exo-help-results-card .exo-help-button {
    margin-top: 12px;
}

@media (max-width: 960px) {
    .exo-help-hero h1 {
        font-size: 46px;
    }

    .exo-help-grid {
        grid-template-columns: 1fr;
    }

    .exo-help-results h2 {
        font-size: 34px;
    }

    .exo-help-results-grid {
        grid-template-columns: 1fr;
    }

    .exo-help-metrics-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .exo-help-hero {
        padding: 72px 0 58px;
    }

    .exo-help-hero h1 {
        font-size: 38px;
    }

    .exo-help-hero p {
        font-size: 18px;
    }

    .exo-help-options {
        padding: 56px 0 68px;
    }

    .exo-help-results {
        padding: 12px 0 70px;
    }

    .exo-help-card {
        padding: 28px 22px;
    }

    .exo-help-card h2 {
        font-size: 24px;
    }

    .exo-help-results h2 {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .exo-help-results-card {
        padding: 24px 20px;
    }
}
