/* ==========================================================================
   Star Clean — تنسيقات الصفحة الرئيسية
   ========================================================================== */

/* ━━━ HERO ━━━ */
.nk-hero {
    position: relative;
    min-height: calc(100svh - 116px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--dark);
    padding-top: 3rem;
    padding-bottom: 7rem;
}

.nk-hero__bg { position: absolute; inset: 0; z-index: 0; }

.nk-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .30;
    transform: scale(1.06);
    animation: nk-hz 12s ease-in-out infinite alternate;
}

@keyframes nk-hz { from { transform: scale(1.06) } to { transform: scale(1.12) } }

.nk-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14, 106, 115, .62);
}

.nk-hero__line {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--cyan);
    opacity: .2;
    pointer-events: none;
    z-index: 1;
}

.nk-hero__body { position: relative; z-index: 1; flex: 1; display: flex; align-items: center; }

.nk-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 960px) { .nk-hero__grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; } }

.nk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1.35rem;
    border-radius: 99px;
    border: 1px solid var(--cyan);
    background: rgba(249, 204, 2, .12);
    color: var(--cyan);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 1.75rem;
    animation: nk-fi .8s ease both;
}

.nk-hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
    animation: nk-pu 2s ease infinite;
}

@keyframes nk-pu { 0%, 100% { opacity: 1; transform: scale(1) } 50% { opacity: .4; transform: scale(.7) } }

.nk-hero__title {
    font-size: clamp(2.1rem, 5vw, 4.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 1.4rem;
    animation: nk-fi .8s .15s ease both;
}

.nk-hero__title-accent { color: var(--cyan); }

.nk-hero__desc {
    font-size: clamp(.88rem, 1.6vw, 1.08rem);
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    line-height: 1.9;
    max-width: 52ch;
    margin-bottom: 2rem;
    animation: nk-fi .8s .3s ease both;
}

.nk-hero__feats { display: flex; flex-wrap: wrap; gap: .55rem; animation: nk-fi .8s .42s ease both; }

.nk-hero__feat {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .38rem .95rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .85);
    font-size: .78rem;
    font-weight: 600;
}

.nk-hero__feat svg { color: var(--orange); width: 12px; height: 12px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* نموذج الحجز */
.nk-hero__form {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem 1.25rem;
    animation: nk-fi .8s .5s ease both;
    position: relative;
    overflow: hidden;
}

.nk-hero__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cyan);
}

.nk-form-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

.nk-form-title svg { color: var(--orange); flex-shrink: 0; }

.nk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: .65rem; }

@media (max-width: 520px) { .nk-form-row { grid-template-columns: 1fr; } }

.nk-finput {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .875rem;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: .88rem;
    outline: none;
    transition: all .3s ease;
}

.nk-finput::placeholder { color: rgba(255, 255, 255, .42); }
.nk-finput:focus { border-color: var(--cyan); background: rgba(255, 255, 255, .14); }

.nk-fsubmit {
    width: 100%;
    padding: .875rem 1.5rem;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: .875rem;
    font-family: 'Cairo', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 4px 18px rgba(164, 208, 14, .3);
}

.nk-fsubmit:hover { background: var(--org-2); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(164, 208, 14, .4); }
.nk-fprivacy { text-align: center; font-size: .72rem; color: rgba(255, 255, 255, .38); margin-top: .65rem; }

.nk-fsuccess {
    background: rgba(164, 208, 14, .2);
    border: 1px solid rgba(164, 208, 14, .4);
    color: #fff;
    padding: .75rem;
    border-radius: .75rem;
    text-align: center;
    font-weight: 600;
    font-size: .87rem;
    margin-top: .65rem;
    display: none;
}

.nk-fsuccess.is-visible { display: block; }

/* إحصائيات الهيرو */
.nk-hero__stats {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .1);
    animation: nk-fi .8s .65s ease both;
}

