:root {
    --sky:      #0ea5e9;
    --sky-dark: #0284c7;
    --sky-lt:   #e0f2fe;
    --sky-xl:   #f0f9ff;
    --ink:      #0f172a;
    --muted:    #64748b;
    --border:   #e2e8f0;
    --white:    #ffffff;
    --gold:     #f59e0b;
    --green:    #10b981;
    --purple:   #8b5cf6;
}

html { scroll-behavior: smooth; }
body {
    margin: 0; overflow-x: hidden;
    background: var(--white);

    font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
    color: var(--ink);
    line-height: 1.7;
}

.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0.9rem 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
.lp-nav.scrolled {
    box-shadow: 0 2px 24px rgba(14,165,233,0.1);
    padding: 0.6rem 0;
}
.lp-nav-brand {
    font-size: 1.2rem; font-weight: 700; color: var(--ink);
    text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
    letter-spacing: -0.3px;
}
.lp-nav-brand i { color: var(--sky); }
.lp-nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.88rem; font-weight: 500; padding: 0.5rem 1rem;
    border-radius: 0.5rem; transition: color 0.2s ease;
}
.lp-nav-links a:hover { color: var(--sky); }
.lp-btn-login {
    background: var(--sky); color: #fff !important;
    border: none;
    padding: 0.48rem 1.1rem !important; border-radius: 8px !important;
    font-size: 0.85rem !important; font-weight: 600 !important;
    transition: all 0.2s ease !important;
    text-decoration: none;
}
.lp-btn-login:hover {
    background: var(--sky-dark) !important; color: #fff !important;
    transform: translateY(-1px);
}

.lp-hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: linear-gradient(160deg, var(--sky-xl) 0%, #fff 60%);
    overflow: hidden;
    padding: 10rem 0 6rem;
}
.lp-hero::before {
    content: ''; position: absolute; top: -100px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.9rem; border-radius: 50px;
    background: var(--sky-lt); border: 1px solid rgba(14,165,233,0.2);
    color: var(--sky-dark); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.lp-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); animation: lp-pulse 2s infinite; }
@keyframes lp-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.lp-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
    color: var(--ink); line-height: 1.15; margin-bottom: 1.2rem;
    letter-spacing: -1px;
}
.lp-hero h1 .gradient-text {
    color: var(--sky);
    background: none;
    -webkit-background-clip: unset; -webkit-text-fill-color: unset;
    background-clip: unset;
}
.lp-hero-sub {
    font-size: 1.08rem; color: var(--muted); line-height: 1.8;
    max-width: 560px; margin-bottom: 2.5rem;
}
.lp-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.lp-btn-primary {
    padding: 0.78rem 1.8rem; border-radius: 10px;
    background: var(--sky);
    color: #fff; font-weight: 600; font-size: 0.95rem; border: none;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s ease; cursor: pointer;
    box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}
.lp-btn-primary:hover {
    background: var(--sky-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.35);
}
.lp-btn-secondary {
    padding: 0.78rem 1.8rem; border-radius: 10px;
    background: transparent; border: 1.5px solid var(--border);
    color: var(--ink); font-weight: 500; font-size: 0.95rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s ease; cursor: pointer;
}
.lp-btn-secondary:hover { border-color: var(--sky); color: var(--sky); }

