/**
 * كوانتم — ليدينغ بيج كامل
 * رؤية مصمم تويتر × منافسة شوبفاي
 * هيكل جديد، تخطيط جديد، هوية بصرية واضحة
 */

/* منع التمرير الأفقي على صفحة الهوم (الملف يُحمّل فقط هنا) */
html:has(.lp),
body:has(.lp),
main:has(.lp) {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}
main:has(.lp) {
    min-width: 0;
}

/* ─── Design system ───────────────────────────────────────────────────── */
.lp {
    --lp-font: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lp-bg: #fff;
    --lp-bg-subtle: #f8f9fa;
    /* متناسق مع الهيدر: خلفية فاتحة، نفس النص والألوان */
    --lp-hero-bg: #fff;
    --lp-hero-fg: #111827;
    --lp-hero-muted: #6B7280;
    --lp-accent: #2563EB;
    --lp-accent-hover: #1D4ED8;
    --lp-accent-soft: rgba(37, 99, 235, 0.12);
    --lp-accent-secondary: #06B6D4;
    --lp-gradient: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --lp-text: #0f172a;
    --lp-text-muted: #64748b;
    --lp-border: #e2e8f0;
    --lp-radius: 8px;
    --lp-radius-lg: 12px;
    --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --lp-container: min(1280px, 100% - 2rem);
    --lp-nav-h: 64px;
}

@media (max-width: 640px) {
    .lp {
        --lp-container: 100%;
    }
}

@media (max-width: 768px) {
    .lp {
        --lp-nav-h: 56px;
    }
}

/* ─── Base & layout ────────────────────────────────────────────────────── */
.lp {
    font-family: var(--lp-font);
    color: var(--lp-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.lp *,
.lp *::before,
.lp *::after {
    box-sizing: border-box;
}

.lp {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-width: 0;
}

.lp > section {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--lp-font);
    font-weight: 600;
    border: none;
    border-radius: var(--lp-radius);
    cursor: pointer;
    transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-btn__icon {
    flex-shrink: 0;
}

.lp-btn--primary {
    background: var(--lp-gradient);
    color: #fff;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
}

.lp-btn--primary:hover {
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.lp-btn--secondary {
    background: transparent;
    color: var(--lp-text-muted);
    border: 1px solid var(--lp-border);
}

.lp-btn--secondary:hover {
    border-color: rgba(0, 0, 0, 0.12);
    background: var(--lp-bg-subtle);
    color: var(--lp-text);
}

.lp-btn--inverse {
    background: #fff;
    color: var(--lp-accent);
}

.lp-btn--inverse:hover {
    background: #f8fafc;
    color: var(--lp-accent-hover);
    transform: translateY(-1px);
}

.lp-btn--lg {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    min-height: 44px;
}

.lp-btn--xl {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — متناسق مع الهيدر: خلفية بيضاء، نفس التدرج والزوايا والطباعة
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-hero {
    min-height: auto;
    padding: calc(var(--lp-nav-h) + 1.5rem) 0 2.5rem;
    display: flex;
    align-items: center;
    background: var(--lp-hero-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.lp-hero__inner {
    width: 100%;
    max-width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-width: 0;
}

.lp-hero__content {
    max-width: 520px;
    min-width: 0;
}

.lp-hero__headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lp-hero-fg);
    margin: 0 0 1rem;
}

.lp-hero__headline-accent {
    display: block;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__subline {
    font-size: 15px;
    font-weight: 400;
    color: var(--lp-hero-muted);
    line-height: 1.6;
    margin: 0 0 1.75rem;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.25rem;
}

.lp-hero__stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lp-hero__stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    letter-spacing: -0.02em;
}

.lp-hero__stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--lp-hero-muted);
}

/* ═══ Hero Visual — حيوية وطبقات وحركة خفيفة ═══ */
.lp-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    min-width: 0;
}

/* خلفية ناعمة مع نقاط أو توهج */
.lp-hero__visual-bg {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.lp-hero__mock {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.lp-hero__mock--main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    animation: lp-hero-mock-float 6s ease-in-out infinite;
}

@keyframes lp-hero-mock-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.lp-hero__mock-bar {
    height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-bg-subtle);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-hero__mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
}

.lp-hero__mock-dot:nth-child(1) { background: #ff5f57; }
.lp-hero__mock-dot:nth-child(2) { background: #febc2e; }
.lp-hero__mock-dot:nth-child(3) { background: #28c840; }

.lp-hero__mock-url {
    flex: 1;
    max-width: 160px;
    height: 20px;
    margin-right: 10px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.lp-hero__mock-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-hero__mock-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.lp-hero__mock-card {
    border-radius: 8px;
    flex: 1;
    min-height: 0;
}

/* رسم بياني مصغّر مع حركة */
.lp-hero__mock-card--chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 6px;
    height: 72px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.lp-hero__mock-bar-chart {
    flex: 1;
    max-width: 24px;
    height: 100%;
    min-height: 12px;
    background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent-secondary) 100%);
    border-radius: 4px 4px 0 0;
    animation: lp-hero-bars 2.5s ease-in-out infinite;
}

.lp-hero__mock-bar-chart:nth-child(1) { animation-delay: 0s; height: 45%; }
.lp-hero__mock-bar-chart:nth-child(2) { animation-delay: 0.2s; height: 70%; }
.lp-hero__mock-bar-chart:nth-child(3) { animation-delay: 0.4s; height: 55%; }
.lp-hero__mock-bar-chart:nth-child(4) { animation-delay: 0.6s; height: 85%; }
.lp-hero__mock-bar-chart:nth-child(5) { animation-delay: 0.8s; height: 60%; }

@keyframes lp-hero-bars {
    0%, 100% { opacity: 0.9; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.05); }
}

.lp-hero__mock-card--stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--lp-bg-subtle);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-hero__mock-stat-num {
    width: 36px;
    height: 18px;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-secondary));
    border-radius: 4px;
    opacity: 0.9;
}

.lp-hero__mock-stat-label {
    width: 48px;
    height: 10px;
    margin-top: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

/* صف المنتجات */
.lp-hero__mock-row--product {
    gap: 0.75rem;
}

.lp-hero__mock-product {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 8px;
    flex: 1;
    min-width: 0;
    animation: lp-hero-card-in 0.6s ease-out backwards;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.lp-hero__mock-product:nth-child(1) {
    animation-delay: 0.1s;
}

.lp-hero__mock-product:nth-child(2) {
    animation-delay: 0.25s;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.06) 0%, rgba(37, 99, 235, 0.06) 100%);
    border-color: rgba(6, 182, 212, 0.14);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.06);
}

