/* ==========================================================================
   مخدوم | ستايل الصفحة الرئيسية الجديدة
   Efadh - 08/2026  —  RTL / Arabic first
   ========================================================================== */

@font-face {
    font-family: 'BahijBold';
    src: url('../fonts/Bahij_TheSansArabicBold/Bahij_TheSansArabicBold.woff2') format('woff2'),
         url('../fonts/Bahij_TheSansArabicBold/Bahij_TheSansArabicBold.woff') format('woff'),
         url('../fonts/Bahij_TheSansArabicBold/Bahij_TheSansArabicBold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'BahijPlain';
    src: url('../fonts/Bahij_TheSansArabicPlain/Bahij_TheSansArabicPlain.woff2') format('woff2'),
         url('../fonts/Bahij_TheSansArabicPlain/Bahij_TheSansArabicPlain.woff') format('woff'),
         url('../fonts/Bahij_TheSansArabicPlain/Bahij_TheSansArabicPlain.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

:root {
    --navy: #1E2A5E;
    --navy-600: #2C3A78;
    --navy-800: #16204a;
    --navy-900: #0E1533;
    --peri: #7C93C3;
    --peri-light: #AFC0E2;
    --sand: #E1D7B7;
    --sand-light: #F5F0E2;
    --cream: #FAF8F2;

    --ink: #131A36;
    --body: #4E5673;
    --muted: #8790AB;
    --line: #E7EAF3;
    --bg: #FFFFFF;
    --bg-soft: #F6F8FC;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --radius-pill: 100px;

    --shadow-xs: 0 2px 8px rgba(30, 42, 94, .06);
    --shadow-sm: 0 8px 24px rgba(30, 42, 94, .08);
    --shadow: 0 18px 45px rgba(30, 42, 94, .10);
    --shadow-lg: 0 30px 70px rgba(30, 42, 94, .16);

    --container: 1200px;
    --gap: 28px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* -------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    font-family: 'BahijPlain', 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--body);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'BahijBold', 'BahijPlain', 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    color: var(--ink);
    margin: 0 0 14px;
    line-height: 1.45;
    font-weight: 700;
}

p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--navy); color: #fff; }

/* -------------------------------------------------- layout */
.ld-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.ld-section { padding: 96px 0; position: relative; }
.ld-section--tight { padding: 70px 0; }
.ld-section--soft { background: var(--bg-soft); }
.ld-section--cream { background: var(--cream); }

.ld-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.ld-head--start { margin-inline: 0; text-align: right; }

.ld-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'BahijBold', sans-serif;
    font-size: 13px;
    letter-spacing: .3px;
    color: var(--navy);
    background: rgba(124, 147, 195, .16);
    border: 1px solid rgba(124, 147, 195, .3);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}
.ld-tag i { font-size: 11px; color: var(--peri); }
.ld-tag--light { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .25); color: #fff; }
.ld-tag--light i { color: var(--sand); }

.ld-title {
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.35;
    margin-bottom: 14px;
}
.ld-title span { color: var(--peri); }

.ld-sub { font-size: 17px; color: var(--muted); margin: 0; }

.ld-grid { display: grid; gap: var(--gap); }
.ld-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ld-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ld-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ld-grid--6 { grid-template-columns: repeat(6, 1fr); }

/* -------------------------------------------------- buttons */
.ld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'BahijBold', sans-serif;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    transition: all .3s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
}
.ld-btn i { font-size: 14px; }