.lp-hero-visual { position: relative; }
.lp-dashboard-preview {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.lp-preview-bar { display: flex; gap: 0.4rem; margin-bottom: 1rem; }
.lp-preview-dot { width: 8px; height: 8px; border-radius: 50%; }
.lp-preview-dot:nth-child(1) { background: #ef4444; }
.lp-preview-dot:nth-child(2) { background: #f59e0b; }
.lp-preview-dot:nth-child(3) { background: #10b981; }
.lp-preview-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-preview-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem; border-radius: 0.5rem;
    background: var(--sky-xl); border: 1px solid var(--border);
}
.lp-preview-row .badge-sm {
    padding: 0.2rem 0.6rem; border-radius: 0.3rem; font-size: 0.7rem; font-weight: 600;
}
.lp-preview-row .text-dim { color: var(--muted); font-size: 0.82rem; }
.lp-preview-row .text-light-dim { color: var(--ink); font-size: 0.85rem; font-weight: 500; }
.lp-float-card {
    position: absolute; padding: 0.75rem 1rem; border-radius: 12px;
    background: var(--white); border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    color: var(--ink); font-size: 0.8rem;
    animation: lp-float 6s ease-in-out infinite;
}
.lp-float-card.card-1 { top: -10px; right: -20px; animation-delay: 0s; }
.lp-float-card.card-2 { bottom: 20px; left: -30px; animation-delay: 2s; }
.lp-float-card .bi-check-circle-fill { color: var(--green) !important; }
.lp-float-card .bi-airplane { color: var(--sky) !important; }
.lp-float-card span { color: var(--muted) !important; }
@keyframes lp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.lp-stats {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}
.lp-stat-item { text-align: center; }
.lp-stat-number {
    font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.lp-stat-label { color: var(--muted); font-size: 0.78rem; font-weight: 500; margin-top: 0.25rem; }

.lp-section { padding: 6rem 0; position: relative; }
.lp-section-dark { background: var(--white); }
.lp-section-darker { background: var(--sky-xl); }
.lp-section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
    color: var(--ink); text-align: center; margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}
.lp-section-sub {
    color: var(--muted); text-align: center; font-size: 1rem;
    max-width: 560px; margin: 0 auto 3.5rem;
}
.lp-feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem 1.5rem; height: 100%;
    transition: all 0.25s ease; position: relative; overflow: hidden;
}
.lp-feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--purple));
    opacity: 0; transition: opacity 0.25s ease;
}
.lp-feature-card:hover {
    border-color: rgba(14,165,233,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14,165,233,0.1);
}
.lp-feature-card:hover::before { opacity: 1; }
.lp-feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
}
.lp-feature-icon.blue { background: rgba(14,165,233,0.1); color: var(--sky); }
.lp-feature-icon.indigo { background: rgba(139,92,246,0.1); color: var(--purple); }
.lp-feature-icon.emerald { background: rgba(16,185,129,0.1); color: var(--green); }
.lp-feature-icon.amber { background: rgba(245,158,11,0.1); color: var(--gold); }
.lp-feature-icon.rose { background: rgba(244,63,94,0.1); color: #fb7185; }
.lp-feature-icon.cyan { background: rgba(6,182,212,0.1); color: #22d3ee; }
.lp-feature-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.lp-feature-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin: 0; }

.lp-workflow-step {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 1.5rem; border-radius: 12px;
    background: var(--white); border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.lp-workflow-step:hover {
    border-color: rgba(14,165,233,0.3);
    box-shadow: 0 4px 12px rgba(14,165,233,0.08);
}
.lp-step-number {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
    background: var(--sky-lt); color: var(--sky-dark);
    border: 1px solid rgba(14,165,233,0.2);
}
.lp-step-title { font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; font-size: 1.05rem; }
.lp-step-desc { color: var(--muted); font-size: 0.88rem; margin: 0; line-height: 1.75; }
.lp-workflow-connector {
    width: 2px; height: 30px;
    background: linear-gradient(to bottom, var(--sky), var(--purple));
    margin: 0 auto;
}

.lp-role-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 1.75rem; height: 100%;
    transition: all 0.25s ease;
}
.lp-role-card:hover {
    border-color: rgba(14,165,233,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14,165,233,0.1);
}
.lp-role-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem;
}
.lp-role-name { font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: 0.5rem; }
.lp-role-perms { list-style: none; padding: 0; margin: 0; }
.lp-role-perms li {
    font-size: 0.82rem; color: var(--muted); padding: 0.25rem 0;
    display: flex; align-items: center; gap: 0.5rem;
}
.lp-role-perms li i { color: var(--sky); font-size: 0.7rem; }

.lp-pages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.lp-page-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; border-radius: 12px;
    background: var(--white); border: 1px solid var(--border);
    transition: all 0.25s ease; text-decoration: none;
}
.lp-page-item:hover {
    border-color: rgba(14,165,233,0.3);
    box-shadow: 0 4px 12px rgba(14,165,233,0.08);
    transform: translateX(4px);
}
.lp-page-icon {
    width: 36px; height: 36px; border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(14,165,233,0.1); color: var(--sky); font-size: 1rem; flex-shrink: 0;
}
.lp-page-name { color: var(--ink); font-weight: 500; font-size: 0.9rem; }
.lp-page-sub { color: var(--muted); font-size: 0.75rem; }

