/* FleetPro — Landing page (2026 refresh) */

.landing-page {
    --lp-bg: #fafbfc;
    --lp-surface: #ffffff;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-border: rgba(15, 23, 42, 0.08);
    --lp-accent: #0d9488;
    --lp-accent-2: #6366f1;
    --lp-glow: rgba(13, 148, 136, 0.35);
    background: var(--lp-bg);
    color: var(--lp-text);
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

.landing-nav-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 14px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.landing-nav-modern.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--lp-border), 0 8px 32px rgba(15, 23, 42, 0.06);
    padding: 10px 0;
}

.landing-nav-modern .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.landing-nav-modern .nav-link-item {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.landing-nav-modern .nav-link-item:hover,
.landing-nav-modern .nav-link-item.active {
    color: var(--lp-accent);
    background: rgba(13, 148, 136, 0.08);
}

.btn-lp-primary {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border: none;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 4px 20px var(--lp-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-lp-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--lp-glow);
    color: #fff;
}

.btn-lp-ghost {
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-text);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
}

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

/* Hero */
.lp-hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(13, 148, 136, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    z-index: 0;
}

.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lp-muted);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    margin-bottom: 24px;
}

.lp-hero-badge span.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: lp-pulse 2s infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.lp-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.lp-hero h1 .gradient-text {
    background: linear-gradient(135deg, #0f766e, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-lead {
    font-size: 1.125rem;
    color: var(--lp-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.lp-stat-pill {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 16px 20px;
    min-width: 100px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.lp-stat-pill .num {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}

.lp-stat-pill .lbl {
    font-size: 0.75rem;
    color: var(--lp-muted);
    font-weight: 500;
}

/* Dashboard preview mockup */
.lp-preview {
    position: relative;
    border-radius: 20px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 24px 64px rgba(15, 23, 42, 0.12),
        0 0 80px rgba(13, 148, 136, 0.08);
    overflow: hidden;
}

.lp-preview-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #f8fafc;
    border-bottom: 1px solid var(--lp-border);
}

.lp-preview-chrome .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-preview-body { padding: 20px; }

.lp-preview-stat {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px;
    border-left: 3px solid var(--lp-accent);
}

.lp-preview-stat.indigo { border-left-color: var(--lp-accent-2); }
.lp-preview-stat.amber { border-left-color: #f59e0b; }

.lp-float-card {
    position: absolute;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    animation: lp-float 4s ease-in-out infinite;
}

.lp-float-card.card-1 { top: -12px; right: -16px; animation-delay: 0s; }
.lp-float-card.card-2 { bottom: 40px; left: -24px; animation-delay: 1s; }

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

/* Section common */
.lp-section {
    padding: 96px 0;
}

.lp-section-alt {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-accent);
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.lp-section-desc {
    color: var(--lp-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 48px;
}

/* Feature cards */
.lp-feature-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    border-color: rgba(13, 148, 136, 0.2);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--lp-accent);
}

/* Guide section */
.lp-guide-wrap {
    background: linear-gradient(165deg, #0f172a 0%, #134e4a 100%);
    border-radius: 28px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.2);
}

@media (min-width: 992px) {
    .lp-guide-wrap { padding: 48px 56px; }
}

.lp-guide-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.lp-guide-tab {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-guide-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lp-guide-tab.active {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
}

.lp-guide-panel { display: none; }
.lp-guide-panel.active { display: block; animation: lp-fadeIn 0.35s ease; }

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

.lp-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
}

.lp-step-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #14b8a6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.lp-step h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.lp-step p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.lp-guide-ol,
.lp-guide-ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.lp-guide-ol li,
.lp-guide-ul li {
    margin-bottom: 0.45rem;
}

.lp-guide-ol li:last-child,
.lp-guide-ul li:last-child {
    margin-bottom: 0;
}

.lp-step .lp-tip {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.lp-step code {
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #5eead4;
}

.lp-demo-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.lp-demo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.lp-demo-row:last-child { border-bottom: none; }

/* Workflow timeline */
.lp-timeline {
    position: relative;
    padding-left: 32px;
}

.lp-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-2));
    border-radius: 2px;
}

.lp-timeline-item {
    position: relative;
    padding-bottom: 28px;
}

.lp-timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lp-accent);
    border: 3px solid var(--lp-bg);
    box-shadow: 0 0 0 2px var(--lp-accent);
}

/* Pricing modern */
.lp-pricing-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-pricing-card:hover {
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.lp-pricing-card.featured {
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 1px var(--lp-accent), 0 24px 56px var(--lp-glow);
}

.lp-pricing-card .tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
}

/* FAQ accordion */
.lp-faq-item {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}

.lp-faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--lp-text);
}

.lp-faq-body {
    padding: 0 24px 20px;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* CTA */
.lp-cta {
    background: linear-gradient(135deg, #0f172a 0%, #0f766e 50%, #14b8a6 100%);
    border-radius: 28px;
    padding: 64px 32px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.lp-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--lp-border);
}

@media (max-width: 991px) {
    .lp-hero { padding-top: 120px; min-height: auto; }
    .lp-float-card { display: none; }
    .lp-guide-wrap { padding: 28px 20px; }
}