.nk-stats-row { display: flex; gap: 0; }

.nk-stat {
    flex: 1;
    padding: 1.35rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.nk-stat:last-child { border-right: none; }
.nk-stat-v { font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 800; color: var(--cyan); line-height: 1; }

.nk-stat-l {
    font-size: .62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .04em;
    white-space: nowrap;
}

.nk-scroll {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .22);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .14em;
    animation: nk-fi 1s 1s ease both;
    z-index: 1;
}

.nk-scroll-line { width: 1px; height: 30px; background: var(--cyan); opacity: .5; animation: nk-sl 1.5s ease-in-out infinite; }

@keyframes nk-sl {
    0% { transform: scaleY(0); transform-origin: top }
    50% { transform: scaleY(1); transform-origin: top }
    51% { transform: scaleY(1); transform-origin: bottom }
    100% { transform: scaleY(0); transform-origin: bottom }
}

@keyframes nk-fi { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }

@media (max-width: 959px) {
    .nk-hero { padding-top: 2.5rem; padding-bottom: 0; min-height: auto; }
    .nk-hero__body { padding-block: 2rem; }
    .nk-hero__title { font-size: clamp(1.8rem, 7.5vw, 2.5rem); }
    .nk-stats-row { display: grid; grid-template-columns: 1fr 1fr; }
    .nk-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .1); }
    .nk-stat:nth-child(odd) { border-left: 1px solid rgba(255, 255, 255, .1); }
    .nk-stat:nth-last-child(-n+2) { border-bottom: none; }
    .nk-scroll { display: none; }
}

/* ━━━ عناصر عامة داخل الصفحة ━━━ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-badge {
    display: inline-block;
    background: var(--cyan);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 15px; color: #fff; }
.section-title.dark { color: var(--dark); }
.title-highlight { color: var(--cyan); }
.section-title.dark .title-highlight { color: var(--dark-2); }
.section-description { font-size: 1.1rem; line-height: 1.7; color: rgba(255, 255, 255, .85); max-width: 600px; margin: 0 auto; }
.section-description.dark { color: #555; }

/* ━━━ الاعتمادات ━━━ */
.credentials-section { background: var(--dark-2); padding: 80px 0; }
.credentials-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.credentials-header { text-align: center; margin-bottom: 50px; }
.stats-row { display: flex; justify-content: center; gap: 60px; margin-bottom: 50px; flex-wrap: wrap; }
.stats-row .stat-item { text-align: center; color: #fff; }
.stats-row .stat-number { font-size: 2.8rem; font-weight: 900; color: var(--cyan); display: block; line-height: 1; margin-bottom: 8px; }
.stats-row .stat-label { font-size: 1rem; color: rgba(255, 255, 255, .8); font-weight: 500; }

.achievements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 10px; }

.achievement-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s ease;
}

.achievement-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .1); box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 204, 2, .12);
    border: 2px solid rgba(249, 204, 2, .35);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon svg { width: 26px; height: 26px; }
.achievement-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.achievement-sub { font-size: .82rem; color: rgba(255, 255, 255, .6); line-height: 1.5; }

/* ━━━ الخدمات ━━━ */
.sc-srv-section { background: var(--dark); padding: 80px 0; }
.sc-srv-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.sc-srv-grid {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 0;
    min-height: 580px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
}