.lp-cta {
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-cta::before { display: none; }
.lp-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.lp-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
.lp-cta .lp-btn-primary {
    background: var(--white); color: var(--sky-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.lp-cta .lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--sky-dark);
}

.lp-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.visible { opacity: 1; transform: translateY(0); }

.es-animate-in {
    animation: es-fade-up 0.7s ease forwards;
}
.es-animate-delay-1 { animation: es-fade-up 0.7s 0.15s ease forwards; opacity: 0; }
.es-animate-delay-2 { animation: es-fade-up 0.7s 0.3s ease forwards; opacity: 0; }
.es-animate-delay-3 { animation: es-fade-up 0.7s 0.45s ease forwards; opacity: 0; }
@keyframes es-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lp-hamburger {
    background: none; border: none;
    color: var(--ink); font-size: 1.5rem;
    cursor: pointer; padding: 0.2rem 0.4rem; line-height: 1;
}
.lp-mobile-menu {
    display: none; position: fixed;
    inset: 0; z-index: 999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center; justify-content: center; gap: 0.25rem;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: none; border: none;
    color: var(--muted); font-size: 1.6rem;
    cursor: pointer; padding: 0.4rem;
    transition: color 0.2s;
}
.lp-mobile-menu-close:hover { color: var(--ink); }
.lp-mobile-nav-link {
    color: var(--muted); text-decoration: none;
    font-size: 1.25rem; font-weight: 500;
    padding: 0.7rem 2.5rem; border-radius: 0.6rem;
    transition: all 0.2s; width: 100%; max-width: 300px; text-align: center;
}
.lp-mobile-nav-link:hover { color: var(--sky); background: var(--sky-xl); }

@media (max-width: 991px) {
    .lp-nav-links { display: none !important; }
}

@media (max-width: 767px) {
    .lp-hero {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 4rem;
        align-items: flex-start;
    }
    .lp-hero h1 { font-size: 2rem; letter-spacing: -0.01em; }
    .lp-hero-sub { font-size: 0.97rem; max-width: 100%; margin-bottom: 2rem; }
    .lp-hero-actions { flex-direction: column; }
    .lp-hero-actions > * { width: 100%; justify-content: center; text-align: center; }
    .lp-hero-visual { margin-top: 2.5rem; }
    .lp-float-card { display: none; }
    .lp-preview-row .text-dim { display: none; }
    .lp-preview-row .text-light-dim { font-size: 0.78rem; }

    .lp-section { padding: 3.5rem 0; }
    .lp-section-sub { font-size: 0.95rem; margin-bottom: 2.5rem; }

    .lp-stats { padding: 2rem 0; }
    .lp-pages-grid { grid-template-columns: 1fr; }

    .lp-cta { padding: 3.5rem 0; }
    .lp-cta h2 { font-size: 1.6rem; }
    .lp-cta p { font-size: 0.95rem; }

    .lp-feature-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .lp-hero h1 { font-size: 1.75rem; }
    .lp-stat-number { font-size: 1.5rem; }
    .lp-dashboard-preview { padding: 1rem; }
    .lp-preview-row { padding: 0.5rem 0.75rem; gap: 0.5rem; }
}

.lp-footer {
    background: var(--ink); border-top: none;
    padding: 2.5rem 0; text-align: center;
}
.lp-footer p { color: rgba(255,255,255,0.3); font-size: 0.82rem; margin: 0; }
.lp-footer-links {
    display: flex; justify-content: center; gap: 1.5rem;
    flex-wrap: wrap; margin-bottom: 0.75rem;
}
.lp-footer-links a {
    color: rgba(255,255,255,0.45); font-size: 0.83rem; text-decoration: none;
    transition: color 0.2s ease;
}
.lp-footer-links a:hover { color: var(--sky); }

.lp-contact-hq {
    background: var(--white);
    padding: 6rem 0;
}
.lp-contact-header {
    text-align: center; margin-bottom: 3.5rem;
}
.lp-contact-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink);
    margin-bottom: 0.5rem; letter-spacing: -0.5px;
}
.lp-contact-header p {
    color: var(--muted); font-size: 1rem;
}

.lp-contact-hq .lp-hero-badge {
    background: var(--sky-lt); color: var(--sky-dark);
    border-color: rgba(14,165,233,0.2);
}
.lp-contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 1.75rem 1.5rem; height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-contact-card:hover {
    border-color: rgba(14,165,233,0.3);
    box-shadow: 0 8px 24px rgba(14,165,233,0.08);
}
.lp-contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1rem;
}
.lp-contact-card h5 {
    color: var(--ink); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem;
}
.lp-contact-card p { color: var(--muted); font-size: 0.8rem; margin: 0; line-height: 1.8; }
.lp-contact-card a {
    color: var(--sky); font-size: 0.88rem; font-weight: 500;
    text-decoration: none; display: block; word-break: break-all;
}
.lp-contact-card a:hover { text-decoration: underline; }
.lp-badge-247 {
    display: inline-block;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    color: var(--green); font-size: 0.65rem; font-weight: 700;
    padding: 1px 6px; border-radius: 50px;
    letter-spacing: 0.5px; margin-left: 0.35rem; vertical-align: middle;
}
.lp-map-frame {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.lp-agency-banner {
    display: flex; align-items: center; gap: 1.25rem;
    background: linear-gradient(135deg, rgba(14,165,233,0.06) 0%, rgba(139,92,246,0.06) 100%);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 16px; padding: 1.25rem 1.75rem;
    text-decoration: none; transition: border-color 0.25s ease, background 0.25s ease;
}
.lp-agency-banner:hover {
    border-color: rgba(14,165,233,0.4);
    background: linear-gradient(135deg, rgba(14,165,233,0.1) 0%, rgba(139,92,246,0.1) 100%);
}
.lp-agency-banner-icon {
    width: 3.25rem; height: 3.25rem; flex-shrink: 0;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: rgba(14,165,233,0.1); font-size: 1.4rem; color: var(--sky);
}
.lp-agency-banner-body { flex: 1; }
.lp-agency-banner-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.lp-agency-banner-url { font-size: 0.82rem; color: var(--muted); margin-top: 0.1rem; }
.lp-agency-banner-cta {
    flex-shrink: 0; font-size: 0.875rem; font-weight: 600;
    color: var(--sky); white-space: nowrap;
}
@media (max-width: 768px) {
    .lp-contact-hq { padding: 4rem 0; }
    .lp-contact-header h2 { font-size: 1.7rem; }
    .lp-map-frame { height: 220px !important; }
    .lp-agency-banner { flex-wrap: wrap; gap: 1rem; }
    .lp-agency-banner-cta { width: 100%; padding-top: 0.5rem; border-top: 1px solid var(--border); }
}
