/* ============================================================
   LogisticsPro landing page — "Hero" design (Claude Design import)
   Dark RTL marketing page. Accent: copper #D68A52 on #0B0B0E.
   ============================================================ */

.lp {
    --accent: #D68A52;
    --accent-soft: #eec49f;
    --accent-light: #ffd9b8;
    --blue: #7C8FF0;
    --blue-soft: #a8b5f5;
    --green: #57d98f;
    --green-soft: #7fe6a8;
    --ink: #F3EFE9;
    --bg: #0B0B0E;
    --bg-alt: #101014;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Vazirmatn', 'YekanBakh', Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

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

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

/* ---------- keyframes ---------- */
@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lpDash {
    to { stroke-dashoffset: -200; }
}

@keyframes lpMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes lpFloaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes lpGridMove {
    from { background-position: 0 0; }
    to { background-position: 0 44px; }
}

@keyframes lpStreak {
    0% { transform: translateX(-30vw); opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { transform: translateX(105vw); opacity: 0; }
}

@keyframes lpBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .25; }
}

@keyframes lpFillbar {
    from { width: 0; }
    to { width: 68%; }
}

/* ---------- ambient + road ---------- */
.lp-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 520px at 28% 42%, rgba(214, 138, 82, .14), transparent 65%),
                radial-gradient(700px 400px at 82% 20%, rgba(124, 143, 240, .07), transparent 60%);
}

.lp-road {
    position: absolute;
    left: 0;
    right: 0;
    top: 64vh;
    height: 36vh;
    pointer-events: none;
    perspective: 600px;
}

.lp-road-grid {
    position: absolute;
    inset: 0;
    transform: rotateX(58deg);
    transform-origin: bottom;
    background-image: repeating-linear-gradient(0deg, rgba(243, 239, 233, .07) 0 1px, transparent 1px 44px),
                      repeating-linear-gradient(90deg, rgba(243, 239, 233, .06) 0 1px, transparent 1px 72px);
    animation: lpGridMove 1.1s linear infinite;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 85%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 85%);
}

.lp-streak {
    position: absolute;
    left: 0;
    border-radius: 4px;
}

.lp-streak-1 {
    bottom: 14%;
    width: 220px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light));
    filter: blur(1px);
    box-shadow: 0 0 18px var(--accent);
    animation: lpStreak 2.6s linear infinite;
}

.lp-streak-2 {
    bottom: 26%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243, 239, 233, .9));
    filter: blur(1px);
    box-shadow: 0 0 12px rgba(243, 239, 233, .7);
    animation: lpStreak 3.4s linear 1.2s infinite;
}

.lp-streak-3 {
    bottom: 8%;
    width: 280px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent));
    filter: blur(2px);
    box-shadow: 0 0 24px var(--accent);
    animation: lpStreak 2s linear .7s infinite;
}

/* ---------- nav ---------- */
.lp-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 52px;
    opacity: 0;
    animation: lpFadeUp .8s cubic-bezier(.2, .7, .2, 1) .1s both;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.lp-brand-name {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.3px;
}

.lp-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 15px;
}

.lp-menu a {
    color: rgba(243, 239, 233, .7);
    transition: color .2s ease;
}

.lp-menu a:hover,
.lp-menu a.active {
    color: var(--ink);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* login dropdown (CSS hover + JS .open for touch) */
.lp-login {
    position: relative;
}

.lp-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid rgba(243, 239, 233, .18);
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .2s ease;
}

.lp-login-btn:hover {
    border-color: rgba(243, 239, 233, .45);
}

.lp-caret {
    font-size: 10px;
    color: rgba(243, 239, 233, .55);
}

.lp-login-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    z-index: 50;
    display: none;
}

.lp-login:hover .lp-login-menu,
.lp-login.open .lp-login-menu {
    display: block;
}

.lp-login-panel {
    width: 230px;
    border-radius: 15px;
    border: 1px solid rgba(243, 239, 233, .14);
    background: rgba(18, 18, 23, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, .85);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-login-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 11px 15px;
    border-radius: 10px;
    transition: background .2s ease;
}