.ld-btn--primary { background: var(--navy); color: #fff; box-shadow: 0 12px 26px rgba(30, 42, 94, .28); }
.ld-btn--primary:hover { background: var(--navy-600); color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(30, 42, 94, .34); }

.ld-btn--sand { background: var(--sand); color: var(--navy); box-shadow: 0 12px 26px rgba(225, 215, 183, .5); }
.ld-btn--sand:hover { background: #d5c9a2; color: var(--navy); transform: translateY(-3px); }

.ld-btn--ghost { background: transparent; color: var(--navy); border-color: rgba(30, 42, 94, .22); }
.ld-btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.ld-btn--light { background: #fff; color: var(--navy); }
.ld-btn--light:hover { transform: translateY(-3px); color: var(--navy); }

.ld-btn--outline-light { border-color: rgba(255, 255, 255, .4); color: #fff; }
.ld-btn--outline-light:hover { background: #fff; color: var(--navy); }

.ld-btn--sm { padding: 11px 24px; font-size: 14px; }
.ld-btn--block { width: 100%; }

.ld-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'BahijBold', sans-serif;
    font-size: 15px;
    color: var(--navy);
}
.ld-link i { transition: transform .3s var(--ease); font-size: 13px; }
.ld-link:hover { color: var(--peri); }
.ld-link:hover i { transform: translateX(-5px); }

/* -------------------------------------------------- topbar */
.ld-topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .78);
    font-size: 13.5px;
    padding: 9px 0;
}
.ld-topbar .ld-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ld-topbar__list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ld-topbar__list a, .ld-topbar__list span { display: inline-flex; align-items: center; gap: 8px; }
.ld-topbar i { color: var(--sand); font-size: 12px; }
.ld-topbar a:hover { color: #fff; }
.ld-topbar__social { display: flex; gap: 10px; }
.ld-topbar__social a {
    width: 28px; height: 28px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    transition: all .3s var(--ease);
}
.ld-topbar__social a:hover { background: var(--sand); }
.ld-topbar__social a:hover i { color: var(--navy); }

/* -------------------------------------------------- header */
.ld-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.ld-header.is-stuck { box-shadow: var(--shadow-sm); }
.ld-header .ld-container { display: flex; align-items: center; gap: 24px; height: 78px; }

.ld-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ld-logo img { height: 46px; width: auto; object-fit: contain; }
.ld-logo__text { font-family: 'BahijBold', sans-serif; font-size: 20px; color: var(--navy); line-height: 1.2; }

.ld-nav { margin-inline-start: auto; }
.ld-nav__list { display: flex; align-items: center; gap: 4px; }
.ld-nav__list > li > a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: var(--ink);
    border-radius: var(--radius-pill);
    font-family: 'BahijBold', sans-serif;
    transition: all .25s var(--ease);
}
.ld-nav__list > li > a:hover,
.ld-nav__list > li > a.is-active { color: var(--navy); background: rgba(124, 147, 195, .16); }

.ld-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.ld-burger {
    display: none;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    font-size: 18px;
    place-items: center;
}

/* mobile drawer */
.ld-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    z-index: 1001;
    padding: 26px 22px;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform .38s var(--ease);
    box-shadow: 20px 0 60px rgba(19, 26, 54, .18);
}
.ld-drawer.is-open { transform: translateX(0); }
.ld-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.ld-drawer__close { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-soft); color: var(--ink); display: grid; place-items: center; font-size: 16px; }
.ld-drawer__list li a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    font-family: 'BahijBold', sans-serif;
    color: var(--ink);
    transition: all .25s var(--ease);
}
.ld-drawer__list li a:hover { background: var(--bg-soft); color: var(--navy); }
.ld-drawer__list li a i { color: var(--peri); font-size: 13px; width: 18px; }
.ld-drawer .ld-btn { margin-top: 22px; }

.ld-overlay {
    position: fixed; inset: 0;
    background: rgba(14, 21, 51, .55);
    opacity: 0; visibility: hidden;
    transition: all .35s var(--ease);
    z-index: 1000;
    backdrop-filter: blur(3px);
}
.ld-overlay.is-open { opacity: 1; visibility: visible; }

