/* =====================================================
   Logistics — Design System
   ===================================================== */

:root {
    --brand-50: #eef4ff;
    --brand-100: #dbe6ff;
    --brand-300: #93b4ff;
    --brand-500: #2563eb;
    --brand-600: #1d4ed8;
    --brand-700: #1e40af;

    --ink-900: #0b1220;
    --ink-800: #111a2e;
    --ink-700: #1e293b;
    --ink-500: #64748b;
    --ink-400: #94a3b8;
    --ink-200: #e2e8f0;
    --ink-100: #f1f5f9;
    --ink-50: #f8fafc;

    --ok: #10b981;
    --warn: #f59e0b;
    --danger: #ef4444;

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --shadow: 0 12px 32px rgba(15, 23, 42, .08);
    --shadow-lg: 0 28px 70px rgba(15, 23, 42, .14);
    --shadow-brand: 0 18px 45px rgba(37, 99, 235, .35);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", "Inter", system-ui, sans-serif;
    background: #ffffff;
    color: var(--ink-700);
    -webkit-font-smoothing: antialiased;
}

body.ltr-body {
    font-family: "Inter", "Cairo", system-ui, sans-serif;
}

a {
    text-decoration: none;
}

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


/* =====================================================
   Reveal on scroll
   ===================================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

    [data-reveal].is-visible {
        opacity: 1;
        transform: none;
    }

[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =====================================================
   Buttons
   ===================================================== */

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid transparent;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
}

    .lp-btn:hover {
        transform: translateY(-2px);
    }

    .lp-btn:active {
        transform: translateY(0);
    }

.lp-btn--primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: var(--shadow-brand);
}

    .lp-btn--primary:hover {
        color: #fff;
        box-shadow: 0 22px 55px rgba(37, 99, 235, .45);
    }

.lp-btn--ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
    backdrop-filter: blur(6px);
}

    .lp-btn--ghost:hover {
        background: rgba(255, 255, 255, .16);
        color: #fff;
    }

.lp-btn--light {
    background: #fff;
    color: var(--brand-600);
    box-shadow: 0 16px 40px rgba(2, 6, 23, .25);
}

    .lp-btn--light:hover {
        color: var(--brand-700);
    }

.lp-btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

    .lp-btn--outline:hover {
        background: rgba(255, 255, 255, .12);
        color: #fff;
    }


/* =====================================================
   Public navbar
   ===================================================== */

.public-navbar {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--ink-200);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.4px;
}

    .brand i {
        color: var(--brand-500);
    }


/* =====================================================
   HERO
   ===================================================== */

.lp-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(120% 120% at 50% 0%, #16264a 0%, var(--ink-900) 55%, #060b16 100%);
    padding: 96px 0 120px;
    isolation: isolate;
}

.lp-hero__inner {
    position: relative;
    z-index: 3;
}

/* aurora blobs */
.lp-hero__aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: blur(70px);
    opacity: .55;
}

.blob {
    position: absolute;
    border-radius: 50%;
    display: block;
}

.blob--1 {
    width: 520px;
    height: 520px;
    background: #2563eb;
    top: -180px;
    inset-inline-start: -120px;
    animation: float-a 16s ease-in-out infinite;
}

.blob--2 {
    width: 460px;
    height: 460px;
    background: #7c3aed;
    top: 40px;
    inset-inline-end: -140px;
    animation: float-b 19s ease-in-out infinite;
}

.blob--3 {
    width: 420px;
    height: 420px;
    background: #06b6d4;
    bottom: -220px;
    inset-inline-start: 40%;
    animation: float-a 22s ease-in-out infinite reverse;
}

@keyframes float-a {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50%      { transform: translate3d(0,60px,0) scale(1.08); }
}

@keyframes float-b {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50%      { transform: translate3d(0,-50px,0) scale(1.12); }
}

/* subtle grid */
.lp-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
}

.lp-hero__fade {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 3;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #dbeafe;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    margin-bottom: 26px;
}

