/*
 * مغسلة الياسي — صفحة مستقلة، لمسة ألوان فقط لمطابقة هوية ALYASI الجديدة
 * (كحلي #0B1F3A بدل الباليت القديمة)، بدون أي تغيير على بنية الصفحة.
 * يوفر هذا الملف نفس أسماء المتغيرات/الكلاسات التي تعتمد عليها الصفحة
 * (كانت سابقًا من public/css/alyasi.css المحذوف).
 */

:root {
    --panel-bg: rgba(255, 255, 255, .045);
    --panel-border: rgba(255, 255, 255, .12);
    --gold-light: var(--color-accent-300);
    --cream: #ffffff;
    --slate-warm: rgba(255, 255, 255, .55);
    --slate-light: rgba(255, 255, 255, .82);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

body {
    background: var(--color-accent-900);
    background-image: radial-gradient(circle at 80% 0%, rgba(159, 176, 206, .16), transparent 55%);
    color: #fff;
    font-family: var(--font-body);
    margin: 0;
}

.main { overflow-x: clip; }

/* — Hero — */
.hero {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 110px 32px 70px;
    text-align: center;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at top, #000 40%, transparent 75%);
    pointer-events: none;
}
.hero__title {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(30px, 5vw, 48px);
    color: #fff;
    line-height: 1.25;
    margin: 24px 0 18px;
}
.hero__title em { font-style: normal; color: var(--color-accent-300); }
.hero__desc {
    position: relative;
    max-width: 560px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.85;
}
.hero__ctas { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero__metrics { position: relative; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.metric { text-align: center; }
.metric__value { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: #fff; }
.metric__value span { color: var(--color-accent-300); margin-inline-start: 2px; }
.metric__label { font-size: 12.5px; color: rgba(255, 255, 255, .6); margin-top: 6px; }

/* — أزرار — */
.btn--secondary {
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .28);
    color: #fff;
}
.btn--secondary:hover { background: rgba(255, 255, 255, .18); }

/* — أقسام عامة — */
.section { padding: 70px 0; }
.section--tight { padding: 40px 0 90px; }
.section__inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

.section-head { max-width: 560px; margin: 0 auto 40px; text-align: center; }
.eyebrow { display: inline-block; color: var(--color-accent-300); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.section-title { font-family: var(--font-heading); font-size: 28px; color: #fff; margin: 0 0 12px; }
.section-title em { font-style: normal; color: var(--color-accent-300); }
.section-body { color: rgba(255, 255, 255, .68); font-size: 15px; margin: 0; }

/* — بطاقة CTA (امتداد لـ .cta-band المشتركة) — */
.cta-band--card { max-width: 900px; margin: 0 auto; }

@media (max-width: 767px) {
    .hero { padding: 100px 24px 56px; }
    .section { padding: 48px 0; }
    .hero__metrics { gap: 24px; }
}