/* -------------------------------------------------- hero */
.ld-hero {
    position: relative;
    padding: 90px 0 120px;
    background:
        radial-gradient(1000px 520px at 88% -10%, rgba(124, 147, 195, .28), transparent 62%),
        radial-gradient(760px 480px at 5% 110%, rgba(225, 215, 183, .40), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    overflow: hidden;
}
.ld-hero::after {
    content: '';
    position: absolute;
    inset-block-start: -140px;
    inset-inline-start: -120px;
    width: 420px; height: 420px;
    border: 44px solid rgba(124, 147, 195, .08);
    border-radius: 50%;
}
.ld-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
}
.ld-hero__title {
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: 1.28;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}
.ld-hero__title span {
    position: relative;
    color: var(--navy);
    white-space: nowrap;
    padding: 0 6px;
    background-image: linear-gradient(transparent 58%, rgba(225, 215, 183, .95) 58%, rgba(225, 215, 183, .95) 92%, transparent 92%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: ldHighlight 1s var(--ease) .5s forwards;
}
@keyframes ldHighlight { to { background-size: 100% 100%; } }
.ld-hero__desc { font-size: 18px; max-width: 560px; margin-bottom: 32px; }
.ld-hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ld-hero__note { display: flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 14px; color: var(--muted); }
.ld-hero__note i { color: #2E9E6B; }

.ld-hero__media { position: relative; }
.ld-hero__media img { width: 100%; filter: drop-shadow(0 30px 60px rgba(30, 42, 94, .18)); }

.ld-hero__slider { position: relative; }
.ld-hero__slide { display: none; }
.ld-hero__slide.is-active { display: block; animation: ldFade .7s var(--ease); }
.ld-hero__caption {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
}
.ld-hero__caption h4 { font-size: 16px; margin-bottom: 3px; }
.ld-hero__caption p { font-size: 13.5px; margin: 0; color: var(--muted); }
.ld-hero__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.ld-hero__dots button {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(30, 42, 94, .2);
    transition: all .3s var(--ease);
}
.ld-hero__dots button.is-active { width: 28px; border-radius: 6px; background: var(--navy); }

@keyframes ldFade { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }

/* -------------------------------------------------- stats */
.ld-stats { margin-top: -70px; position: relative; z-index: 5; }
.ld-stats__box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 26px 20px;
}
.ld-stat { text-align: center; position: relative; padding: 0 12px; }
.ld-stat + .ld-stat::after {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 12%;
    height: 76%;
    width: 1px;
    background: var(--line);
}
.ld-stat__icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: rgba(124, 147, 195, .15);
    color: var(--navy);
    font-size: 19px;
}
.ld-stat__num {
    font-family: 'BahijBold', sans-serif;
    font-size: 34px;
    color: var(--navy);
    line-height: 1.2;
    display: flex; align-items: baseline; justify-content: center; gap: 2px;
    direction: ltr;
}
.ld-stat__num small { font-size: 20px; color: var(--peri); }
.ld-stat__label { font-size: 14.5px; color: var(--muted); margin-top: 4px; }

/* -------------------------------------------------- about */
.ld-about__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.ld-about__media { position: relative; }
.ld-about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.ld-about__badge {
    position: absolute;
    inset-block-end: -26px;
    inset-inline-start: -22px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px 26px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
}
.ld-about__badge i { font-size: 26px; color: var(--sand); }
.ld-about__badge strong { display: block; font-family: 'BahijBold', sans-serif; font-size: 19px; }
.ld-about__badge span { font-size: 13px; opacity: .8; }

.ld-points { display: grid; gap: 14px; margin: 26px 0 32px; }
.ld-points li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; color: var(--ink); }
.ld-points li i {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(46, 158, 107, .12);
    color: #2E9E6B;
    display: grid; place-items: center;
    font-size: 11px;
    margin-top: 5px;
}

/* -------------------------------------------------- services */
.ld-service {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.ld-service::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--peri));
    transform: scaleX(0);
    transition: transform .35s var(--ease);
}
.ld-service:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.ld-service:hover::before { transform: scaleX(1); }
.ld-service__img {
    width: 76px; height: 76px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: var(--bg-soft);
    display: grid; place-items: center;
    overflow: hidden;
    transition: all .35s var(--ease);
}
.ld-service__img img { width: 100%; height: 100%; object-fit: cover; }
.ld-service:hover .ld-service__img { transform: scale(1.07) rotate(-3deg); }
.ld-service h4 { font-size: 16px; margin: 0; }