@keyframes lp-hero-card-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-hero__mock-product-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 8px;
}

.lp-hero__mock-product--sm .lp-hero__mock-product-img {
    width: 36px;
    height: 36px;
}

.lp-hero__mock-product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-hero__mock-line {
    height: 10px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.lp-hero__mock-line--title {
    width: 75%;
    height: 12px;
}

.lp-hero__mock-line--price {
    width: 35%;
    height: 10px;
}

/* بطاقات عائمة صغيرة للعمق */
.lp-hero__mock--float {
    position: absolute;
    z-index: 1;
    padding: 12px 16px;
    animation: lp-hero-float-card 5s ease-in-out infinite;
}

.lp-hero__mock--float-1 {
    top: 5%;
    right: -8%;
    animation-delay: 0s;
}

[dir="rtl"] .lp-hero__mock--float-1 {
    right: auto;
    left: -8%;
}

.lp-hero__mock--float-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

[dir="rtl"] .lp-hero__mock--float-2 {
    left: auto;
    right: -5%;
}

@keyframes lp-hero-float-card {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.95; }
    50% { transform: translateY(-6px) scale(1.02); opacity: 1; }
}

.lp-hero__mock-float-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-hero__mock-float-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-secondary));
    border-radius: 6px;
    opacity: 0.9;
}

.lp-hero__mock-float-text {
    width: 56px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.lp-hero__mock-float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.35);
    animation: lp-hero-dot-pulse 1.5s ease-in-out infinite;
}

.lp-hero__mock-float-dot:nth-child(2) { animation-delay: 0.3s; }
.lp-hero__mock-float-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes lp-hero-dot-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ─── Hero responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .lp-hero__content {
        max-width: none;
    }
    .lp-hero__headline-accent {
        display: inline;
    }
    .lp-hero__actions {
        justify-content: center;
    }
    .lp-hero__stats {
        justify-content: center;
    }
    .lp-hero__visual {
        order: -1;
        min-height: 260px;
    }
    .lp-hero__mock--main {
        max-width: 340px;
        margin: 0 auto;
    }
    .lp-hero__mock--float {
        display: none;
    }
    .lp-hero__visual-bg {
        inset: -10%;
    }
}

@media (max-width: 640px) {
    .lp-hero {
        padding: calc(var(--lp-nav-h) + 1rem) 0 2rem;
    }
    .lp-hero__inner {
        padding: 0 16px;
        gap: 2rem;
    }
    .lp-hero__headline {
        font-size: 1.75rem;
    }
    .lp-hero__subline {
        font-size: 15px;
    }
    .lp-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .lp-hero__actions .lp-btn {
        width: 100%;
        justify-content: center;
    }
    .lp-hero__stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding-top: 1.25rem;
    }
    .lp-hero__stat-num {
        font-size: 1.25rem;
    }
    .lp-hero__stat-label {
        font-size: 13px;
    }
    .lp-hero__visual {
        min-height: 200px;
    }
    .lp-hero__mock--main {
        max-width: 100%;
        animation: none;
    }
    .lp-hero__mock-body {
        padding: 1rem;
    }
    .lp-hero__mock-row {
        flex-direction: column;
    }
    .lp-hero__mock-card--chart {
        height: 56px;
    }
    .lp-hero__mock-bar-chart {
        animation: none;
    }
    .lp-hero__mock-product {
        animation: none;
    }
    .lp-hero__mock-product--sm {
        display: none;
    }
}