.sc-srv-left { background: var(--dark-2); padding: 56px 48px; color: #fff; display: flex; flex-direction: column; justify-content: center; }

.sc-srv-badge {
    display: inline-block;
    background: rgba(249, 204, 2, .12);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(249, 204, 2, .3);
    width: fit-content;
}

.sc-srv-title { font-size: clamp(1.4rem, 2.5vw, 1.7rem); font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.4; }
.sc-srv-desc { font-size: .95rem; line-height: 1.8; color: rgba(255, 255, 255, .85); margin-bottom: 32px; }
.sc-srv-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.sc-srv-stat-num { font-size: 2.2rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.sc-srv-stat-lbl { font-size: .8rem; color: rgba(255, 255, 255, .55); margin-top: 5px; font-weight: 500; }

.sc-srv-image { position: relative; overflow: hidden; }
.sc-srv-image img { width: 100%; height: 100%; object-fit: cover; opacity: .88; display: block; transition: transform .4s; }
.sc-srv-image:hover img { transform: scale(1.05); }

.sc-srv-right { background: var(--dark); padding: 32px 36px; color: #fff; display: flex; flex-direction: column; justify-content: center; }

.sc-srv-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: all .28s;
}

.sc-srv-option:last-of-type { margin-bottom: 22px; }
a.sc-srv-option { text-decoration: none; }
.sc-srv-option:hover { background: rgba(249, 204, 2, .05); border-color: rgba(249, 204, 2, .25); }
.sc-srv-option:hover .sc-srv-opt-title { color: var(--cyan); }

.sc-srv-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: .95rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-left: 12px;
}

.sc-srv-letter.cyan { background: var(--cyan); color: var(--dark); }
.sc-srv-letter.dark { background: var(--orange); color: #fff; }
.sc-srv-opt-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; transition: color .22s; }
.sc-srv-opt-desc { font-size: .8rem; color: rgba(255, 255, 255, .62); line-height: 1.5; margin-bottom: 6px; }

.sc-srv-opt-spec {
    font-size: .74rem;
    font-weight: 700;
    color: var(--cyan);
    background: rgba(249, 204, 2, .1);
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
    border: 1px solid rgba(249, 204, 2, .25);
}

.sc-srv-cta { text-align: center; margin-top: 4px; }

.sc-srv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: #fff;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: .97rem;
    transition: all .28s;
    box-shadow: 0 4px 16px rgba(164, 208, 14, .3);
}

.sc-srv-cta-btn:hover { background: var(--org-2); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 24px rgba(164, 208, 14, .4); }

/* ━━━ المعدات ━━━ */
.sc-tech-section { background: var(--dark-2); padding: 65px 0 75px; position: relative; }
.sc-tech-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cyan); }
.sc-tech-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; text-align: center; }

.sc-tech-eyebrow,
.sc-adv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(249, 204, 2, .3);
    background: rgba(249, 204, 2, .1);
    color: var(--cyan);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

.sc-tech-eyebrow::before,
.sc-adv-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }

.sc-tech-heading { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 900; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.sc-tech-heading span { color: var(--cyan); }
.sc-tech-subheading { font-size: .98rem; color: rgba(255, 255, 255, .48); margin-bottom: 45px; font-weight: 500; }
.sc-tech-cards-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.sc-tech-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 999px;
    padding: 13px 24px 13px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(249, 204, 2, .18);
    transition: all .28s;
    min-width: 240px;
    flex: 1 1 240px;
    max-width: 340px;
}

.sc-tech-card:hover {
    background: rgba(249, 204, 2, .08);
    border-color: rgba(249, 204, 2, .55);
    transform: translateY(-3px);
    box-shadow: 0 0 20px 3px rgba(249, 204, 2, .15);
}

.sc-tech-dot-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-tech-dot-icon.cyan { background: rgba(249, 204, 2, .14); border: 1px solid rgba(249, 204, 2, .38); }
.sc-tech-dot-icon.soft { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); }
.sc-tech-dot-icon svg { width: 20px; height: 20px; }
.sc-tech-info { text-align: right; }
.sc-tech-name { font-size: .93rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; transition: color .22s; }
.sc-tech-card:hover .sc-tech-name { color: var(--cyan); }
.sc-tech-detail { font-size: .73rem; color: var(--cyan); font-weight: 600; display: flex; align-items: center; gap: 5px; opacity: .85; }
.sc-tech-detail svg { width: 10px; height: 10px; flex-shrink: 0; }

