/* =============================================
   LANDING PAGE — Moto
   ============================================= */

/* --- Hero Section --- */
.landing-hero {
    background: url('/assets/img/hero-moto.jpg') center center / cover no-repeat;
    color: #fff;
    padding: 140px 0 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 20, 55, .75) 0%, rgba(13, 71, 161, .6) 100%);
    z-index: 0;
}
.landing-hero > .container {
    position: relative;
    z-index: 1;
}
.landing-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bs-page-bg, #F3F6F9);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.landing-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.landing-hero .lead {
    font-size: 1.15rem;
    opacity: .85;
    line-height: 1.7;
}

/* --- Feature Cards --- */
.landing-features {
    padding: 80px 0;
    background: var(--bs-page-bg, #F3F6F9);
}
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(27, 132, 255, .12);
}
.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}
.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p {
    color: #6c757d;
    font-size: .92rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Feature icon color variants */
.feature-icon-blue    { background: rgba(27, 132, 255, .1);  color: #1B84FF; }
.feature-icon-purple  { background: rgba(114, 57, 234, .1);  color: #7239ea; }
.feature-icon-success { background: rgba(23, 198, 113, .1);  color: #17c671; }
.feature-icon-warning { background: rgba(255, 171, 0, .1);   color: #ffab00; }
.feature-icon-pink    { background: rgba(218, 14, 148, .1);  color: #da0e94; }
.feature-icon-info    { background: rgba(0, 184, 217, .1);   color: #00b8d9; }

/* --- How It Works --- */
.landing-steps {
    padding: 80px 0;
    background: #fff;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B84FF 0%, #7239ea 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.landing-steps h5 {
    font-weight: 600;
    margin-bottom: 8px;
}
.landing-steps p {
    color: #6c757d;
    font-size: .92rem;
    line-height: 1.6;
}
.step-connector {
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, #1B84FF, #7239ea);
    opacity: .25;
}

/* --- Explore CTA --- */
.landing-explore {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d47a1 0%, #1B84FF 50%, #7239ea 100%);
    color: #fff;
    text-align: center;
}
.landing-explore h2 {
    font-weight: 700;
    margin-bottom: 16px;
}
.landing-explore p {
    opacity: .85;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

/* --- Landing Footer --- */
.landing-footer {
    background: #071437;
    color: rgba(255, 255, 255, .6);
    padding: 48px 0 32px;
}
.landing-footer a {
    color: rgba(255, 255, 255, .6) !important;
    text-decoration: none !important;
    transition: color .2s ease;
}
.landing-footer a:hover {
    color: #fff !important;
}
.landing-footer .footer-brand {
    font-weight: 600;
    color: #fff;
    font-size: 1.15rem;
}
.landing-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-footer .footer-links li {
    margin-bottom: 8px;
}
.landing-footer .footer-divider {
    border-color: rgba(255, 255, 255, .1);
    margin: 24px 0;
}
.landing-footer .footer-copy {
    font-size: .85rem;
    opacity: .5;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .landing-hero {
        padding: 70px 0 60px;
    }
    .landing-hero h1 {
        font-size: 2rem;
    }
    .step-connector::after {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .landing-hero h1 {
        font-size: 1.6rem;
    }
    .landing-hero .lead {
        font-size: 1rem;
    }
    .feature-card {
        padding: 28px 20px;
    }
}