.lp-login-item:hover {
    background: rgba(214, 138, 82, .12);
}

.lp-login-item b {
    font-size: 13.5px;
}

.lp-login-item span {
    font-size: 11.5px;
    color: rgba(243, 239, 233, .45);
}

.lp-cta-sm {
    padding: 10px 24px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--bg) !important;
    font-weight: 700;
    font-size: 14.5px;
    transition: filter .2s ease;
}

.lp-cta-sm:hover {
    filter: brightness(1.12);
}

/* ---------- buttons ---------- */
.lp-btn-primary {
    display: inline-block;
    border-radius: 15px;
    background: var(--accent);
    color: var(--bg) !important;
    font-weight: 800;
    box-shadow: 0 12px 40px -8px rgba(214, 138, 82, .55);
    transition: transform .2s ease, filter .2s ease;
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.lp-btn-ghost {
    display: inline-block;
    border-radius: 15px;
    border: 1px solid rgba(243, 239, 233, .22);
    color: var(--ink);
    font-weight: 600;
    transition: border-color .2s ease, color .2s ease;
}

.lp-btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-soft);
}

.lp-btn-blue {
    display: inline-block;
    border-radius: 13px;
    border: 1px solid rgba(124, 143, 240, .45);
    color: var(--blue-soft) !important;
    font-weight: 700;
    transition: background .2s ease;
}

.lp-btn-blue:hover {
    background: rgba(124, 143, 240, .12);
}

.lp-btn-lg {
    padding: 17px 38px;
    font-size: 17px;
}

.lp-btn-ghost.lp-btn-lg {
    padding: 17px 32px;
    font-size: 16px;
}

.lp-btn-md {
    align-self: flex-start;
    margin-top: 8px;
    padding: 14px 32px;
    border-radius: 13px;
    font-size: 15px;
}

.lp-btn-ghost.lp-btn-md {
    font-weight: 700;
}

/* ---------- hero ---------- */
.lp-hero {
    position: relative;
    z-index: 4;
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 24px;
    padding: 0 52px 90px;
}

.lp-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 640px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(214, 138, 82, .4);
    background: rgba(214, 138, 82, .08);
    font-size: 13.5px;
    color: var(--accent-soft);
    opacity: 0;
    animation: lpFadeUp .8s cubic-bezier(.2, .7, .2, 1) .25s both;
}

.lp-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: lpBlink 1.6s ease infinite;
    flex-shrink: 0;
}

.lp-h1 {
    margin: 0;
    font-size: clamp(54px, 6.6vw, 104px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1px;
}

.lp-h1-line {
    display: block;
    overflow: hidden;
}

.lp-h1-word {
    display: inline-block;
    opacity: 0;
}

.lp-h1-word-1 {
    animation: lpFadeUp .9s cubic-bezier(.2, .7, .2, 1) .35s both;
}

.lp-h1-word-2 {
    animation: lpFadeUp .9s cubic-bezier(.2, .7, .2, 1) .55s both;
}

.lp-grad-text {
    background: linear-gradient(90deg, var(--accent), var(--accent-light) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-lede {
    margin: 0;
    font-size: 19px;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(243, 239, 233, .62);
    max-width: 520px;
    text-wrap: pretty;
    opacity: 0;
    animation: lpFadeUp .9s cubic-bezier(.2, .7, .2, 1) .78s both;
}

.lp-hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: lpFadeUp .9s cubic-bezier(.2, .7, .2, 1) .95s both;
}

.lp-cta-inner .lp-hero-ctas {
    justify-content: center;
    opacity: 1;
    animation: none;
}

.lp-stats {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 14px;
    opacity: 0;
    animation: lpFadeUp .9s cubic-bezier(.2, .7, .2, 1) 1.15s both;
}

.lp-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px;
}

.lp-stat:first-child {
    padding-right: 0;
}

.lp-stat:not(:last-child) {
    border-left: 1px solid rgba(243, 239, 233, .12);
}

.lp-stat-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
}

