/* FleetKeeper Landing Page – modern, clean, animations */
.landing-page,
.landing-page body {
    padding-top: 0;
}
.landing-page {
    background: #f8fafc;
    background-image:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(30, 41, 59, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(30, 41, 59, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(30, 41, 59, 0.04) 0%, transparent 50%);
}
.landing-page .landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: box-shadow 0.2s ease;
}
.landing-page .landing-nav.scrolled {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.landing-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.landing-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.landing-logo:hover {
    color: #1e293b;
}
.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.landing-nav-actions a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}
.landing-nav-actions a:hover {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.06);
}
.landing-nav-actions .landing-cta-primary {
    color: #fff;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 0.5rem 1.25rem;
}
.landing-nav-actions .landing-cta-primary:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: #fff;
}

/* Hero */
.landing-hero {
    padding: 8rem 1.5rem 6rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.landing-hero-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    background: rgba(30, 41, 59, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin: 0 0 1.5rem;
    opacity: 0;
    animation: landingFadeUp 0.7s ease forwards;
}
.landing-hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin: 0 0 1.25rem;
    opacity: 0;
    animation: landingFadeUp 0.7s ease 0.08s forwards;
}
.landing-hero-lead {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 1rem;
    opacity: 0;
    animation: landingFadeUp 0.7s ease 0.16s forwards;
}
.landing-hero-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 2.25rem;
    opacity: 0;
    animation: landingFadeUp 0.7s ease 0.22s forwards;
}
.landing-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: landingFadeUp 0.7s ease 0.3s forwards;
}

/* Value strip */
.landing-value-strip {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.04) 0%, rgba(51, 65, 85, 0.02) 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.landing-value-strip-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.landing-value-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
}
.landing-hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-hero-buttons .landing-btn-primary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 41, 59, 0.25);
}
.landing-hero-buttons .landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.3);
}
.landing-hero-buttons .landing-btn-secondary {
    background: #fff;
    color: #334155;
    border: 2px solid #e2e8f0;
}
.landing-hero-buttons .landing-btn-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

@keyframes landingFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section common */
.landing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.landing-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.landing-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Features grid */
.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.landing-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    opacity: 0;
    animation: landingFadeUp 0.6s ease forwards;
}
.landing-feature-card:nth-child(1) { animation-delay: 0.05s; }
.landing-feature-card:nth-child(2) { animation-delay: 0.1s; }
.landing-feature-card:nth-child(3) { animation-delay: 0.15s; }
.landing-feature-card:nth-child(4) { animation-delay: 0.2s; }
.landing-feature-card:nth-child(5) { animation-delay: 0.25s; }
.landing-feature-card:nth-child(6) { animation-delay: 0.3s; }
.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}
.landing-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
}
.landing-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.landing-feature-card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Screenshots */
.landing-screenshots {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.5) 0%, #fff 100%);
    padding: 4rem 1.5rem;
}
.landing-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.landing-screenshot-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: landingFadeUp 0.6s ease forwards;
}
.landing-screenshot-card:nth-child(1) { animation-delay: 0.1s; }
.landing-screenshot-card:nth-child(2) { animation-delay: 0.2s; }
.landing-screenshot-card:nth-child(3) { animation-delay: 0.3s; }
.landing-screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}
.landing-screenshot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}
.landing-screenshot-card figcaption {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

/* Pricing */
.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.landing-price-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    animation: landingFadeUp 0.6s ease forwards;
}
.landing-price-card:nth-child(1) { animation-delay: 0.05s; }
.landing-price-card:nth-child(2) { animation-delay: 0.15s; }
.landing-price-card:nth-child(3) { animation-delay: 0.25s; }
.landing-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.landing-price-card.featured {
    border-color: #1e293b;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.12);
}
.landing-price-card.featured:hover {
    box-shadow: 0 16px 48px rgba(30, 41, 59, 0.15);
}
.landing-price-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.landing-price-card .landing-price-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 1rem;
}
.landing-price-card .landing-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 0.25rem;
}
.landing-price-card .landing-price-amount span {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}
.landing-price-card .landing-price-desc {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.landing-price-card ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    text-align: left;
}
.landing-price-card ul li {
    font-size: 0.9375rem;
    color: #475569;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.landing-price-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
}
.landing-price-card .landing-price-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.landing-price-card .landing-price-cta.secondary {
    background: #f1f5f9;
    color: #334155;
    border: 2px solid #e2e8f0;
}
.landing-price-card .landing-price-cta.secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.landing-price-card.featured .landing-price-cta.primary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
}
.landing-price-card.featured .landing-price-cta.primary:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: #fff;
    transform: translateY(-2px);
}

/* Final CTA */
.landing-cta-section {
    text-align: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.landing-cta-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem;
}
.landing-cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 0 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.landing-cta-section .landing-hero-buttons {
    opacity: 1;
    animation: none;
}

/* Landing footer */
.landing-footer {
    border-top: 1px solid #e2e8f0;
    padding: 2rem 1.5rem;
    background: #fff;
}
.landing-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.landing-footer-brand {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}
.landing-footer-links {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.landing-footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9375rem;
}
.landing-footer-links a:hover {
    color: #334155;
}
.landing-footer-copy {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 640px) {
    .landing-hero { padding: 6rem 1rem 4rem; }
    .landing-hero-badge { font-size: 0.75rem; padding: 0.35rem 0.85rem; }
    .landing-hero-lead { font-size: 1.1rem; }
    .landing-value-strip-inner { flex-direction: column; gap: 1rem; padding: 1rem; text-align: center; }
    .landing-section { padding: 3rem 1rem; }
    .landing-nav-actions a:first-of-type { display: none; }
}