.lp-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .7);
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    70%  { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.lp-hero__title {
    font-size: clamp(2.2rem, 4.6vw, 3.9rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #ffffff 30%, #b9cdf5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero__subtitle {
    font-size: 1.12rem;
    line-height: 2;
    color: #a9bcd8;
    max-width: 560px;
    margin-bottom: 26px;
}

.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
}

    .lp-checklist li {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #cbd9ef;
        font-size: 15px;
        font-weight: 600;
    }

    .lp-checklist i {
        color: #34d399;
        font-size: 15px;
    }

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =====================================================
   HERO — dashboard mockup
   ===================================================== */

.lp-mock {
    position: relative;
    perspective: 1400px;
    padding: 26px 10px;
}

.lp-mock__window {
    background: rgba(255, 255, 255, .96);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(2, 6, 23, .55);
    border: 1px solid rgba(255, 255, 255, .5);
    transform: rotateY(-7deg) rotateX(4deg);
    transition: transform .6s var(--ease);
}

.lp-mock:hover .lp-mock__window {
    transform: rotateY(0deg) rotateX(0deg);
}

html[dir="ltr"] .lp-mock__window {
    transform: rotateY(7deg) rotateX(4deg);
}

html[dir="ltr"] .lp-mock:hover .lp-mock__window {
    transform: rotateY(0deg) rotateX(0deg);
}

.lp-mock__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 18px;
    background: var(--ink-100);
    border-bottom: 1px solid var(--ink-200);
}

    .lp-mock__bar span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5e1;
    }

        .lp-mock__bar span:first-child { background: #f87171; }
        .lp-mock__bar span:nth-child(2) { background: #fbbf24; }
        .lp-mock__bar span:nth-child(3) { background: #34d399; }

    .lp-mock__bar em {
        margin-inline-start: auto;
        font-style: normal;
        font-size: 12px;
        font-weight: 700;
        color: var(--ink-400);
    }

.lp-mock__body {
    padding: 20px;
}

.lp-mock__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.kpi {
    background: var(--ink-50);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.kpi__label {
    font-size: 11px;
    color: var(--ink-400);
    font-weight: 700;
}

.kpi__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink-800);
    line-height: 1.1;
}

.kpi__trend {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-400);
}

    .kpi__trend.up {
        color: var(--ok);
    }

.lp-mock__chart {
    background: var(--ink-50);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 108px;
}

    .bars i {
        flex: 1;
        height: var(--h);
        border-radius: 6px 6px 3px 3px;
        background: linear-gradient(180deg, #60a5fa, #2563eb);
        transform-origin: bottom;
        animation: bar-rise .9s var(--ease) backwards;
    }

        .bars i:nth-child(1) { animation-delay: .05s; }
        .bars i:nth-child(2) { animation-delay: .12s; }
        .bars i:nth-child(3) { animation-delay: .19s; }
        .bars i:nth-child(4) { animation-delay: .26s; }
        .bars i:nth-child(5) { animation-delay: .33s; }
        .bars i:nth-child(6) { animation-delay: .40s; background: linear-gradient(180deg, #34d399, #059669); }
        .bars i:nth-child(7) { animation-delay: .47s; }

@keyframes bar-rise {
    from { transform: scaleY(0); opacity: 0; }
    to   { transform: scaleY(1); opacity: 1; }
}

.lp-mock__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.row-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--ink-50);
    border: 1px solid var(--ink-200);
    border-radius: 10px;
    font-size: 13px;
}

    .row-item .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex: none;
    }

        .row-item .dot.ok { background: var(--ok); }
        .row-item .dot.warn { background: var(--warn); }

    .row-item .route {
        font-weight: 700;
        color: var(--ink-700);
        letter-spacing: .3px;
    }

    .row-item .tag {
        margin-inline-start: auto;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 100px;
    }

    .row-item .tag--ok {
        background: #d1fae5;
        color: #047857;
    }

    .row-item .tag--warn {
        background: #fef3c7;
        color: #b45309;
    }

/* floating chips */
.lp-mock__chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(2, 6, 23, .35);
    border: 1px solid rgba(255, 255, 255, .7);
}

    .lp-mock__chip strong {
        display: block;
        font-size: 14px;
        color: var(--ink-800);
        line-height: 1.3;
    }

    .lp-mock__chip small {
        font-size: 12px;
        color: var(--ink-500);
    }

.lp-mock__chip--live {
    top: 0;
    inset-inline-start: -14px;
    animation: chip-float 5s ease-in-out infinite;
}

.lp-mock__chip--ontime {
    bottom: 4px;
    inset-inline-end: -10px;
    animation: chip-float 6.5s ease-in-out infinite reverse;
}

    .lp-mock__chip--ontime i {
        color: var(--ok);
        font-size: 20px;
    }

@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--danger);
    flex: none;
    position: relative;
}

    .pulse::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: var(--danger);
        animation: ripple 1.8s ease-out infinite;
    }

@keyframes ripple {
    from { transform: scale(1); opacity: .7; }
    to   { transform: scale(2.8); opacity: 0; }
}


/* =====================================================
   TRUST STRIP
   ===================================================== */

.lp-trust {
    padding: 46px 0 10px;
    background: #fff;
}