/* -------------------------------------------------- steps */
.ld-steps { counter-reset: step; position: relative; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.ld-steps::before {
    content: '';
    position: absolute;
    inset-block-start: 46px;
    inset-inline: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--peri) 0 10px, transparent 10px 20px);
    opacity: .5;
}
.ld-step { text-align: center; position: relative; z-index: 2; }
.ld-step__circle {
    width: 92px; height: 92px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    display: grid; place-items: center;
    font-size: 30px;
    color: var(--navy);
    position: relative;
    transition: all .35s var(--ease);
}
.ld-step:hover .ld-step__circle { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-6px); }
.ld-step__num {
    position: absolute;
    inset-block-start: -6px;
    inset-inline-end: -6px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--sand);
    color: var(--navy);
    font-family: 'BahijBold', sans-serif;
    font-size: 14px;
    display: grid; place-items: center;
    direction: ltr;
}
.ld-step h4 { font-size: 18px; }
.ld-step p { font-size: 15px; margin: 0; }

/* -------------------------------------------------- features */
.ld-feature {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--line);
    transition: all .35s var(--ease);
    height: 100%;
}
.ld-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.ld-feature__icon {
    width: 62px; height: 62px;
    border-radius: 20px;
    display: grid; place-items: center;
    font-size: 23px;
    background: linear-gradient(135deg, var(--navy), var(--navy-600));
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 12px 24px rgba(30, 42, 94, .22);
}
.ld-feature:nth-child(2n) .ld-feature__icon { background: linear-gradient(135deg, var(--peri), #5D74A8); box-shadow: 0 12px 24px rgba(124, 147, 195, .3); }
.ld-feature:nth-child(3n) .ld-feature__icon { background: linear-gradient(135deg, var(--sand), #C9B98A); color: var(--navy); box-shadow: 0 12px 24px rgba(225, 215, 183, .5); }
.ld-feature h4 { font-size: 18.5px; }
.ld-feature p { font-size: 15px; margin: 0; }

/* -------------------------------------------------- vision */
.ld-vision-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.ld-vision-card::after {
    content: '\f6a3';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    inset-block-start: -10px;
    inset-inline-start: -10px;
    font-size: 120px;
    color: rgba(124, 147, 195, .07);
}
.ld-vision-card--alt::after { content: '\f0e0'; }
.ld-vision-card__icon {
    width: 58px; height: 58px;
    border-radius: 18px;
    background: rgba(124, 147, 195, .16);
    color: var(--navy);
    display: grid; place-items: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.ld-vision-card h3 { font-size: 22px; }
.ld-vision-card p { margin: 0; font-size: 15.5px; }

/* -------------------------------------------------- screens */
.ld-screens { background: linear-gradient(160deg, var(--navy-900), var(--navy) 55%, var(--navy-600)); color: #fff; overflow: hidden; }
.ld-screens .ld-title, .ld-screens h1, .ld-screens h2, .ld-screens h3 { color: #fff; }
.ld-screens .ld-sub { color: rgba(255, 255, 255, .68); }
.ld-screens__track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding: 14px 4px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.ld-screens__track::-webkit-scrollbar { height: 6px; }
.ld-screens__track::-webkit-scrollbar-track { background: rgba(255, 255, 255, .1); border-radius: 10px; }
.ld-screens__track::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 10px; }
.ld-shot {
    flex: 0 0 236px;
    scroll-snap-align: center;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .06);
    transition: transform .35s var(--ease);
}
.ld-shot:hover { transform: translateY(-10px); }
.ld-shot img { width: 100%; aspect-ratio: 9/19; object-fit: cover; }
.ld-shot__label { text-align: center; font-size: 13.5px; padding: 10px 6px; color: rgba(255, 255, 255, .7); }

/* -------------------------------------------------- article cards (news + blog) */
.ld-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .35s var(--ease);
}
.ld-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.ld-card__media { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--bg-soft); }
.ld-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ld-card:hover .ld-card__media img { transform: scale(1.06); }
.ld-card__chip {
    position: absolute;
    inset-block-start: 14px;
    inset-inline-start: 14px;
    background: rgba(255, 255, 255, .95);
    color: var(--navy);
    font-family: 'BahijBold', sans-serif;
    font-size: 12.5px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-xs);
}
.ld-card__body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.ld-card__meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; }
.ld-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.ld-card__meta i { color: var(--peri); font-size: 12px; }
.ld-card h3 { font-size: 18.5px; line-height: 1.55; margin-bottom: 10px; }
.ld-card h3 a:hover { color: var(--navy); }
.ld-card p { font-size: 14.8px; margin-bottom: 18px; }
.ld-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.ld-card__author { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); }
.ld-card__author img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }

