/* Mesora Health Arabic Landing Page V2 */

.trial-strip {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;
    text-align: center;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 15px;
}

.hero-proof-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-proof-points span {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 14px;
}

.section-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid,
.help-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.help-grid {
    grid-template-columns: repeat(4, 1fr);
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.benefit-card,
.help-card,
.faq-card,
.trial-card,
.progress-card,
.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.benefit-icon,
.help-icon,
.step-number {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 18px;
}

.benefit-card h3,
.help-card h3,
.faq-card h3,
.step-card h3,
.progress-card h2,
.trial-card h2 {
    margin: 0 0 12px;
    color: var(--dark);
}

.benefit-card p,
.help-card p,
.faq-card p,
.step-card p,
.progress-card p,
.trial-card p {
    margin: 0;
    color: var(--muted);
}

.screenshot-placeholder {
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(30, 64, 175, 0.08)),
        #f8fafc;
    border-bottom: 1px solid var(--border);
}

.placeholder-inner {
    width: 100%;
    border: 2px dashed #93c5fd;
    border-radius: 22px;
    padding: 38px 20px;
    color: var(--primary-dark);
    font-weight: 900;
}

.placeholder-inner span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.trial-section {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff, #eff6ff);
}

.trial-card {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 44px;
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 26px 70px rgba(37, 99, 235, 0.14);
}

.trial-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.trial-features span {
    padding: 14px 12px;
    border-radius: 18px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step-card {
    position: relative;
}

.step-number {
    border-radius: 50%;
}

.progress-section {
    background: #0f172a;
    color: white;
}

.progress-card {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.progress-card h2 {
    color: white;
}

.progress-card p {
    color: #cbd5e1;
    font-size: 18px;
}

.progress-highlight {
    display: inline-flex;
    margin-top: 22px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.24);
    color: #dbeafe;
    font-weight: 900;
}

.final-cta-section {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
}

.final-cta-card {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-card h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
}

.final-cta-card p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: #dbeafe;
    font-size: 18px;
}

.final-cta-card .primary-button {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.pricing-note strong {
    color: var(--primary-dark);
}

@media (max-width: 1000px) {
    .benefits-grid,
    .help-grid,
    .trial-features,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .trial-strip {
        font-size: 14px;
    }

    .benefits-grid,
    .help-grid,
    .faq-grid,
    .trial-features,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .trial-card {
        padding: 32px 22px;
    }

    .hero-proof-points {
        flex-direction: column;
    }

    .hero-proof-points span {
        justify-content: center;
    }
}