.sc-tech-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(164, 208, 14, .12);
    border: 1px solid rgba(164, 208, 14, .4);
    border-radius: 999px;
    padding: 12px 26px;
    margin-top: 30px;
    color: var(--orange);
    font-weight: 700;
    font-size: .95rem;
}

.sc-tech-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(164, 208, 14, .15);
    border: 1px solid rgba(164, 208, 14, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-tech-badge-icon svg { width: 18px; height: 18px; }

/* ━━━ المميزات ━━━ */
.sc-adv-section { background: var(--dark); padding: 65px 0 75px; position: relative; }
.sc-adv-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--cyan); }
.sc-adv-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; text-align: center; }
.sc-adv-heading { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 900; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.sc-adv-heading span { color: var(--cyan); }
.sc-adv-subheading { font-size: .98rem; color: rgba(255, 255, 255, .48); margin-bottom: 45px; font-weight: 500; }
.sc-adv-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.sc-adv-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    padding: 18px 22px;
    transition: all .28s;
    min-width: 240px;
    flex: 1 1 240px;
    max-width: 320px;
}

.sc-adv-card:hover { transform: translateY(-4px); border-color: rgba(249, 204, 2, .35); background: rgba(249, 204, 2, .05); box-shadow: 0 10px 28px rgba(0, 0, 0, .25); }
.sc-adv-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-adv-icon.cyan { background: rgba(249, 204, 2, .12); border: 1px solid rgba(249, 204, 2, .35); }
.sc-adv-icon.white { background: rgba(164, 208, 14, .12); border: 1px solid rgba(164, 208, 14, .35); }
.sc-adv-icon svg { width: 20px; height: 20px; }
.sc-adv-info { text-align: right; }
.sc-adv-name { font-size: .93rem; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.3; transition: color .22s; }
.sc-adv-card:hover .sc-adv-name { color: var(--cyan); }
.sc-adv-verify { font-size: .73rem; color: var(--cyan); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.sc-adv-verify svg { width: 10px; height: 10px; flex-shrink: 0; }

.sc-adv-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(249, 204, 2, .08);
    border: 1px solid rgba(249, 204, 2, .25);
    border-radius: 999px;
    padding: 12px 26px;
    margin-top: 30px;
    color: var(--cyan);
    font-weight: 700;
    font-size: .95rem;
}

.sc-adv-footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(249, 204, 2, .15);
    border: 1px solid rgba(249, 204, 2, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-adv-footer-icon svg { width: 18px; height: 18px; }

/* ━━━ التسعير ━━━ */
.cost-section { background: var(--dark-2); padding: 100px 0; }
.cost-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cost-header { text-align: center; margin-bottom: 70px; }
.cost-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cost-factors { display: flex; flex-direction: column; gap: 20px; }

.cost-factor {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 25px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.cost-factor::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--cyan);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s ease;
}

.cost-factor:hover { background: rgba(249, 204, 2, .06); border-color: rgba(249, 204, 2, .25); transform: translateX(-6px); box-shadow: 0 12px 35px rgba(0, 0, 0, .18); }
.cost-factor:hover::before { transform: scaleY(1); }

.factor-num {
    min-width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.factor-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.3; }
.factor-desc { font-size: .9rem; color: rgba(255, 255, 255, .65); line-height: 1.5; }