/* wide featured card */
.ld-card--wide { flex-direction: row; }
.ld-card--wide .ld-card__media { flex: 0 0 46%; aspect-ratio: auto; }
.ld-card--wide .ld-card__body { padding: 34px 30px; justify-content: center; }
.ld-card--wide h3 { font-size: 26px; }

/* -------------------------------------------------- testimonials */
.ld-quote {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--line);
    position: relative;
    height: 100%;
    transition: all .35s var(--ease);
}
.ld-quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.ld-quote__mark { font-size: 34px; color: rgba(124, 147, 195, .3); margin-bottom: 12px; }
.ld-quote p { font-size: 15.5px; color: var(--ink); margin-bottom: 22px; }
.ld-quote__person { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.ld-quote__person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.ld-quote__person strong { display: block; font-family: 'BahijBold', sans-serif; font-size: 15.5px; color: var(--ink); }
.ld-quote__person span { font-size: 13px; color: var(--muted); }
.ld-stars { color: #F0B429; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; direction: ltr; }

/* -------------------------------------------------- download */
.ld-download {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-600) 60%, #4A5A9E 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ld-download::before {
    content: '';
    position: absolute;
    inset-block-start: -160px;
    inset-inline-end: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(225, 215, 183, .12);
}
.ld-download__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .9fr; gap: 50px; align-items: center; }
.ld-download h2 { color: #fff; font-size: clamp(26px, 3.2vw, 40px); }
.ld-download p { color: rgba(255, 255, 255, .76); font-size: 17px; max-width: 500px; }
.ld-stores { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.ld-store {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    padding: 12px 24px;
    color: #fff;
    transition: all .3s var(--ease);
}
.ld-store:hover { background: #fff; color: var(--navy); transform: translateY(-4px); }
.ld-store i { font-size: 28px; }
.ld-store span { display: block; line-height: 1.35; }
.ld-store small { font-size: 11.5px; opacity: .75; display: block; }
.ld-store b { font-family: 'BahijBold', sans-serif; font-size: 16px; }
.ld-download__media img { max-width: 100%; margin-inline-start: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .3)); }

/* -------------------------------------------------- partners */
.ld-partners__marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ld-partners__track { display: flex; gap: 24px; width: max-content; animation: ldMarquee 34s linear infinite; }
.ld-partners__marquee:hover .ld-partners__track { animation-play-state: paused; }
.ld-partner {
    flex: 0 0 190px;
    height: 96px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    display: grid; place-items: center;
    padding: 16px;
    filter: grayscale(1);
    opacity: .65;
    transition: all .35s var(--ease);
}
.ld-partner:hover { filter: none; opacity: 1; box-shadow: var(--shadow-sm); }
.ld-partner img { max-height: 100%; width: auto; object-fit: contain; }
@keyframes ldMarquee { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* -------------------------------------------------- faq */
.ld-faq { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.ld-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .3s var(--ease); }
.ld-faq__item.is-open { border-color: var(--peri); box-shadow: var(--shadow-sm); }
.ld-faq__q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 26px;
    text-align: right;
    font-family: 'BahijBold', sans-serif;
    font-size: 17px;
    color: var(--ink);
}
.ld-faq__q i {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(124, 147, 195, .16);
    color: var(--navy);
    display: grid; place-items: center;
    font-size: 12px;
    transition: all .3s var(--ease);
}
.ld-faq__item.is-open .ld-faq__q i { background: var(--navy); color: #fff; transform: rotate(180deg); }
.ld-faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.ld-faq__a > div { padding: 0 26px 24px; color: var(--body); font-size: 15.5px; }

/* -------------------------------------------------- cta band */
.ld-cta__box {
    background: linear-gradient(120deg, var(--sand-light), #fff 60%);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 34px;
    position: relative;
    overflow: hidden;
}
.ld-cta__box::after {
    content: '';
    position: absolute;
    inset-block-end: -110px;
    inset-inline-start: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(124, 147, 195, .14);
}
.ld-cta__box h3 { font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 8px; }
.ld-cta__box p { margin: 0; font-size: 16px; max-width: 620px; }

/* -------------------------------------------------- footer */
.ld-footer { background: var(--navy-900); color: rgba(255, 255, 255, .68); padding-top: 76px; }
.ld-footer h4 { color: #fff; font-size: 17px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.ld-footer h4::after { content: ''; position: absolute; inset-block-end: 0; inset-inline-start: 0; width: 38px; height: 3px; border-radius: 3px; background: var(--sand); }
.ld-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 56px; }
.ld-footer__logo img { height: 54px; margin-bottom: 18px; }
.ld-footer p { font-size: 14.8px; line-height: 1.95; }
.ld-footer__links li { margin-bottom: 12px; }
.ld-footer__links a { font-size: 14.8px; display: inline-flex; align-items: center; gap: 9px; }
.ld-footer__links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--peri); transition: all .3s var(--ease); }
.ld-footer__links a:hover { color: #fff; }
.ld-footer__links a:hover::before { background: var(--sand); width: 14px; border-radius: 3px; }
.ld-footer__contact li { display: flex; gap: 13px; margin-bottom: 16px; font-size: 14.8px; }
.ld-footer__contact i { color: var(--sand); font-size: 15px; margin-top: 6px; }
.ld-footer__social { display: flex; gap: 11px; margin-top: 22px; }
.ld-footer__social a {
    width: 40px; height: 40px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .08);
    display: grid; place-items: center;
    color: #fff;
    transition: all .3s var(--ease);
}
.ld-footer__social a:hover { background: var(--sand); color: var(--navy); transform: translateY(-4px); }
.ld-footer__stores { display: flex; flex-direction: column; gap: 12px; }
.ld-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 14px;
}
.ld-footer__bottom a:hover { color: var(--sand); }
.ld-footer__maroof img { height: 44px; }