.lp-trust__label {
    text-align: center;
    color: var(--ink-400);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.lp-trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 52px;
}

    .lp-trust__logos span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-weight: 800;
        font-size: 18px;
        letter-spacing: 1px;
        color: var(--ink-400);
        opacity: .75;
        transition: color .3s var(--ease), opacity .3s var(--ease);
    }

        .lp-trust__logos span:hover {
            color: var(--brand-600);
            opacity: 1;
        }

    .lp-trust__logos i {
        font-size: 20px;
    }


/* =====================================================
   STATS
   ===================================================== */

.lp-stats {
    padding: 56px 0;
    background: #fff;
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-stat {
    text-align: center;
    padding: 34px 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff, var(--ink-50));
    border: 1px solid var(--ink-200);
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

    .lp-stat:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
        border-color: var(--brand-300);
    }

.lp-stat__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--brand-600);
    background: var(--brand-50);
}

.lp-stat__num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
    letter-spacing: -1px;
}

    .lp-stat__num .suffix {
        color: var(--brand-500);
    }

.lp-stat p {
    margin: 8px 0 0;
    color: var(--ink-500);
    font-weight: 600;
}


/* =====================================================
   SECTIONS
   ===================================================== */

.lp-section {
    padding: 86px 0;
    background: #fff;
}

.lp-section--alt {
    background: linear-gradient(180deg, var(--ink-50), #fff);
}

.lp-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

    .lp-head h2 {
        font-size: clamp(1.7rem, 3vw, 2.5rem);
        font-weight: 800;
        color: var(--ink-900);
        letter-spacing: -.6px;
        margin-bottom: 14px;
    }

    .lp-head p {
        color: var(--ink-500);
        font-size: 1.05rem;
        line-height: 1.9;
        margin: 0;
    }

.lp-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 16px;
}


/* =====================================================
   FEATURES — bento grid
   ===================================================== */

.lp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lp-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--ink-200);
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

    .lp-card::before {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 0;
        height: 3px;
        width: 0;
        background: linear-gradient(90deg, var(--brand-500), #7c3aed);
        transition: width .45s var(--ease);
    }

    .lp-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

        .lp-card:hover::before {
            width: 100%;
        }

.lp-card--wide {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
}

.lp-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 25px;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .14);
}

.grad-blue   { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.grad-green  { background: linear-gradient(135deg, #34d399, #059669); }
.grad-amber  { background: linear-gradient(135deg, #fbbf24, #d97706); }
.grad-violet { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.grad-rose   { background: linear-gradient(135deg, #fb7185, #e11d48); }
.grad-cyan   { background: linear-gradient(135deg, #22d3ee, #0891b2); }

.lp-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 12px;
}

.lp-card p {
    color: var(--ink-500);
    line-height: 1.95;
    margin: 0;
}

.lp-card__visual {
    position: absolute;
    inset-inline-end: 34px;
    bottom: 26px;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    pointer-events: none;
}

    .lp-card__visual i {
        font-size: 34px;
        color: var(--brand-500);
        position: relative;
        z-index: 2;
    }

    .lp-card__visual .ping {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid var(--brand-300);
        opacity: 0;
        animation: ping 2.6s ease-out infinite;
    }

    .lp-card__visual .ping--2 {
        animation-delay: 1.3s;
    }

@keyframes ping {
    0%   { transform: scale(.5); opacity: .8; }
    100% { transform: scale(1.9); opacity: 0; }
}


/* =====================================================
   HOW IT WORKS
   ===================================================== */

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.lp-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 38px 30px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

    .lp-step:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.lp-step__num {
    position: absolute;
    top: 18px;
    inset-inline-end: 24px;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--ink-100);
    line-height: 1;
    letter-spacing: -2px;
}

.lp-step__icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 25px;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .3);
}

.lp-step h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 10px;
}

.lp-step p {
    color: var(--ink-500);
    line-height: 1.9;
    margin: 0;
    font-size: .97rem;
}


/* =====================================================
   CTA
   ===================================================== */

.lp-cta-wrap {
    padding: 20px 0 96px;
    background: #fff;
}

.lp-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 45%, #4f46e5 100%);
    padding: 72px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.lp-cta__glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.28), transparent 62%);
    top: -230px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.lp-cta__content {
    position: relative;
    z-index: 2;
}

.lp-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.6px;
    margin-bottom: 14px;
}

.lp-cta p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 620px;
    margin: 0 auto 32px;
}

.lp-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* =====================================================
   AUTH pages (login / register)
   ===================================================== */

.login-box {
    background: #fff;
    max-width: 520px;
    margin: 56px auto;
    padding: 46px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--ink-200);
    box-shadow: var(--shadow-lg);
}

.login-icon {
    width: 82px;
    height: 82px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 16px 34px rgba(37, 99, 235, .35);
}