.quote-card {
    background: var(--dark);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(249, 204, 2, .2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.quote-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(164, 208, 14, .15);
    border: 2px solid rgba(164, 208, 14, .35);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-card-title { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.quote-card-sub { font-size: 1rem; color: var(--cyan); font-weight: 600; margin-bottom: 20px; }
.quote-card-text { font-size: .95rem; color: rgba(255, 255, 255, .75); line-height: 1.7; margin-bottom: 35px; }
.quote-features { list-style: none; margin-bottom: 35px; text-align: right; }

.quote-features li {
    padding: 9px 0;
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.quote-features li:last-child { border-bottom: none; }

.quote-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9cc02' stroke-width='2.5'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    background: var(--orange);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(164, 208, 14, .3);
}

.quote-btn:hover { background: var(--org-2); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(164, 208, 14, .4); color: #fff; }

/* ━━━ نطاق الخدمة ━━━ */
.areas-section { background: var(--dark-2); padding: 80px 0; }
.areas-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.areas-header { text-align: center; margin-bottom: 50px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 15px; margin-top: 40px; }

.area-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.area-card:hover { transform: translateY(-5px); background: rgba(249, 204, 2, .06); box-shadow: 0 15px 30px rgba(0, 0, 0, .2); }
.area-card:hover::before { transform: scaleX(1); }
.area-card.main-area { background: rgba(249, 204, 2, .08); border: 2px solid rgba(249, 204, 2, .3); }

.area-icon { width: 45px; height: 45px; background: var(--cyan); border-radius: 50%; margin: 0 auto 12px; position: relative; }

.area-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e6a73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.area-name { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.3; }

/* ━━━ خطوات العمل ━━━ */
.howto-section { background: var(--light); padding: 100px 0; }
.howto-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.howto-header { text-align: center; margin-bottom: 80px; }
.howto-header .section-badge { background: var(--dark); color: #fff; }
.howto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }

.howto-grid::before {
    content: '';
    position: absolute;
    top: 58px;
    right: calc(12.5% + 14px);
    left: calc(12.5% + 14px);
    height: 2px;
    background: var(--dark);
    opacity: .15;
    z-index: 0;
}

.howto-card { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }

.howto-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    flex-shrink: 0;
    transition: transform .4s ease;
    background: #fff;
    border: 2px solid rgba(14, 106, 115, .15);
    box-shadow: 0 4px 20px rgba(14, 106, 115, .1);
}

.howto-card:hover .howto-icon { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(14, 106, 115, .2); border-color: var(--dark); }

.howto-num {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    z-index: 3;
}

.howto-card:nth-child(odd) .howto-num { background: var(--dark); }
.howto-card:nth-child(even) .howto-num { background: var(--orange); }
.howto-svg { width: 34px; height: 34px; }
.howto-card:nth-child(odd) .howto-svg { stroke: var(--dark); }
.howto-card:nth-child(even) .howto-svg { stroke: var(--orange); }
.howto-label { font-size: .78rem; font-weight: 700; margin-bottom: 10px; display: block; }
.howto-card:nth-child(odd) .howto-label { color: var(--dark); }
.howto-card:nth-child(even) .howto-label { color: var(--orange); }
.howto-title { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.35; }
.howto-desc { font-size: .9rem; color: #666; line-height: 1.75; }

/* ━━━ آراء العملاء ━━━ */
.testimonials-section { background: var(--light); padding: 80px 0; border-top: 1px solid rgba(14, 106, 115, .1); }
.testimonials-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-header .section-badge { background: var(--dark); color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(14, 106, 115, .1);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--cyan); transform: scaleX(0); transition: transform .3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(14, 106, 115, .12); }
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-header-inner { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.client-info { flex: 1; }
.client-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.client-location { font-size: .85rem; color: #888; }
.stars { display: flex; gap: 2px; margin-right: auto; }

.star {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f9cc02' stroke='%23f9cc02' stroke-width='1'%3E%3Cpolygon points='12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonial-text { font-size: .95rem; line-height: 1.7; color: #555; font-style: italic; }

/* ━━━ الأسئلة الشائعة ━━━ */
.faq-section { background: var(--dark); padding: 100px 0; position: relative; }
.faq-section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--cyan); }
.faq-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

.faq-item:hover { border-color: rgba(249, 204, 2, .35); box-shadow: 0 8px 30px rgba(0, 0, 0, .18); }
.faq-item.open { background: rgba(249, 204, 2, .06); border-color: rgba(249, 204, 2, .3); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    cursor: pointer;
    gap: 20px;
    background: none;
    border: none;
    text-align: right;
    font-family: inherit;
}

.faq-q-text { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.4; flex: 1; }

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(249, 204, 2, .15);
    border: 1px solid rgba(249, 204, 2, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .35s ease;
    position: relative;
}

.faq-icon::before,
.faq-icon::after { content: ''; position: absolute; background: var(--cyan); border-radius: 2px; transition: all .35s ease; }
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item.open .faq-icon { background: var(--cyan); transform: rotate(45deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--dark); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
    padding: 18px 28px 24px;
    font-size: .97rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ━━━ التواصل ━━━ */
.contact-section { background: var(--dark-2); padding: 80px 0; }
.contact-container { max-width: 900px; margin: 0 auto; padding: 0 20px; text-align: center; }
.contact-header { margin-bottom: 40px; }
.contact-info-row { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 1.1rem; font-weight: 600; }
.info-icon { width: 40px; height: 40px; background: var(--cyan); border-radius: 50%; position: relative; flex-shrink: 0; }

.info-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e6a73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.contact-image { width: 100%; height: 230px; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 40px rgba(0, 0, 0, .25); transition: transform .3s ease; }
.contact-image:hover { transform: scale(1.03); }
.contact-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.nk-cta-wa,
.nk-cta-ph {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all .3s ease;
    white-space: nowrap;
    line-height: 1;
}

.nk-cta-wa { background: var(--orange); color: #fff; box-shadow: 0 8px 28px rgba(164, 208, 14, .3); }
.nk-cta-wa:hover { background: var(--org-2); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(164, 208, 14, .42); color: #fff; }
.nk-cta-ph { background: rgba(255, 255, 255, .08); color: #fff; border: 2px solid rgba(255, 255, 255, .25); }
.nk-cta-ph:hover { background: #fff; color: var(--dark); border-color: #fff; transform: translateY(-2px); }
.nk-cta-wa svg,
.nk-cta-ph svg { flex-shrink: 0; }

/* ━━━ الاستجابة ━━━ */
@media (max-width: 1024px) {
    .sc-srv-grid { grid-template-columns: 1fr; border-radius: 12px; }
    .sc-srv-image { min-height: 300px; }
    .sc-srv-image img { height: 300px; }
    .sc-srv-left,
    .sc-srv-right { padding: 42px 32px; }
    .cost-layout { grid-template-columns: 1fr; gap: 40px; }
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }
    .howto-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .howto-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .stats-row { gap: 30px; }
    .areas-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .images-grid { grid-template-columns: 1fr; }
    .contact-info-row { gap: 20px; }
    .sc-adv-grid,
    .sc-tech-cards-grid { flex-direction: column; align-items: center; }
    .sc-adv-card,
    .sc-tech-card { min-width: unset; max-width: unset; width: 100%; flex: none; }
}

@media (max-width: 480px) {
    .stats-row { flex-direction: column; gap: 20px; }
    .achievements-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .howto-grid { grid-template-columns: 1fr; gap: 30px; }
    .quote-card { padding: 35px 25px; }
    .faq-q { padding: 18px 20px; }
    .faq-a-inner { padding: 14px 20px 18px; }
    .contact-buttons { flex-direction: column; align-items: center; }
}

/* ━━━ معرض الأعمال ━━━ */
.gal-section { background: var(--light); padding: 80px 0; border-top: 1px solid rgba(14, 106, 115, .08); }
.gal-header { text-align: center; margin-bottom: 45px; }
.gal-header .section-badge { background: var(--dark); color: #fff; }

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
    gap: 16px;
}

.gal-item {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-2);
    box-shadow: 0 8px 26px rgba(14, 106, 115, .12);
}

.gal-item--lead { grid-column: span 2; grid-row: span 2; }

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.gal-item:hover img { transform: scale(1.05); }

.gal-item figcaption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 26px 16px 14px;
    background: linear-gradient(180deg, rgba(8, 65, 73, 0), rgba(8, 65, 73, .88));
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 560px) {
    .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gal-item--lead { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   نمط الخلفيات المتناوب — فاتح وداكن بالتبادل
   الترتيب: هيرو داكن · الأرقام فاتح · الخدمات داكن · المعدات فاتح ·
   المميزات داكن · التسعير فاتح · الأحياء داكن · الخطوات فاتح ·
   المعرض داكن · الآراء فاتح · الأسئلة داكن · التواصل فاتح
   ========================================================================== */
body.scheme-alt {
    --gold-ink: #9a7a00;
    --lime-ink: #6f8f00;
    --paper: #ffffff;
    --paper-2: #f2f6f7;
    --line: rgba(14, 106, 115, .12);
    --muted: #5f7173;
}

/* ــــ قسم الأرقام والاعتمادات (فاتح) ــــ */
body.scheme-alt .credentials-section { background: var(--paper); }
body.scheme-alt .credentials-header .section-badge { background: var(--dark); color: #fff; }
body.scheme-alt .credentials-section .section-title { color: var(--dark); }
body.scheme-alt .credentials-section .title-highlight { color: var(--gold-ink); }
body.scheme-alt .credentials-section .section-description { color: var(--muted); }
body.scheme-alt .stats-row .stat-number { color: var(--dark); }
body.scheme-alt .stats-row .stat-item { color: var(--ink); }
body.scheme-alt .stats-row .stat-label { color: var(--muted); }

body.scheme-alt .achievement-card {
    background: var(--paper-2);
    border-color: var(--line);
}

body.scheme-alt .achievement-card:hover {
    background: #fff;
    box-shadow: 0 14px 34px rgba(14, 106, 115, .12);
}

body.scheme-alt .achievement-icon {
    background: rgba(249, 204, 2, .22);
    border-color: rgba(14, 106, 115, .22);
}

body.scheme-alt .achievement-title { color: var(--dark); }
body.scheme-alt .achievement-sub { color: var(--muted); }

/* ــــ قسم المعدات (فاتح) ــــ */
body.scheme-alt .sc-tech-section { background: var(--paper-2); }
body.scheme-alt .sc-tech-section::after { background: var(--dark); opacity: .12; }

body.scheme-alt .sc-tech-eyebrow {
    background: rgba(14, 106, 115, .08);
    border-color: rgba(14, 106, 115, .25);
    color: var(--dark);
}

body.scheme-alt .sc-tech-eyebrow::before { background: var(--dark); }
body.scheme-alt .sc-tech-heading { color: var(--dark); }
body.scheme-alt .sc-tech-heading span { color: var(--gold-ink); }
body.scheme-alt .sc-tech-subheading { color: var(--muted); }

body.scheme-alt .sc-tech-card {
    background: var(--paper);
    border-color: var(--line);
}

body.scheme-alt .sc-tech-card:hover {
    background: #fff;
    border-color: rgba(249, 204, 2, .6);
    box-shadow: 0 12px 30px rgba(14, 106, 115, .12);
}

body.scheme-alt .sc-tech-dot-icon.cyan { background: rgba(249, 204, 2, .25); border-color: rgba(249, 204, 2, .6); }
body.scheme-alt .sc-tech-dot-icon.soft { background: rgba(14, 106, 115, .07); border-color: rgba(14, 106, 115, .18); }
body.scheme-alt .sc-tech-name { color: var(--dark); }
body.scheme-alt .sc-tech-card:hover .sc-tech-name { color: var(--gold-ink); }
body.scheme-alt .sc-tech-detail { color: var(--lime-ink); opacity: 1; }

body.scheme-alt .sc-tech-partner-badge {
    background: rgba(164, 208, 14, .16);
    border-color: rgba(164, 208, 14, .5);
    color: var(--lime-ink);
}

body.scheme-alt .sc-tech-badge-icon { background: rgba(164, 208, 14, .2); border-color: rgba(164, 208, 14, .45); }

/* ــــ قسم التسعير (فاتح) ــــ */
body.scheme-alt .cost-section { background: var(--paper); }
body.scheme-alt .cost-header .section-badge { background: var(--dark); color: #fff; }
body.scheme-alt .cost-section .section-title { color: var(--dark); }
body.scheme-alt .cost-section .title-highlight { color: var(--gold-ink); }
body.scheme-alt .cost-section .section-description { color: var(--muted); }

body.scheme-alt .cost-factor {
    background: var(--paper-2);
    border-color: var(--line);
}

body.scheme-alt .cost-factor:hover {
    background: #fff;
    border-color: rgba(249, 204, 2, .45);
    box-shadow: 0 12px 32px rgba(14, 106, 115, .12);
}

body.scheme-alt .factor-title { color: var(--dark); }
body.scheme-alt .factor-desc { color: var(--muted); }

/* ــــ معرض الأعمال (داكن) ــــ */
body.scheme-alt .gal-section { background: var(--dark-2); border-top-color: rgba(255, 255, 255, .08); }
body.scheme-alt .gal-header .section-badge { background: var(--cyan); color: var(--dark); }
body.scheme-alt .gal-section .section-title.dark { color: #fff; }
body.scheme-alt .gal-section .section-title.dark .title-highlight { color: var(--cyan); }
body.scheme-alt .gal-section .section-description.dark { color: rgba(255, 255, 255, .7); }
body.scheme-alt .gal-item { box-shadow: 0 12px 34px rgba(0, 0, 0, .28); }

/* ــــ قسم التواصل (فاتح) ــــ */
body.scheme-alt .contact-section { background: var(--paper-2); }
body.scheme-alt .contact-header .section-badge { background: var(--dark); color: #fff; }
body.scheme-alt .contact-section .section-title { color: var(--dark); }
body.scheme-alt .contact-section .title-highlight { color: var(--gold-ink); }
body.scheme-alt .contact-section .section-description { color: var(--muted); }
body.scheme-alt .contact-section .info-item { color: var(--dark); }

body.scheme-alt .contact-section .nk-cta-ph {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

body.scheme-alt .contact-section .nk-cta-ph:hover {
    background: var(--dark-2);
    color: #fff;
    border-color: var(--dark-2);
}

/* فواصل ناعمة بين المناطق الفاتحة والداكنة */
body.scheme-alt .sc-srv-section,
body.scheme-alt .sc-adv-section,
body.scheme-alt .areas-section,
body.scheme-alt .faq-section { position: relative; }

body.scheme-alt .credentials-section,
body.scheme-alt .cost-section { border-top: 1px solid var(--line); }

/* ━━━ السطر القيادي تحت العنوان الرئيسي ━━━ */
.nk-hero__lead {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .55rem;
    margin: -.4rem 0 1.3rem;
    animation: nk-fi .8s .22s ease both;
}

.nk-hero__lead-kw {
    font-size: clamp(1.15rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--cyan);
    line-height: 1.35;
}

.nk-hero__lead-tail {
    font-size: clamp(.85rem, 1.3vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

/* ━━━ مقدمة الصفحة الرئيسية ━━━ */
.home-intro { background: var(--dark); padding: 56px 0 64px; }
.home-intro__wrap { max-width: 900px; }

.home-intro__title {
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(249, 204, 2, .35);
}

.home-intro p {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 2.05;
    margin-bottom: 15px;
}

.home-intro p:last-child { margin-bottom: 0; }

body.scheme-alt .home-intro { background: var(--paper); }
body.scheme-alt .home-intro__title { color: var(--dark); border-bottom-color: rgba(14, 106, 115, .2); }
body.scheme-alt .home-intro p { color: var(--muted); }