.lp-stat-accent {
    color: var(--accent);
}

.lp-stat-label {
    font-size: 13px;
    color: rgba(243, 239, 233, .5);
}

/* ---------- visual stage ---------- */
.lp-stage {
    position: relative;
    height: 70vh;
    min-height: 480px;
    opacity: 0;
    animation: lpFadeUp 1.1s cubic-bezier(.2, .7, .2, 1) .6s both;
}

.lp-routes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.lp-dash { animation: lpDash 4s linear infinite; }
.lp-dash-5s { animation-duration: 5s; }
.lp-dash-6s { animation-duration: 6s; }

.lp-glow-copper { filter: drop-shadow(0 0 8px #D68A52); }
.lp-glow-cream { filter: drop-shadow(0 0 6px rgba(243, 239, 233, .9)); }
.lp-glow-blue { filter: drop-shadow(0 0 6px #7C8FF0); }

.lp-float {
    position: absolute;
    will-change: transform;
}

.lp-float-ship {
    top: 34%;
    right: 22%;
    width: 320px;
}

.lp-float-chip1 { top: 8%; right: 6%; }
.lp-float-chip2 { top: 16%; left: 4%; }
.lp-float-chip3 { bottom: 22%; left: 10%; }
.lp-float-chip4 { bottom: 8%; right: 14%; }

.lp-ship-card {
    border-radius: 20px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(20, 20, 25, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 22px 24px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
    animation: lpFloaty 6s ease-in-out infinite;
}

.lp-ship-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-ship-id {
    font-size: 13px;
    color: rgba(243, 239, 233, .5);
}

.lp-pill-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px;
    border-radius: 100px;
    background: rgba(87, 217, 143, .12);
    border: 1px solid rgba(87, 217, 143, .35);
    font-size: 12px;
    color: var(--green-soft);
}

.lp-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: lpBlink 1.4s ease infinite;
}

.lp-ship-route {
    margin-top: 14px;
    font-size: 21px;
    font-weight: 800;
}

.lp-ship-meta {
    margin-top: 4px;
    font-size: 13.5px;
    color: rgba(243, 239, 233, .55);
}

.lp-progress {
    margin-top: 18px;
    height: 7px;
    border-radius: 100px;
    background: rgba(243, 239, 233, .1);
    overflow: hidden;
}

.lp-progress-fill {
    height: 100%;
    width: 68%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: lpFillbar 2.4s cubic-bezier(.2, .7, .2, 1) 1.2s both;
}

.lp-ship-foot {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: rgba(243, 239, 233, .5);
}

.lp-ship-eta {
    color: var(--accent-soft);
}

.lp-chip {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    border-radius: 15px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(20, 20, 25, .66);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lp-chip-anim1 { animation: lpFloaty 5s ease-in-out .4s infinite; }
.lp-chip-anim2 { animation: lpFloaty 6.5s ease-in-out 1.1s infinite; }
.lp-chip-anim3 { animation: lpFloaty 5.6s ease-in-out .8s infinite; }
.lp-chip-anim4 { animation: lpFloaty 7s ease-in-out 1.6s infinite; }

.lp-chip-dot {
    width: 9px;
    height: 9px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lp-chip-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lp-chip-text b {
    font-size: 13.5px;
}

.lp-chip-text i {
    font-style: normal;
    font-size: 11.5px;
    color: rgba(243, 239, 233, .5);
}

/* colored square dots (shared) */
.lp-dot-copper { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.lp-dot-blue { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.lp-dot-green { background: var(--green); box-shadow: 0 0 10px var(--green); }
.lp-dot-tan { background: var(--accent-soft); box-shadow: 0 0 10px var(--accent-soft); }
.lp-dot-lilac { background: #b9a6f0; box-shadow: none; }
.lp-dot-rose { background: #f0a6a6; box-shadow: none; }

.lp-sq {
    width: 11px;
    height: 11px;
    border-radius: 4px;
}

.lp-sq-sm {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.lp-sq-md {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    box-shadow: none;
}

/* ---------- ticker ---------- */
.lp-ticker {
    position: relative;
    z-index: 6;
    border-top: 1px solid rgba(243, 239, 233, .1);
    background: rgba(11, 11, 14, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    direction: ltr;
}

.lp-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: lpMarquee 32s linear infinite;
    padding: 13px 0;
}

.lp-ticker-group {
    display: inline-flex;
    align-items: center;
    gap: 44px;
    padding: 0 22px;
    font-size: 13.5px;
    color: rgba(243, 239, 233, .65);
}

.lp-ticker-group b {
    color: var(--accent-soft);
}

.lp-tick-sep {
    color: var(--accent);
}

/* ---------- sections (shared) ---------- */
.lp-section {
    position: relative;
    z-index: 3;
    padding: 120px 52px;
    background: var(--bg);
}

.lp-section-alt {
    background: var(--bg-alt);
    border-top: 1px solid rgba(243, 239, 233, .06);
}

#why { padding: 130px 52px 110px; }

.lp-clip { overflow: hidden; }

.lp-container {
    max-width: 1180px;
    margin: 0 auto;
}

.lp-col {
    display: flex;
    flex-direction: column;
}

.lp-gap-64 { gap: 64px; }
.lp-gap-56 { gap: 56px; }
.lp-gap-52 { gap: 52px; }
.lp-gap-48 { gap: 48px; }
.lp-gap-18 { gap: 18px; }

.lp-sec-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 720px;
}

.lp-sec-head.lp-center {
    align-items: center;
    gap: 14px;
    text-align: center;
    max-width: none;
}

.lp-kicker {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

.lp-h2 {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 900;
    line-height: 1.25;
}

.lp-h2-sm {
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.3;
}

.lp-sub {
    margin: 0;
    font-size: 17px;
    line-height: 2;
    font-weight: 300;
    color: rgba(243, 239, 233, .55);
    text-wrap: pretty;
}

.lp-sub-sm {
    font-size: 15.5px;
}

/* ---------- grids ---------- */
.lp-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.lp-grid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.lp-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.lp-split-wb {
    grid-template-columns: 1.1fr 1fr;
}

/* ---------- value prop cards ---------- */
.lp-vcard {
    border-radius: 20px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .25s ease;
}

.lp-vcard:hover {
    border-color: rgba(214, 138, 82, .5);
}

.lp-vcard h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
}

.lp-vcard p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.95;
    color: rgba(243, 239, 233, .55);
}

/* ---------- three sides ---------- */
.lp-side-card {
    border-radius: 24px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-side-owner {
    border: 1px solid rgba(214, 138, 82, .28);
    background: linear-gradient(160deg, rgba(214, 138, 82, .1), rgba(214, 138, 82, .02) 55%);
}

.lp-side-driver {
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(243, 239, 233, .03);
}

.lp-side-company {
    border: 1px solid rgba(124, 143, 240, .3);
    background: linear-gradient(160deg, rgba(124, 143, 240, .1), rgba(124, 143, 240, .02) 55%);
}

.lp-side-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.lp-tag {
    align-self: flex-start;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12.5px;
}

.lp-tag-copper {
    background: rgba(214, 138, 82, .15);
    border: 1px solid rgba(214, 138, 82, .4);
    color: var(--accent-soft);
}

.lp-tag-cream {
    background: rgba(243, 239, 233, .07);
    border: 1px solid rgba(243, 239, 233, .2);
    color: rgba(243, 239, 233, .75);
}

.lp-tag-blue {
    background: rgba(124, 143, 240, .14);
    border: 1px solid rgba(124, 143, 240, .4);
    color: var(--blue-soft);
}

.lp-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(243, 239, 233, .7);
}

.lp-list li {
    display: flex;
    gap: 11px;
    align-items: baseline;
}

.lp-dash {
    color: var(--accent);
}

.lp-list-blue .lp-dash {
    color: var(--blue-soft);
}

/* ---------- fleet dashboard ---------- */
.lp-fleet-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(700px 400px at 20% 50%, rgba(214, 138, 82, .08), transparent 65%);
}

.lp-split .lp-sec-head {
    gap: 20px;
}

.lp-dash-card {
    border-radius: 24px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(18, 18, 23, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lp-dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-dash-title {
    font-weight: 800;
    font-size: 16px;
}

.lp-dash-dots {
    display: flex;
    gap: 7px;
}

.lp-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-dd-green { background: var(--green); }
.lp-dd-tan { background: var(--accent-soft); }
.lp-dd-dim { background: rgba(243, 239, 233, .25); }

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

.lp-kpi {
    border-radius: 15px;
    background: rgba(243, 239, 233, .05);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lp-kpi b {
    font-size: 26px;
    font-weight: 900;
}

.lp-kpi span {
    font-size: 12px;
    color: rgba(243, 239, 233, .5);
}

.lp-kpi-hl {
    background: rgba(214, 138, 82, .12);
    border: 1px solid rgba(214, 138, 82, .3);
}

.lp-kpi-hl b {
    color: var(--accent-soft);
}

.lp-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 13px;
    background: rgba(243, 239, 233, .04);
    padding: 13px 18px;
    font-size: 13.5px;
}

.lp-row-pill {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11.5px;
    flex-shrink: 0;
}

.lp-pill-green { background: rgba(87, 217, 143, .12); color: var(--green-soft); }
.lp-pill-tan { background: rgba(214, 138, 82, .14); color: var(--accent-soft); }
.lp-pill-blue { background: rgba(124, 143, 240, .15); color: var(--blue-soft); }

/* ---------- waybill ---------- */
.lp-waybill {
    border-radius: 22px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: #f6f2ec;
    color: #1c1a17;
    padding: 36px 38px;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .85);
    transform: rotate(-1.2deg);
}

.lp-wb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(28, 26, 23, .25);
    padding-bottom: 16px;
}

.lp-wb-head b {
    font-size: 17px;
}

.lp-wb-head span {
    font-size: 12px;
    color: rgba(28, 26, 23, .55);
}

.lp-wb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
    padding: 20px 0;
    font-size: 13.5px;
}

.lp-wb-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-wb-field > span {
    color: rgba(28, 26, 23, .5);
    font-size: 11.5px;
}

.lp-wb-plate-field {
    gap: 6px;
}

/* Iranian license plate */
.lp-plate {
    display: inline-flex;
    align-items: stretch;
    height: 38px;
    border: 2px solid #1c1a17;
    border-radius: 6px;
    overflow: hidden;
    background: #F7C600;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(28, 26, 23, .15);
}

.lp-plate-blue {
    width: 27px;
    background: #003DA5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 3px;
}

.lp-plate-flag {
    width: 15px;
    height: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 1.5px;
    overflow: hidden;
}

.lp-plate-flag i {
    flex: 1;
}

.lp-flag-g { background: #239f40; }
.lp-flag-w { background: #ffffff; }
.lp-flag-r { background: #da0000; }

.lp-plate-ir {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
}

.lp-plate-ir i {
    font-style: normal;
    color: #ffffff;
    font-size: 6px;
    font-weight: 700;
}

.lp-plate-main {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    font-size: 20px;
    font-weight: 900;
    color: #1c1a17;
}

.lp-plate-letter {
    font-size: 17px;
}

.lp-plate-side {
    border-left: 2px solid #1c1a17;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    line-height: 1.15;
}

.lp-plate-iran {
    font-size: 9px;
    font-weight: 700;
    color: #1c1a17;
}

.lp-plate-code {
    font-size: 14.5px;
    font-weight: 900;
    color: #1c1a17;
}

.lp-wb-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(28, 26, 23, .25);
    padding-top: 16px;
}

.lp-wb-badge {
    padding: 6px 15px;
    border-radius: 100px;
    background: rgba(79, 178, 134, .16);
    color: #2b7a58;
    font-size: 12px;
    font-weight: 700;
}

.lp-wb-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-barcode {
    width: 118px;
    height: 26px;
    background: repeating-linear-gradient(90deg, #1c1a17 0 2px, transparent 2px 5px, #1c1a17 5px 9px, transparent 9px 11px, #1c1a17 11px 12px, transparent 12px 16px);
}

.lp-track-code {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(28, 26, 23, .55);
}

/* ---------- features grid ---------- */
.lp-fcard {
    border-radius: 19px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s ease;
}

.lp-fcard:hover {
    border-color: rgba(214, 138, 82, .5);
}

.lp-fcard h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.lp-fcard p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.9;
    color: rgba(243, 239, 233, .5);
}

/* ---------- coverage ---------- */
.lp-cargo {
    border-radius: 17px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: border-color .25s ease;
}

.lp-cargo:hover {
    border-color: rgba(214, 138, 82, .5);
}

.lp-cargo b {
    font-size: 15px;
}

.lp-cargo > span:last-child {
    font-size: 11.5px;
    color: rgba(243, 239, 233, .45);
}

.lp-provinces {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
}

.lp-prov {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(243, 239, 233, .11);
    background: rgba(243, 239, 233, .03);
    font-size: 13px;
    color: rgba(243, 239, 233, .65);
    transition: border-color .2s ease, color .2s ease;
}

.lp-prov:hover {
    border-color: var(--accent);
    color: var(--accent-soft);
}

/* ---------- steps ---------- */
.lp-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(243, 239, 233, .14);
    padding-top: 22px;
}

.lp-step-first {
    border-top-color: rgba(214, 138, 82, .35);
}

.lp-step-num {
    font-size: 56px;
    font-weight: 900;
    color: rgba(243, 239, 233, .14);
    line-height: 1;
}

.lp-step-first .lp-step-num {
    color: rgba(214, 138, 82, .28);
}

.lp-step h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.lp-step p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.9;
    color: rgba(243, 239, 233, .5);
}

/* ---------- testimonials ---------- */
.lp-tcard {
    border-radius: 20px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-quote {
    font-size: 34px;
    color: var(--accent);
    line-height: 1;
}

.lp-tcard p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    color: rgba(243, 239, 233, .75);
    text-wrap: pretty;
}

.lp-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
}

.lp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg);
    flex-shrink: 0;
}

.lp-avatar-copper { background: linear-gradient(135deg, var(--accent), #8a4f27); }
.lp-avatar-blue { background: linear-gradient(135deg, var(--blue), #4a5cb0); }
.lp-avatar-green { background: linear-gradient(135deg, var(--green), #2b7a58); }

.lp-person-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lp-person-info b {
    font-size: 14px;
}

.lp-person-info i {
    font-style: normal;
    font-size: 12px;
    color: rgba(243, 239, 233, .45);
}

/* ---------- FAQ ---------- */
.lp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.lp-faq-sticky {
    position: sticky;
    top: 40px;
    gap: 16px;
}

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item {
    border-radius: 16px;
    border: 1px solid rgba(243, 239, 233, .1);
    background: rgba(243, 239, 233, .03);
    overflow: hidden;
}

.lp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    text-align: right;
}

.lp-faq-mark {
    color: var(--accent);
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
}

.lp-faq-a {
    display: none;
}

.lp-faq-item.open .lp-faq-a {
    display: block;
}

.lp-faq-a p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 14px;
    line-height: 2;
    color: rgba(243, 239, 233, .6);
}

/* ---------- final CTA ---------- */
.lp-cta-final {
    padding: 150px 52px;
}

.lp-cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(800px 420px at 50% 110%, rgba(214, 138, 82, .22), transparent 70%);
}

.lp-cta-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
}

.lp-h2-cta {
    margin: 0;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 900;
    line-height: 1.2;
}

.lp-cta-inner .lp-sub {
    max-width: 560px;
}

/* ---------- footer ----------
   NOTE: global app.css has a bare `footer { display:grid; color:<dark> }`
   rule that hijacks this element — override display/color explicitly. */
.lp-footer {
    display: block;
    position: relative;
    background: #08080a;
    color: var(--ink);
    border-top: 1px solid rgba(243, 239, 233, .08);
    padding: 70px 52px 34px;
}

.lp-foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
}

.lp-foot-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-foot-brand .lp-brand img {
    height: 34px;
}

.lp-foot-brand .lp-brand b {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
}

.lp-foot-brand p {
    margin: 0;
    font-size: 13.5px;
    line-height: 2;
    color: rgba(243, 239, 233, .45);
    max-width: 300px;
}

.lp-foot-col {
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 13.5px;
}

.lp-foot-col b {
    font-size: 14px;
    color: rgba(243, 239, 233, .85);
}

.lp-foot-col a,
.lp-foot-col span {
    color: rgba(243, 239, 233, .5);
    transition: color .2s ease;
}

.lp-foot-col a:hover {
    color: var(--accent-soft);
}

.lp-ltr {
    direction: ltr;
    text-align: right;
}

.lp-foot-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(243, 239, 233, .07);
    padding-top: 24px;
    font-size: 12.5px;
    color: rgba(243, 239, 233, .35);
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
    .lp-nav {
        padding: 20px 28px;
    }

    .lp-menu {
        display: none;
    }

    .lp-hero {
        grid-template-columns: 1fr;
        padding: 20px 28px 70px;
        gap: 48px;
    }

    .lp-stage {
        height: 460px;
        min-height: 0;
    }

    .lp-section {
        padding: 80px 28px;
    }

    .lp-cta-final {
        padding: 100px 28px;
    }

    #why { padding: 90px 28px 80px; }

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

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

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

    .lp-split,
    .lp-split-wb {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-faq-sticky {
        position: static;
    }

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

    .lp-footer {
        padding: 56px 28px 28px;
    }
}

@media (max-width: 640px) {
    .lp-h1 {
        font-size: clamp(42px, 12vw, 54px);
    }

    .lp-nav {
        padding: 16px 18px;
    }

    .lp-hero {
        padding: 12px 18px 56px;
    }

    .lp-section {
        padding: 64px 18px;
    }

    .lp-cta-final {
        padding: 80px 18px;
    }

    #why { padding: 72px 18px 64px; }

    .lp-stage {
        height: 380px;
    }

    .lp-float-ship {
        right: 50%;
        transform: translateX(50%);
        width: 300px;
    }

    .lp-float-chip1,
    .lp-float-chip2,
    .lp-float-chip3,
    .lp-float-chip4 {
        display: none;
    }

    .lp-grid4,
    .lp-grid6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lp-stat {
        padding: 0 18px;
    }

    .lp-stat-num {
        font-size: 28px;
    }

    .lp-side-card {
        padding: 34px 26px;
    }

    .lp-waybill {
        padding: 26px 22px;
    }

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

    .lp-wb-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .lp-foot-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lp-foot-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-cta-sm {
        padding: 10px 16px;
    }

    .lp-login-btn {
        padding: 10px 14px;
    }

    .lp-login-menu {
        left: auto;
        right: 0;
    }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lp,
    .lp * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ═══════════ پاپ‌آپ تمام‌صفحه (قوانین بازارگاه / ثبت شکایت) ═══════════
   از همان پالت لندینگ استفاده می‌کند: مس #D68A52 روی #0B0B0E. */
.lp-modal {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(6, 6, 9, .82);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px 16px;
    animation: lp-modal-fade .18s ease;
}
.lp-modal[hidden] { display: none; }
@keyframes lp-modal-fade { from { opacity: 0 } to { opacity: 1 } }

.lp-modal-panel {
    width: min(880px, 100%); max-height: 100%;
    display: flex; flex-direction: column;
    background: var(--bg-alt, #101014);
    border: 1px solid rgba(214, 138, 82, .28);
    border-radius: 20px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
    overflow: hidden;
    animation: lp-modal-rise .24s cubic-bezier(.2, .8, .3, 1);
}
@keyframes lp-modal-rise { from { transform: translateY(18px); opacity: 0 } to { transform: none; opacity: 1 } }

.lp-modal-head {
    flex: 0 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(243, 239, 233, .1);
    background: linear-gradient(180deg, rgba(214, 138, 82, .1), transparent);
}
.lp-modal-head h2 {
    margin: 0; font-size: 17px; font-weight: 800; color: var(--ink, #F3EFE9);
}
.lp-modal-x {
    flex: 0 0 auto;
    width: 34px; height: 34px; border-radius: 10px;
    border: 1px solid rgba(243, 239, 233, .16);
    background: transparent; color: var(--ink, #F3EFE9);
    font-size: 20px; line-height: 1; cursor: pointer;
    transition: background .15s, border-color .15s;
}
.lp-modal-x:hover { background: rgba(214, 138, 82, .18); border-color: rgba(214, 138, 82, .5); }

.lp-modal-body {
    flex: 1 1 auto; overflow-y: auto;
    padding: 20px 22px 26px;
    color: rgba(243, 239, 233, .82);
    font-size: 14px; line-height: 2.05;
    overscroll-behavior: contain;
}
.lp-modal-body h3 {
    margin: 22px 0 8px; font-size: 15px; font-weight: 800;
    color: var(--accent, #D68A52);
}
.lp-modal-body h3:first-child { margin-top: 0; }
.lp-modal-body p { margin: 0 0 10px; text-align: justify; }

/* ── فرم شکایت ── */
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.lp-field { display: flex; flex-direction: column; gap: 7px; }
.lp-field-wide { grid-column: 1 / -1; }
.lp-field > span { font-size: 12.5px; font-weight: 700; color: rgba(243, 239, 233, .72); }
.lp-field input,
.lp-field select,
.lp-field textarea {
    background: rgba(243, 239, 233, .06);
    border: 1px solid rgba(243, 239, 233, .16);
    border-radius: 12px;
    padding: 11px 13px;
    color: var(--ink, #F3EFE9);
    font-family: inherit; font-size: 14px; font-weight: 600;
    outline: none; resize: none;
    transition: border-color .15s, box-shadow .15s;
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
    border-color: rgba(214, 138, 82, .75);
    box-shadow: 0 0 0 3px rgba(214, 138, 82, .18);
}
.lp-field select option { background: #101014; color: #F3EFE9; }
.lp-field .lp-ltr { direction: ltr; text-align: left; }

.lp-form-err {
    margin: 0 0 12px; padding: 10px 13px; border-radius: 11px;
    background: rgba(217, 58, 58, .14); border: 1px solid rgba(217, 58, 58, .4);
    color: #ffb3b3; font-size: 13px; font-weight: 700;
}
.lp-form-err[hidden] { display: none; }

.lp-form-ok { text-align: center; padding: 26px 8px; }
.lp-form-ok[hidden] { display: none; }
.lp-ok-mark {
    width: 62px; height: 62px; margin: 0 auto 16px;
    border-radius: 50%; display: grid; place-items: center;
    background: rgba(87, 217, 143, .16); border: 1px solid rgba(87, 217, 143, .5);
    color: var(--green, #57d98f); font-size: 30px; font-weight: 800;
}
.lp-form-ok h3 { margin: 0 0 8px; color: var(--ink, #F3EFE9); font-size: 17px; }
.lp-form-ok p { margin: 0 0 6px; }
.lp-ok-code { color: var(--accent, #D68A52); font-weight: 800; direction: ltr; }

@media (max-width: 640px) {
    .lp-modal { padding: 0; }
    .lp-modal-panel { border-radius: 0; height: 100%; max-height: 100%; width: 100%; border: none; }
    .lp-form-grid { grid-template-columns: 1fr; }
}