/* -------------------------------------------------- inner page hero */
.ld-page-hero {
    background:
        radial-gradient(700px 340px at 85% 0%, rgba(124, 147, 195, .3), transparent 60%),
        linear-gradient(140deg, var(--navy-900), var(--navy));
    color: #fff;
    padding: 66px 0;
    position: relative;
    overflow: hidden;
}
.ld-page-hero::after {
    content: '';
    position: absolute;
    inset-block-end: -160px;
    inset-inline-start: -80px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(225, 215, 183, .1);
}
.ld-page-hero__inner { position: relative; z-index: 2; }
.ld-page-hero h1 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 10px; }
.ld-page-hero p { color: rgba(255, 255, 255, .72); margin: 0; max-width: 680px; }
.ld-crumbs { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, .6); margin-bottom: 16px; flex-wrap: wrap; }
.ld-crumbs a:hover { color: var(--sand); }
.ld-crumbs i { font-size: 10px; }

/* -------------------------------------------------- listing tools */
.ld-tools { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.ld-search { position: relative; min-width: 280px; flex: 1; max-width: 400px; }
.ld-search input {
    width: 100%;
    padding: 14px 48px 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: #fff;
    outline: none;
    transition: all .3s var(--ease);
}
.ld-search input:focus { border-color: var(--peri); box-shadow: 0 0 0 4px rgba(124, 147, 195, .14); }
.ld-search button { position: absolute; inset-inline-end: 6px; inset-block-start: 5px; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; }
.ld-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.ld-chip {
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--line);
    font-size: 14px;
    font-family: 'BahijBold', sans-serif;
    color: var(--body);
    transition: all .3s var(--ease);
}
.ld-chip:hover { border-color: var(--peri); color: var(--navy); }
.ld-chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* -------------------------------------------------- article page */
.ld-article__grid { display: grid; grid-template-columns: 1fr 330px; gap: 48px; align-items: start; }
.ld-article__media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.ld-article__media img { width: 100%; }
.ld-article__body { font-size: 17px; line-height: 2.1; color: var(--body); }
.ld-article__body h2 { font-size: 26px; margin: 36px 0 14px; }
.ld-article__body h3 { font-size: 21px; margin: 30px 0 12px; }
.ld-article__body ul, .ld-article__body ol { padding-inline-start: 22px; margin: 0 0 18px; }
.ld-article__body ul li { list-style: none; position: relative; padding-inline-start: 22px; margin-bottom: 10px; }
.ld-article__body ul li::before { content: ''; position: absolute; inset-inline-start: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--peri); }
.ld-article__body ol { list-style: decimal; }
.ld-article__body ol li { margin-bottom: 10px; }
.ld-article__body img { border-radius: var(--radius); margin: 22px 0; }
.ld-article__body blockquote {
    margin: 26px 0;
    padding: 22px 26px;
    background: var(--bg-soft);
    border-inline-start: 4px solid var(--peri);
    border-radius: var(--radius-sm);
    font-size: 17px;
    color: var(--ink);
}
.ld-article__body a { color: var(--navy); text-decoration: underline; }
.ld-article__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-bottom: 22px; margin-bottom: 26px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.ld-article__meta span { display: inline-flex; align-items: center; gap: 7px; }
.ld-article__meta i { color: var(--peri); }
.ld-tags { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 34px; }
.ld-tags a, .ld-tags span { background: var(--bg-soft); border-radius: var(--radius-pill); padding: 7px 16px; font-size: 13.5px; color: var(--body); }