.input-group-text {
    background: var(--ink-100);
    border: 1px solid var(--ink-200);
    border-inline-end: 0;
    color: var(--ink-500);
}

.form-control,
.form-select {
    border: 1px solid var(--ink-200);
    background: var(--ink-50);
    padding: 13px 15px;
    border-radius: 10px;
}

    .form-control:focus,
    .form-select:focus {
        background: #fff;
        border-color: var(--brand-300);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
    }

.input-group > .form-control {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
}

.input-group > .input-group-text {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
}


/* =====================================================
   DASHBOARD layout (authenticated)
   ===================================================== */

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--ink-50);
}

.sidebar {
    width: 280px;
    background: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    border-inline-end: 1px solid var(--ink-200);
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 32px;
}

.logo-icon {
    width: 62px;
    height: 62px;
    margin: auto auto 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 27px;
    box-shadow: 0 12px 26px rgba(37, 99, 235, .3);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-menu li {
        margin-bottom: 6px;
    }

    .sidebar-menu a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 14px;
        color: var(--ink-700);
        border-radius: 12px;
        font-weight: 600;
        transition: background .25s var(--ease), color .25s var(--ease);
    }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: var(--brand-50);
            color: var(--brand-600);
        }

.sidebar-bottom {
    margin-top: auto;
    padding-top: 18px;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--danger);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: background .25s var(--ease);
}

    .logout-btn:hover {
        background: #fef2f2;
        color: var(--danger);
    }

.dashboard-content {
    flex: 1;
    min-width: 0;
}

.topbar {
    background: #fff;
    padding: 18px 32px;
    border-bottom: 1px solid var(--ink-200);
}

.user-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.page-content {
    padding: 30px;
}


/* =====================================================
   FOOTER
   ===================================================== */

.public-footer {
    background: var(--ink-900);
    color: #fff;
    padding: 30px 0;
    border: 0;
}

    .public-footer p,
    .public-footer .text-muted {
        color: rgba(255, 255, 255, .62) !important;
        margin: 0;
    }


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1199.98px) {
    .lp-mock__chip--live { inset-inline-start: 0; }
    .lp-mock__chip--ontime { inset-inline-end: 0; }
}

@media (max-width: 991.98px) {
    .lp-hero {
        padding: 66px 0 90px;
        text-align: center;
    }

    .lp-checklist,
    .lp-hero__actions {
        justify-content: center;
    }

    .lp-hero__subtitle {
        margin-inline: auto;
    }

    .lp-mock__window,
    html[dir="ltr"] .lp-mock__window {
        transform: none;
    }

    .lp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-card--wide {
        grid-column: span 2;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .sidebar {
        width: 92px;
        padding: 18px 12px;
    }

        .sidebar h4,
        .sidebar-menu a span,
        .logout-btn span {
            display: none;
        }

        .sidebar-menu a,
        .logout-btn {
            justify-content: center;
        }

    .sidebar-menu i {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .lp-section {
        padding: 60px 0;
    }

    .lp-bento,
    .lp-stats__grid {
        grid-template-columns: 1fr;
    }

    .lp-card--wide {
        grid-column: span 1;
        min-height: auto;
    }

    .lp-card__visual {
        display: none;
    }

    .lp-mock__chip {
        display: none;
    }

    .lp-cta {
        padding: 52px 24px;
    }

    .login-box {
        padding: 32px 22px;
        margin: 32px auto;
    }

    .dashboard-wrapper {
        display: block;
    }

    .sidebar {
        width: 100%;
        border-inline-end: 0;
        border-bottom: 1px solid var(--ink-200);
    }

    .topbar {
        padding: 14px 18px;
    }

    .page-content {
        padding: 18px;
    }

    .sidebar-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--ink-200);
        border-radius: 10px;
        background: #fff;
        color: var(--ink-700);
        font-size: 20px;
        cursor: pointer;
        margin-bottom: 12px;
    }

    .sidebar {
        position: fixed;
        top: 0;
        inset-inline-start: 0;
        height: 100vh;
        z-index: 1040;
        transform: translateX(-100%);
        transition: transform .3s var(--ease);
        box-shadow: var(--shadow-lg);
    }

    html[dir="ltr"] .sidebar {
        transform: translateX(-100%);
    }

    html[dir="rtl"] .sidebar {
        transform: translateX(100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    html[dir="ltr"] .sidebar.open,
    html[dir="rtl"] .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 1030;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    @media (min-width: 992px) {
        .sidebar {
            position: sticky;
            top: 0;
            height: 100vh;
            transform: translateX(0) !important;
        }

        .sidebar-toggle {
            display: none !important;
        }

        .sidebar-overlay {
            display: none !important;
        }
    }
}