@media (max-width: 380px) {
    .lp-hero__inner {
        padding: 0 12px;
    }
    .lp-hero__headline {
        font-size: 1.5rem;
    }
    .lp-hero__actions {
        max-width: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST — هوية الهيرو: خلفية، تدرج، رسومات عائمة، حركة وبطاقات حيوية
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-trust {
    position: relative;
    padding: 0 0 2.5rem;
    background: var(--lp-hero-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.lp-trust::before {
    content: '';
    position: absolute;
    inset: -15% 0 0;
    background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* جسر بصري */
.lp-trust__bridge {
    position: relative;
    height: 4px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.lp-trust__bridge-line {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

[dir="rtl"] .lp-trust__bridge-line {
    background: linear-gradient(270deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

.lp-trust__bridge-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 8px;
    background: radial-gradient(ellipse 50% 100%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* خلفية توهج + رسومات عائمة (مثل الهيرو) */
.lp-trust__visual-bg {
    position: absolute;
    inset: -20% 0 0;
    background: radial-gradient(ellipse 70% 60% at 50% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.lp-trust__float {
    position: absolute;
    z-index: 1;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: lp-trust-float-card 5s ease-in-out infinite;
    pointer-events: none;
}

.lp-trust__float--1 {
    top: 22%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 0s;
}

[dir="rtl"] .lp-trust__float--1 {
    right: auto;
    left: 5%;
}

.lp-trust__float--2 {
    bottom: 28%;
    left: 4%;
    animation-delay: 2s;
}

[dir="rtl"] .lp-trust__float--2 {
    left: auto;
    right: 4%;
}

@keyframes lp-trust-float-card {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
    50% { transform: translateY(-6px) scale(1.02); opacity: 1; }
}

.lp-trust__float-icon {
    display: block;
    width: 28px;
    height: 28px;
    background: var(--lp-gradient);
    border-radius: 8px;
    opacity: 0.9;
}

.lp-trust__float-bar {
    width: 48px;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.lp-trust__float-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.4);
    margin: 0 3px;
    animation: lp-trust-dot-pulse 1.5s ease-in-out infinite;
}

.lp-trust__float-dot:nth-child(2) { animation-delay: 0.3s; }
.lp-trust__float-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes lp-trust-dot-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.lp-trust__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 2.25rem 24px 0;
    min-width: 0;
}

.lp-trust__headline {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 0.5rem;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-trust__subline {
    font-size: 15px;
    font-weight: 400;
    color: var(--lp-hero-muted);
    text-align: center;
    margin: 0 0 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.lp-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* بطاقات بأسلوب الهيرو: تدرج خفيف، حدود، ظل، حركة */
.lp-trust__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(6, 182, 212, 0.06) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
    transition: transform 0.35s var(--lp-ease), border-color 0.25s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
    animation: lp-trust-card-in 0.5s var(--lp-ease) backwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
}

.lp-trust__card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
}

@keyframes lp-trust-card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-trust__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 12px;
    color: var(--lp-accent);
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: transform 0.3s var(--lp-ease), color 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

.lp-trust__card:hover .lp-trust__icon-wrap {
    color: var(--lp-accent-hover);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.lp-trust__icon {
    flex-shrink: 0;
}

.lp-trust__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin: 0;
    line-height: 1.3;
}

.lp-trust__desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--lp-hero-muted);
    margin: 0;
    line-height: 1.5;
    max-width: 220px;
}

@media (max-width: 900px) {
    .lp-trust__float {
        padding: 8px 12px;
    }
    .lp-trust__float--1 {
        top: 12%;
        right: 2%;
    }
    [dir="rtl"] .lp-trust__float--1 {
        right: auto;
        left: 2%;
    }
    .lp-trust__float--2 {
        bottom: 20%;
        left: 2%;
    }
    [dir="rtl"] .lp-trust__float--2 {
        left: auto;
        right: 2%;
    }
    .lp-trust__float-icon {
        width: 22px;
        height: 22px;
    }
    .lp-trust__float-bar {
        width: 36px;
        height: 6px;
    }
    .lp-trust__float-dot {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
    .lp-trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .lp-trust__card {
        padding: 1.25rem 1rem;
    }
    .lp-trust__desc {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .lp-trust::before,
    .lp-trust__visual-bg {
        opacity: 0.5;
    }
    .lp-trust__float {
        display: none;
    }
    .lp-trust__bridge {
        margin-left: 16px;
        margin-right: 16px;
        max-width: none;
    }
    .lp-trust__inner {
        padding: 1.5rem 20px 2rem;
        min-width: 0;
    }
    .lp-trust__headline {
        font-size: 1.375rem;
        line-height: 1.35;
        padding: 0 0.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .lp-trust__subline {
        padding: 0 0.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 500px) {
    .lp-trust__inner {
        padding: 1.25rem 16px 1.5rem;
        min-width: 0;
    }
    .lp-trust__headline {
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 0;
    }
    .lp-trust__subline {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }
    .lp-trust__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-width: 0;
    }
    .lp-trust__card {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1rem 1rem;
        text-align: right;
        gap: 1rem;
        min-width: 0;
    }
    [dir="rtl"] .lp-trust__card {
        flex-direction: row-reverse;
        text-align: right;
    }
    .lp-trust__icon-wrap {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    .lp-trust__card > .lp-trust__label,
    .lp-trust__card > .lp-trust__desc {
        text-align: right;
        min-width: 0;
        flex: 1;
    }
    .lp-trust__label {
        font-size: 0.9375rem;
    }
    .lp-trust__desc {
        max-width: none;
        font-size: 0.8125rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUCCESS STORES — هوية الهيرو: خلفية، تدرج، طباعة، وبطاقات متناسقة
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-success-stores {
    position: relative;
    padding: 0 0 3rem;
    background: var(--lp-hero-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.lp-success-stores::before {
    content: '';
    position: absolute;
    inset: -20% 0 0;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.lp-success-stores__bridge {
    position: relative;
    height: 4px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.lp-success-stores__bridge-line {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

[dir="rtl"] .lp-success-stores__bridge-line {
    background: linear-gradient(270deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

.lp-success-stores__bridge-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 8px;
    background: radial-gradient(ellipse 50% 100%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.lp-success-stores__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 2rem 24px 0;
    min-width: 0;
}

.lp-success-stores__head {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-success-stores__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-success-stores__lead {
    font-size: 15px;
    font-weight: 400;
    color: var(--lp-hero-muted);
    margin: 0;
    line-height: 1.6;
}

.lp-success-stores__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.lp-success-store-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), border-color 0.25s var(--lp-ease);
    animation: lp-success-card-in 0.5s var(--lp-ease) backwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
}

.lp-success-store-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12), 0 4px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 99, 235, 0.12);
}

@keyframes lp-success-card-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-success-store-card__media {
    position: relative;
    aspect-ratio: 400 / 260;
    overflow: hidden;
}

.lp-success-store-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--lp-ease);
}

.lp-success-store-card:hover .lp-success-store-card__img {
    transform: scale(1.08);
}

.lp-success-store-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    transition: background 0.35s var(--lp-ease);
}

.lp-success-store-card:hover .lp-success-store-card__overlay {
    background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.lp-success-store-card__badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--lp-gradient);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

[dir="rtl"] .lp-success-store-card__badge {
    right: auto;
    left: 0.75rem;
}

.lp-success-store-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
}

.lp-success-store-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.lp-success-store-card__metric {
    font-size: 0.875rem;
    color: var(--lp-hero-muted);
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 1024px) {
    .lp-success-stores__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lp-success-stores {
        padding: 0 0 2.5rem;
    }
    .lp-success-stores__inner {
        padding: 1.75rem 16px 0;
    }
    .lp-success-stores__head {
        margin-bottom: 1.5rem;
    }
    .lp-success-stores__title {
        font-size: 1.5rem;
    }
    .lp-success-stores__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .lp-success-store-card {
        animation: none;
    }
    .lp-success-store-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 500px) {
    .lp-success-store-card__body {
        padding: 1rem;
    }
    .lp-success-store-card__name {
        font-size: 1rem;
    }
    .lp-success-store-card__metric {
        font-size: 0.8125rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STEPS — هوية الهيرو: خلفية، تدرج، رسومات عائمة، حركة وحيوية
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-steps {
    position: relative;
    padding: 0 0 2.5rem;
    background: var(--lp-hero-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    scroll-margin-top: 64px;
}

.lp-steps::before {
    content: '';
    position: absolute;
    inset: -15% 0 0;
    background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lp-steps {
        scroll-margin-top: 56px;
    }
}

/* جسر بصري */
.lp-steps__bridge {
    position: relative;
    height: 4px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.lp-steps__bridge-line {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

[dir="rtl"] .lp-steps__bridge-line {
    background: linear-gradient(270deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

.lp-steps__bridge-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 8px;
    background: radial-gradient(ellipse 50% 100%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 640px) {
    .lp-steps__bridge {
        margin-left: 16px;
        margin-right: 16px;
        max-width: none;
    }
}

/* خلفية توهج + رسومات عائمة (مثل الهيرو) */
.lp-steps__visual-bg {
    position: absolute;
    inset: -20% 0 0;
    background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(6, 182, 212, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.lp-steps__float {
    position: absolute;
    z-index: 1;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: lp-steps-float-card 5s ease-in-out infinite;
    pointer-events: none;
}

.lp-steps__float--1 {
    top: 18%;
    right: 4%;
    animation-delay: 0s;
}

[dir="rtl"] .lp-steps__float--1 {
    right: auto;
    left: 4%;
}

.lp-steps__float--2 {
    bottom: 25%;
    left: 3%;
    animation-delay: 2s;
}

[dir="rtl"] .lp-steps__float--2 {
    left: auto;
    right: 3%;
}

@keyframes lp-steps-float-card {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
    50% { transform: translateY(-8px) scale(1.02); opacity: 1; }
}

.lp-steps__float-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.4);
    margin: 0 3px;
    animation: lp-steps-dot-pulse 1.5s ease-in-out infinite;
}

.lp-steps__float-dot:nth-child(2) { animation-delay: 0.3s; }
.lp-steps__float-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes lp-steps-dot-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.lp-steps__float-icon {
    display: block;
    width: 28px;
    height: 28px;
    background: var(--lp-gradient);
    border-radius: 8px;
    opacity: 0.9;
}

.lp-steps__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding-top: 2.5rem;
    min-width: 0;
}

.lp-steps__head {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-steps__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-steps__lead {
    font-size: 15px;
    font-weight: 400;
    color: var(--lp-hero-muted);
    margin: 0;
    line-height: 1.6;
}

/* مسار الرحلة: خط متحرك مع توهج */
.lp-steps__journey {
    position: relative;
    margin-bottom: 2.5rem;
}

.lp-steps__track {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    max-width: 560px;
    height: 6px;
    pointer-events: none;
    border-radius: 999px;
    overflow: hidden;
}

.lp-steps__track-line {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.25) 0%, rgba(6, 182, 212, 0.5) 50%, rgba(37, 99, 235, 0.25) 100%);
    border-radius: 999px;
    animation: lp-steps-track-flow 2.5s ease-in-out infinite;
}

[dir="rtl"] .lp-steps__track-line {
    background: linear-gradient(270deg, rgba(37, 99, 235, 0.25) 0%, rgba(6, 182, 212, 0.5) 50%, rgba(37, 99, 235, 0.25) 100%);
}

.lp-steps__track-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 28px;
    transform: translateY(-50%);
    background: radial-gradient(ellipse 50% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: lp-steps-track-glow 2.5s ease-in-out infinite;
}

@keyframes lp-steps-track-flow {
    0%, 100% { opacity: 0.9; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.02); }
}

@keyframes lp-steps-track-glow {
    0% { left: 0; opacity: 0.5; }
    50% { left: 50%; transform: translate(-50%, -50%); opacity: 1; }
    100% { left: 100%; transform: translate(-100%, -50%); opacity: 0.5; }
}

.lp-steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.lp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.5rem;
    animation: lp-step-in 0.6s var(--lp-ease) backwards;
    animation-delay: calc(var(--i, 0) * 0.12s);
    transition: transform 0.4s var(--lp-ease);
}

.lp-step:hover {
    transform: translateY(-4px);
}

@keyframes lp-step-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* عقدة الخطوة: رقم + أيقونة مع حركة خفيفة */
.lp-step__node {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    animation: lp-step-node-float 4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.4s);
}

@keyframes lp-step-node-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.lp-step__num {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background: var(--lp-gradient);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: transform 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

.lp-step:hover .lp-step__num {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}

.lp-step__icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    color: var(--lp-accent);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s var(--lp-ease), color 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

[dir="rtl"] .lp-step__icon {
    right: auto;
    left: -4px;
}

.lp-step:hover .lp-step__icon {
    transform: scale(1.08);
    color: var(--lp-accent-hover);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

/* بطاقة الخطوة: هوية الهيرو (تدرج خفيف، حدود، ظل) */
.lp-step__body {
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(6, 182, 212, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
    transition: transform 0.35s var(--lp-ease), border-color 0.25s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
}

.lp-step:hover .lp-step__body {
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.12);
}

.lp-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin: 0 0 0.35rem;
}

.lp-step__desc {
    font-size: 0.9375rem;
    color: var(--lp-hero-muted);
    line-height: 1.5;
    margin: 0;
}

.lp-steps__cta {
    text-align: center;
}

@media (max-width: 900px) {
    .lp-steps__float {
        padding: 8px 12px;
    }
    .lp-steps__float--1 {
        top: 10%;
        right: 2%;
    }
    [dir="rtl"] .lp-steps__float--1 {
        right: auto;
        left: 2%;
    }
    .lp-steps__float--2 {
        bottom: 22%;
        left: 2%;
    }
    [dir="rtl"] .lp-steps__float--2 {
        left: auto;
        right: 2%;
    }
    .lp-steps__float-dot {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
    .lp-steps__float-icon {
        width: 22px;
        height: 22px;
    }
    .lp-steps__track {
        width: calc(100% - 120px);
        top: 44px;
    }
    .lp-step__node {
        width: 72px;
        height: 72px;
        animation: none;
    }
    .lp-step__num {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .lp-step__icon {
        width: 34px;
        height: 34px;
        bottom: -2px;
        right: -2px;
    }
    .lp-step__icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .lp-steps::before,
    .lp-steps__visual-bg {
        opacity: 0.5;
    }
    .lp-steps {
        padding: 0 0 2.5rem;
    }
    .lp-steps__inner {
        padding: 1.5rem 20px 0;
        max-width: 100%;
    }
    .lp-steps__head {
        margin-bottom: 1.75rem;
    }
    .lp-steps__title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .lp-steps__float {
        padding: 6px 10px;
    }
    .lp-steps__float--1 {
        top: 2%;
        right: 2%;
    }
    [dir="rtl"] .lp-steps__float--1 {
        right: auto;
        left: 2%;
    }
    .lp-steps__float--2 {
        bottom: 2%;
        left: 2%;
    }
    [dir="rtl"] .lp-steps__float--2 {
        left: auto;
        right: 2%;
    }
    .lp-steps__float-icon {
        width: 18px;
        height: 18px;
    }
    .lp-steps__float-dot {
        width: 5px;
        height: 5px;
        margin: 0 1px;
    }
    .lp-steps__lead {
        font-size: 0.9375rem;
        line-height: 1.55;
        margin-top: 0.25rem;
    }
    .lp-steps__journey {
        margin-bottom: 1.75rem;
    }
    .lp-steps__list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .lp-steps__track {
        display: none;
    }
    .lp-step {
        animation: none;
        flex-direction: row;
        align-items: flex-start;
        text-align: right;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .lp-step:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    [dir="rtl"] .lp-step {
        flex-direction: row-reverse;
        text-align: right;
    }
    .lp-step__node {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 64px;
        height: 64px;
    }
    .lp-step__num {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    .lp-step__icon {
        width: 32px;
        height: 32px;
        bottom: -2px;
        right: -2px;
    }
    .lp-step__icon svg {
        width: 18px;
        height: 18px;
    }
    [dir="rtl"] .lp-step__icon {
        right: auto;
        left: -2px;
    }
    .lp-step__body {
        padding: 0;
        min-width: 0;
        flex: 1;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        text-align: right;
    }
    .lp-step:hover .lp-step__body {
        border-color: transparent;
        box-shadow: none;
    }
    .lp-step__title {
        font-size: 1.0625rem;
        font-weight: 700;
        margin: 0 0 0.25rem;
    }
    .lp-step__desc {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin: 0;
    }
    .lp-step__title,
    .lp-step__desc {
        text-align: right;
    }
    .lp-steps__cta {
        margin-top: 0.5rem;
    }
    .lp-steps__cta .lp-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lp-steps {
        padding: 0 0 2rem;
    }
    .lp-steps__inner {
        padding: 1.25rem 16px 0;
    }
    .lp-steps__head {
        margin-bottom: 1.5rem;
    }
    .lp-steps__title {
        font-size: 1.25rem;
    }
    .lp-steps__lead {
        font-size: 0.875rem;
    }
    .lp-steps__list {
        gap: 1rem;
    }
    .lp-step {
        padding: 0.875rem 0;
    }
    .lp-step__node {
        width: 56px;
        height: 56px;
    }
    .lp-step__num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lp-step__icon {
        width: 28px;
        height: 28px;
    }
    .lp-step__icon svg {
        width: 16px;
        height: 16px;
    }
    .lp-step__title {
        font-size: 1rem;
    }
    .lp-step__desc {
        font-size: 0.75rem;
    }
    .lp-steps__cta .lp-btn {
        max-width: none;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG — هوية الهيرو: خلفية، تدرج، توهج، عنوان متدرج، وبطاقات حيوية
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-blog {
    position: relative;
    padding: 0 0 2.5rem;
    background: var(--lp-hero-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.lp-blog::before {
    content: '';
    position: absolute;
    inset: -15% 0 0;
    background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.lp-blog__visual-bg {
    position: absolute;
    inset: -20% 0 0;
    background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(6, 182, 212, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.lp-blog__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 2rem 24px 0;
    min-width: 0;
}

.lp-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-blog-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
    transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), border-color 0.25s var(--lp-ease);
    animation: lp-blog-card-in 0.5s var(--lp-ease) backwards;
}

.lp-blog-card:nth-child(1) { animation-delay: 0.05s; }
.lp-blog-card:nth-child(2) { animation-delay: 0.1s; }
.lp-blog-card:nth-child(3) { animation-delay: 0.15s; }

@keyframes lp-blog-card-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.18);
}

.lp-blog-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lp-blog-card__media {
    position: relative;
    aspect-ratio: 400 / 240;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
}

.lp-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--lp-ease);
}

.lp-blog-card:hover .lp-blog-card__img {
    transform: scale(1.06);
}

.lp-blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    transition: background 0.35s var(--lp-ease);
}

.lp-blog-card:hover .lp-blog-card__overlay {
    background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
}

.lp-blog-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
}

.lp-blog-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.lp-blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--lp-hero-muted);
    line-height: 1.5;
    margin: 0;
}

.lp-blog__cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .lp-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lp-blog::before,
    .lp-blog__visual-bg {
        opacity: 0.5;
    }
    .lp-blog {
        padding: 2rem 0 3rem;
    }
    .lp-blog__inner {
        padding: 2rem 16px 0;
    }
    .lp-blog__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .lp-blog-card {
        animation: none;
    }
    .lp-blog-card__body {
        padding: 1rem;
    }
}

@media (max-width: 500px) {
    .lp-blog-card__title {
        font-size: 1rem;
    }
    .lp-blog-card__excerpt {
        font-size: 0.8125rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTORS — هوية الهيرو: خلفية، تدرج، رسومات مبتكرة، حركة وبطاقات حيوية
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-sectors {
    position: relative;
    padding: 0 0 2.5rem;
    background: var(--lp-hero-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.lp-sectors::before {
    content: '';
    position: absolute;
    inset: -15% 0 0;
    background: radial-gradient(ellipse 80% 50% at 50% 25%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.lp-sectors::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
    pointer-events: none;
}

[dir="rtl"] .lp-sectors::after {
    background: linear-gradient(270deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
}

.lp-sectors__visual-bg {
    position: absolute;
    inset: -20% 0 0;
    background: radial-gradient(ellipse 70% 60% at 50% 65%, rgba(6, 182, 212, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

/* رسومات أوضح وأكثر تناسقاً — أسلوب Order جديد */
.lp-sectors__graphic {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: lp-sectors-graphic-float 5s ease-in-out infinite;
}

/* شارة ماسية: إطار رفيع + تدرج + ظل خفيف */
.lp-sectors__graphic--diamond {
    top: 20%;
    right: 5%;
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18) 0%, rgba(6, 182, 212, 0.12) 50%, rgba(37, 99, 235, 0.14) 100%);
    transform: rotate(45deg);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lp-sectors__graphic--diamond::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 6px;
    background: linear-gradient(145deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    pointer-events: none;
}

[dir="rtl"] .lp-sectors__graphic--diamond {
    right: auto;
    left: 5%;
}

/* شبكة أوامر: إطار منظم + خلايا واضحة */
.lp-sectors__graphic--grid {
    bottom: 24%;
    left: 4%;
    width: 46px;
    height: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation-delay: 1.5s;
}

.lp-sectors__graphic--grid span {
    width: 100%;
    height: 100%;
    min-height: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: 4px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: lp-sectors-grid-pulse 2s ease-in-out infinite;
}

.lp-sectors__graphic--grid span:nth-child(1) { animation-delay: 0s; }
.lp-sectors__graphic--grid span:nth-child(2) { animation-delay: 0.25s; }
.lp-sectors__graphic--grid span:nth-child(3) { animation-delay: 0.5s; }
.lp-sectors__graphic--grid span:nth-child(4) { animation-delay: 0.75s; }

[dir="rtl"] .lp-sectors__graphic--grid {
    left: auto;
    right: 4%;
}

@keyframes lp-sectors-graphic-float {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.92; }
    50% { transform: translateY(-6px) rotate(45deg); opacity: 1; }
}

@keyframes lp-sectors-grid-float {
    0%, 100% { transform: translateY(0); opacity: 0.92; }
    50% { transform: translateY(-6px); opacity: 1; }
}

.lp-sectors__graphic--grid {
    animation: lp-sectors-grid-float 5s ease-in-out infinite;
}

@keyframes lp-sectors-grid-pulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.lp-sectors__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    min-width: 0;
    padding: 2rem 24px 0;
}

.lp-sectors__head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.lp-sectors__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-sectors__lead {
    font-size: 15px;
    font-weight: 400;
    color: var(--lp-hero-muted);
    margin: 0 0 1.25rem;
    line-height: 1.6;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
}

.lp-sectors__line {
    display: block;
    width: 48px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--lp-gradient);
    opacity: 0.9;
}

.lp-sectors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 3px auto;
    gap: 1.5rem 1.5rem;
    align-items: start;
}

.lp-sectors__track {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 3px;
    min-height: 3px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.25) 0%, rgba(6, 182, 212, 0.4) 50%, rgba(37, 99, 235, 0.25) 100%);
    border-radius: 2px;
}

[dir="rtl"] .lp-sectors__track {
    background: linear-gradient(270deg, rgba(37, 99, 235, 0.25) 0%, rgba(6, 182, 212, 0.4) 50%, rgba(37, 99, 235, 0.25) 100%);
}

.lp-sector-card:nth-child(1),
.lp-sector-card:nth-child(2),
.lp-sector-card:nth-child(3) { grid-row: 1; }

.lp-sector-card:nth-child(5),
.lp-sector-card:nth-child(6),
.lp-sector-card:nth-child(7) { grid-row: 3; }

.lp-sector-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(6, 182, 212, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
    transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), border-color 0.25s var(--lp-ease);
    overflow: hidden;
    animation: lp-sector-card-in 0.5s var(--lp-ease) backwards;
}

.lp-sector-card:nth-child(1) { animation-delay: 0.05s; }
.lp-sector-card:nth-child(2) { animation-delay: 0.1s; }
.lp-sector-card:nth-child(3) { animation-delay: 0.15s; }
.lp-sector-card:nth-child(5) { animation-delay: 0.2s; }
.lp-sector-card:nth-child(6) { animation-delay: 0.25s; }
.lp-sector-card:nth-child(7) { animation-delay: 0.3s; }

@keyframes lp-sector-card-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.18);
}

.lp-sector-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 1.25rem auto 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 14px;
    color: var(--lp-accent);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: transform 0.3s var(--lp-ease), color 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

.lp-sector-card:hover .lp-sector-card__icon-wrap {
    color: var(--lp-accent-hover);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.lp-sector-card__icon { width: 28px; height: 28px; display: block; }

.lp-sector-card__content {
    padding: 1rem 1.25rem 1.5rem;
    text-align: center;
}

.lp-sector-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.lp-sector-card__desc {
    font-size: 0.875rem;
    color: var(--lp-hero-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .lp-sectors__graphic--diamond {
        width: 36px;
        height: 36px;
        top: 12%;
        right: 2%;
    }
    [dir="rtl"] .lp-sectors__graphic--diamond {
        right: auto;
        left: 2%;
    }
    .lp-sectors__graphic--grid {
        width: 38px;
        height: 38px;
        padding: 6px;
        gap: 4px;
        bottom: 18%;
        left: 2%;
    }
    [dir="rtl"] .lp-sectors__graphic--grid {
        left: auto;
        right: 2%;
    }
    .lp-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto 3px auto auto;
        gap: 1.25rem;
    }
    .lp-sector-card:nth-child(1),
    .lp-sector-card:nth-child(2) { grid-row: 1; }
    .lp-sector-card:nth-child(5),
    .lp-sector-card:nth-child(6) { grid-row: 3; }
    .lp-sector-card:nth-child(7) { grid-row: 4; }
}

@media (max-width: 640px) {
    .lp-sectors::before,
    .lp-sectors__visual-bg {
        opacity: 0.5;
    }
    .lp-sectors__graphic--diamond {
        width: 30px;
        height: 30px;
        top: 2%;
        right: 2%;
    }
    [dir="rtl"] .lp-sectors__graphic--diamond {
        right: auto;
        left: 2%;
    }
    .lp-sectors__graphic--grid {
        width: 34px;
        height: 34px;
        padding: 5px;
        gap: 3px;
        bottom: 2%;
        left: 2%;
    }
    [dir="rtl"] .lp-sectors__graphic--grid {
        left: auto;
        right: 2%;
    }
    .lp-sectors {
        padding: 1.25rem 0 3rem;
    }
    .lp-sectors__inner {
        padding: 2rem 16px 0;
    }
    .lp-sectors__head {
        margin-bottom: 2rem;
    }
    .lp-sectors__title {
        font-size: 1.5rem;
    }
    .lp-sectors__lead {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    .lp-sectors__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 1rem;
    }
    .lp-sectors__track {
        display: none;
    }
    .lp-sector-card:nth-child(1),
    .lp-sector-card:nth-child(2),
    .lp-sector-card:nth-child(3),
    .lp-sector-card:nth-child(5),
    .lp-sector-card:nth-child(6),
    .lp-sector-card:nth-child(7) {
        grid-row: auto;
    }
}

@media (max-width: 500px) {
    .lp-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto 2px auto auto;
        gap: 0.75rem;
    }
    .lp-sectors__track {
        display: block;
        grid-column: 1 / -1;
        grid-row: 2;
        height: 2px;
        min-height: 2px;
    }
    .lp-sector-card:nth-child(1),
    .lp-sector-card:nth-child(2) { grid-row: 1; }
    .lp-sector-card:nth-child(5),
    .lp-sector-card:nth-child(6) { grid-row: 3; }
    .lp-sector-card:nth-child(7) { grid-row: 4; }
    .lp-sector-card__content {
        padding: 1rem;
    }
    .lp-sector-card__icon-wrap {
        width: 48px;
        height: 48px;
        margin-top: 1rem;
    }
    .lp-sector-card__icon {
        width: 24px;
        height: 24px;
    }
    .lp-sector-card__title {
        font-size: 0.9375rem;
    }
    .lp-sector-card__desc {
        font-size: 0.8125rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATIC PAGES — صفحات الفوتر (من نحن، الخصوصية، إلخ)
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-page {
    padding: clamp(2rem, 5vw, 4rem) 0;
    min-height: 50vh;
}

.lp-page__article {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
}

.lp-page__head {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-page__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.lp-page__lead {
    font-size: 1.0625rem;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.6;
}

.lp-page__body {
    font-size: 1rem;
    line-height: 1.75;
}

.lp-prose h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 2rem 0 0.75rem;
}

.lp-prose h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.lp-prose p {
    margin: 0 0 1rem;
    color: var(--lp-text);
}

.lp-prose ul,
.lp-prose ol {
    margin: 0 0 1rem;
    padding-inline-start: 1.5rem;
}

.lp-prose li {
    margin-bottom: 0.35rem;
}

.lp-prose a {
    color: var(--lp-accent);
    text-decoration: none;
}

.lp-prose a:hover {
    text-decoration: underline;
}

.lp-page-blog {
    margin-top: 2rem;
    padding: 0;
}

.lp-page-blog .lp-blog__grid {
    margin-top: 0;
}

@media (max-width: 640px) {
    .lp-page__article {
        padding: 0 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — فوتر احترافي متكامل (براند عالمي)
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.85);
}

.lp-footer__top {
    padding: 3rem 0 2.5rem;
}

.lp-footer__inner {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
    min-width: 0;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    align-items: start;
}

.lp-footer__brand {
    max-width: 320px;
}

.lp-footer__logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: opacity 0.2s var(--lp-ease);
}

.lp-footer__logo:hover {
    opacity: 0.9;
}

.lp-footer__logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: right center;
}

[dir="ltr"] .lp-footer__logo-img {
    object-position: left center;
}

.lp-footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem;
}

.lp-footer__social {
    display: flex;
    gap: 0.75rem;
}

.lp-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

.lp-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.lp-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.lp-footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1rem;
}

.lp-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-footer__links li {
    margin-bottom: 0.5rem;
}

.lp-footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s var(--lp-ease);
}

.lp-footer__links a:hover {
    color: #fff;
}

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.lp-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-footer__copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.lp-footer__legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.lp-footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s var(--lp-ease);
}

.lp-footer__legal a:hover {
    color: #fff;
}

.lp-footer__sep {
    color: rgba(255, 255, 255, 0.35);
    user-select: none;
}

@media (max-width: 1024px) {
    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lp-footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lp-footer__top {
        padding: 2.5rem 0 2rem;
    }
    .lp-footer__inner {
        padding: 0 16px;
    }
    .lp-footer__nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .lp-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .lp-footer__brand {
        max-width: none;
    }
    .lp-footer__logo-img {
        height: 32px;
        max-width: 140px;
    }
    .lp-footer__tagline {
        font-size: 0.875rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS — 3 كروت بسيطة
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-testimonials {
    padding: 5rem 0;
    background: var(--lp-bg-subtle);
}

.lp-testimonials__inner {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    min-width: 0;
}

.lp-testimonials__head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lp-testimonials__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 0.35rem;
}

.lp-testimonials__lead {
    font-size: 1rem;
    color: var(--lp-text-muted);
    margin: 0;
}

.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-testimonial {
    padding: 1.5rem;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    margin: 0;
    transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-testimonial:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lp-testimonial__quote {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--lp-text);
    margin: 0 0 1.25rem;
}

.lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border);
}

.lp-testimonial__avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    background: var(--lp-accent);
    color: #fff;
    border-radius: 50%;
}

.lp-testimonial__name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lp-text);
    font-style: normal;
}

.lp-testimonial__role {
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
}

@media (max-width: 768px) {
    .lp-testimonials {
        padding: 3.5rem 0;
    }
    .lp-testimonials__inner {
        padding: 0 16px;
    }
    .lp-testimonials__head {
        margin-bottom: 2rem;
    }
    .lp-testimonials__title {
        font-size: 1.5rem;
    }
    .lp-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lp-testimonials {
        padding: 3rem 0;
    }
    .lp-testimonial {
        padding: 1.25rem;
    }
    .lp-testimonial__quote {
        font-size: 0.9375rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS — شريط خفيف، 3 أرقام + CTA (متناسق مع الهيدر)
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-stats {
    padding: 4rem 0;
    background: var(--lp-bg-subtle);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-stats__inner {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    text-align: center;
    min-width: 0;
}

.lp-stats__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.lp-stats__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lp-stats__num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--lp-hero-fg);
    letter-spacing: -0.02em;
}

.lp-stats__label {
    font-size: 0.9375rem;
    color: var(--lp-hero-muted);
}

.lp-stats__cta {
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .lp-stats {
        padding: 3rem 16px;
    }
    .lp-stats__inner {
        padding: 0;
    }
    .lp-stats__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .lp-stats__num {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .lp-stats {
        padding: 2.5rem 16px;
    }
    .lp-stats__num {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA — عنوان + سطر + زر واحد
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-cta {
    padding: 5rem 0;
    background: var(--lp-bg);
}

.lp-cta__inner {
    width: 100%;
    max-width: min(560px, var(--lp-container));
    margin: 0 auto;
    text-align: center;
    min-width: 0;
}

.lp-cta__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 0.5rem;
}

.lp-cta__subline {
    font-size: 1rem;
    color: var(--lp-text-muted);
    margin: 0 0 1.5rem;
}

@media (max-width: 640px) {
    .lp-cta {
        padding: 3.5rem 16px;
    }
    .lp-cta__inner {
        padding: 0;
    }
    .lp-cta__title {
        font-size: 1.375rem;
    }
    .lp-cta__subline {
        font-size: 0.9375rem;
    }
    .lp-cta .lp-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lp-cta {
        padding: 3rem 16px;
    }
    .lp-cta__title {
        font-size: 1.25rem;
    }
    .lp-cta .lp-btn {
        max-width: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL إنشاء المتجر — تصميم احترافي متناسق مع هوية الصفحة
   ═══════════════════════════════════════════════════════════════════════════ */
.modal {
    font-family: var(--lp-font);
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--lp-ease), visibility 0.25s var(--lp-ease);
}

.modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(37, 99, 235, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s var(--lp-ease);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 10px;
    color: var(--lp-text-muted);
    cursor: pointer;
    transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

.modal-close:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-accent);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: calc(12px + 20px);
    right: calc(12px + 20px);
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.3) 50%, rgba(37, 99, 235, 0.2) 100%);
    border-radius: 1px;
    z-index: 0;
}

[dir="rtl"] .step-indicator::before {
    left: calc(12px + 20px);
    right: calc(12px + 20px);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background: #fff;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    color: var(--lp-text-muted);
    margin-bottom: 0.4rem;
    transition: all 0.25s var(--lp-ease);
}

.step-item.active .step-number {
    background: var(--lp-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.step-item.completed .step-number {
    background: var(--lp-gradient);
    border-color: transparent;
    color: #fff;
}

.step-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    text-align: center;
    max-width: 4.5em;
}

.step-item.active .step-label {
    color: var(--lp-accent);
    font-weight: 600;
}

#stepContentContainer {
    flex: 1;
    min-height: 0;
}

.step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin: 0 0 0.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--lp-hero-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.store-type-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.store-type-option {
    padding: 1.25rem 1rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
    cursor: pointer;
    text-align: center;
    transition: all 0.25s var(--lp-ease);
}

.store-type-option:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.store-type-option.selected {
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.store-type-option-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-bg-subtle);
    transition: transform 0.2s var(--lp-ease);
}

.store-type-option.selected .store-type-option-icon {
    background: var(--lp-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.store-type-option:hover .store-type-option-icon {
    transform: scale(1.05);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-hero-fg);
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--lp-font);
    font-size: 0.9375rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    background: #fff;
    color: var(--lp-text);
    transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.form-input:focus {
    outline: none;
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-input::placeholder {
    color: var(--lp-text-muted);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.form-actions .btn-primary {
    background: var(--lp-gradient);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-family: var(--lp-font);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.form-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.form-actions .btn-secondary {
    background: var(--lp-bg-subtle);
    color: var(--lp-text);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    font-family: var(--lp-font);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: border-color 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.form-actions .btn-secondary:hover {
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.04);
}

.encouragement-message {
    font-size: 0.875rem;
    color: var(--lp-hero-muted);
    margin-top: 0.75rem;
}

.error-message {
    font-size: 0.875rem;
    color: #dc2626;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 8px;
}

.review-content-container {
    margin: 1rem 0;
}

.review-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.review-info-row:last-child {
    border-bottom: none;
}

.review-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp-hero-muted);
}

.review-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: var(--lp-accent);
}

.review-info-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lp-hero-fg);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.store-type-option-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lp-hero-fg);
    margin-bottom: 0.25rem;
}

.store-type-option-description {
    font-size: 0.75rem;
    color: var(--lp-hero-muted);
    line-height: 1.45;
}

@media (max-width: 640px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    .modal-content {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    }
    .modal-header {
        padding: 1.25rem 1.25rem;
    }
    .modal-body {
        padding: 1.25rem;
    }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
        min-height: 48px;
    }
    .store-type-selection {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING HELP + DRAWER
   ═══════════════════════════════════════════════════════════════════════════ */
.floating-help-btn {
    position: fixed !important;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-gradient) !important;
    color: #fff !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1500;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

[dir="rtl"] .floating-help-btn {
    left: auto;
    right: 1.5rem;
}

.floating-help-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.floating-help-btn .help-icon,
.floating-help-btn .close-icon {
    position: absolute;
    width: 28px;
    height: 28px;
}

.floating-help-btn .close-icon {
    opacity: 0;
}

.floating-help-btn.active .help-icon {
    opacity: 0;
}

.floating-help-btn.active .close-icon {
    opacity: 1;
}

.help-drawer {
    position: fixed;
    bottom: 5rem;
    left: 1.5rem;
    width: 0;
    height: 0;
    z-index: 1499;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

[dir="rtl"] .help-drawer {
    left: auto;
    right: 1.5rem;
}

.help-drawer.active {
    width: min(360px, calc(100% - 2rem));
    max-width: calc(100vw - 2rem);
    height: auto;
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
}

.help-drawer-content {
    background: var(--lp-bg);
    border-radius: var(--lp-radius-lg);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--lp-border);
}

.help-drawer-header {
    padding: 1.25rem;
    background: var(--lp-gradient);
    color: #fff;
}

.help-drawer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.help-drawer-body {
    padding: 1.25rem;
}

.help-drawer-body .help-text {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    margin: 0 0 1rem;
}

.help-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.help-feature-item {
    font-size: 0.8125rem;
    color: var(--lp-text);
}

.help-whatsapp-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #25d366 !important;
    color: #fff !important;
    border: none;
    border-radius: var(--lp-radius);
    font-family: var(--lp-font);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .help-drawer.active {
        width: calc(100% - 2rem);
        max-width: min(360px, calc(100% - 2rem));
    }
}

@media (max-width: 640px) {
    .floating-help-btn {
        bottom: 1.25rem;
        left: 1rem;
        width: 52px;
        height: 52px;
    }
    [dir="rtl"] .floating-help-btn {
        left: auto;
        right: 1rem;
    }
    .help-drawer {
        bottom: 4.5rem;
        left: 1rem;
    }
    [dir="rtl"] .help-drawer {
        left: auto;
        right: 1rem;
    }
}

@media (max-width: 380px) {
    .floating-help-btn {
        bottom: 1rem;
        left: 0.75rem;
        width: 48px;
        height: 48px;
    }
    [dir="rtl"] .floating-help-btn {
        right: 0.75rem;
    }
    .help-drawer {
        left: 0.75rem;
    }
    [dir="rtl"] .help-drawer {
        right: 0.75rem;
    }
}