.ld-share { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.ld-share span { font-family: 'BahijBold', sans-serif; color: var(--ink); font-size: 14.5px; }
.ld-share a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); transition: all .3s var(--ease); }
.ld-share a:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

.ld-side { display: grid; gap: 24px; position: sticky; top: 100px; }
.ld-side__box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.ld-side__box h4 { font-size: 17px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.ld-side__item { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.ld-side__item:last-child { border-bottom: 0; padding-bottom: 0; }
.ld-side__item img { width: 68px; height: 60px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.ld-side__item h5 { font-size: 14.5px; margin: 0 0 4px; line-height: 1.6; font-family: 'BahijBold', sans-serif; color: var(--ink); }
.ld-side__item span { font-size: 12.5px; color: var(--muted); }
.ld-side__cta { background: linear-gradient(150deg, var(--navy), var(--navy-600)); color: #fff; text-align: center; }
.ld-side__cta h4 { color: #fff; border-color: rgba(255, 255, 255, .18); }
.ld-side__cta p { color: rgba(255, 255, 255, .75); font-size: 14.5px; }

/* -------------------------------------------------- pagination */
.ld-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.ld-pagination .page-item .page-link,
.ld-pagination a, .ld-pagination span {
    min-width: 44px; height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--body);
    font-family: 'BahijBold', sans-serif;
    font-size: 14.5px;
    transition: all .3s var(--ease);
}
.ld-pagination a:hover { border-color: var(--peri); color: var(--navy); }
.ld-pagination .active span, .ld-pagination .page-item.active .page-link { background: var(--navy); border-color: var(--navy); color: #fff; }
.ld-pagination .disabled span { opacity: .45; }
.ld-pagination ul { display: flex; gap: 8px; flex-wrap: wrap; }
.ld-pagination .sr-only, .ld-pagination svg { display: none; }
.ld-pagination .page-item { list-style: none; }

/* -------------------------------------------------- empty state */
.ld-empty { text-align: center; padding: 70px 20px; }
.ld-empty i { font-size: 54px; color: var(--peri); opacity: .5; margin-bottom: 18px; }
.ld-empty h3 { font-size: 21px; }
.ld-empty p { color: var(--muted); margin: 0; }

/* -------------------------------------------------- floating buttons */
.ld-fab { position: fixed; inset-inline-start: 22px; inset-block-end: 22px; z-index: 800; display: grid; gap: 12px; }
.ld-fab a, .ld-fab button {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #fff;
    font-size: 19px;
    box-shadow: var(--shadow);
    transition: all .3s var(--ease);
}
.ld-fab__wa { background: #25D366; }
.ld-fab__top { background: var(--navy); opacity: 0; visibility: hidden; }
.ld-fab__top.is-visible { opacity: 1; visibility: visible; }
.ld-fab a:hover, .ld-fab button:hover { transform: translateY(-5px); }

/* -------------------------------------------------- reveal animation */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------- responsive */
@media (max-width: 1100px) {
    .ld-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .ld-grid--6 { grid-template-columns: repeat(3, 1fr); }
    .ld-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 991px) {
    .ld-section { padding: 70px 0; }
    .ld-nav { display: none; }
    .ld-burger { display: grid; margin-inline-start: auto; }
    .ld-header__actions .ld-btn { display: none; }
    .ld-hero { padding: 60px 0 100px; }
    .ld-hero__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
    .ld-hero__desc { margin-inline: auto; }
    .ld-hero__actions, .ld-hero__note { justify-content: center; }
    .ld-hero__media { max-width: 470px; margin: 0 auto; }
    .ld-stats__box { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; padding: 34px 22px; }
    .ld-stat::after { display: none !important; }
    .ld-about__inner { grid-template-columns: 1fr; gap: 50px; }
    .ld-about__badge { inset-inline-start: 16px; inset-block-end: -20px; }
    .ld-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .ld-steps::before { display: none; }
    .ld-download__inner { grid-template-columns: 1fr; text-align: center; }
    .ld-download p { margin-inline: auto; }
    .ld-stores { justify-content: center; }
    .ld-download__media { max-width: 380px; margin: 0 auto; }
    .ld-card--wide { flex-direction: column; }
    .ld-card--wide .ld-card__media { flex: none; aspect-ratio: 16/9; }
    .ld-card--wide h3 { font-size: 21px; }
    .ld-article__grid { grid-template-columns: 1fr; }
    .ld-side { position: static; }
    .ld-cta__box { grid-template-columns: 1fr; text-align: center; padding: 40px 26px; }
    .ld-cta__box p { margin-inline: auto; }
}

@media (max-width: 700px) {
    body { font-size: 15.5px; }
    .ld-section { padding: 56px 0; }
    .ld-topbar__list span:not(:first-child) { display: none; }
    .ld-grid--2, .ld-grid--3, .ld-grid--4, .ld-grid--6 { grid-template-columns: 1fr; }
    .ld-grid--6 { grid-template-columns: repeat(2, 1fr); }
    .ld-stat__num { font-size: 27px; }
    .ld-footer__grid { grid-template-columns: 1fr; }
    .ld-footer__bottom { justify-content: center; text-align: center; }
    .ld-head { margin-bottom: 38px; }
    .ld-tools { flex-direction: column; align-items: stretch; }
    .ld-search { max-width: none; }
    .ld-article__body { font-size: 16px; }
}

@media (max-width: 430px) {
    .ld-grid--6 { grid-template-columns: repeat(2, 1fr); }
    .ld-service { padding: 18px 12px; }
    .ld-service__img { width: 62px; height: 62px; }
    .ld-service h4 { font-size: 14.5px; }
    .ld-btn { width: 100%; }
    .ld-hero__actions { flex-direction: column; }
}

@media (max-width: 340px) {
    .ld-grid--6 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- print */
@media print {
    .ld-header, .ld-topbar, .ld-footer, .ld-fab, .ld-side { display: none !important; }
}
