/* ============================================================
   CUSTOM PRO v3 — Full Layout Rebuild (Light + Green)
   damepon.site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --lp-green: #22c55e;
    --lp-green-dark: #16a34a;
    --lp-green-light: #dcfce7;
    --lp-green-pale: #f0fdf4;
    --lp-green-rgb: 34, 197, 94;
    --lp-bg: #ffffff;
    --lp-bg-alt: #f8fafb;
    --lp-text: #0f1724;
    --lp-text-muted: #6b7280;
    --lp-text-light: #9ca3af;
    --lp-border: #e7f9ee;
    --lp-border-gray: #f0f0f0;
    --lp-heading: 'Plus Jakarta Sans', sans-serif;
    --lp-body: 'Inter', sans-serif;
    --lp-radius: 14px;
    --lp-radius-lg: 22px;
    --lp-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    --lp-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --lp-shadow-green: 0 8px 28px rgba(34, 197, 94, 0.22);
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-hero: linear-gradient(150deg, #f0fdf4 0%, #dcfce7 45%, #ffffff 100%);
}

/* ============================================================
   GLOBAL
   ============================================================ */
html,
body {
    background: #ffffff !important;
    color: var(--lp-text) !important;
    font-family: var(--lp-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--lp-heading) !important;
    color: var(--lp-text) !important;
}

p {
    color: var(--lp-text-muted);
}

a {
    text-decoration: none !important;
}

/* Force override admin color variables */
:root {
    --text-primary: #22c55e !important;
    --bs-primary: #22c55e !important;
    --title-color: #0f1724 !important;
    --body-clr: #6b7280 !important;
    --body-bg: #ffffff !important;
}

.preloader {
    background: #fff !important;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #bbf7d0;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lp-green);
}

::selection {
    background: #bbf7d0;
    color: #15803d;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(34, 197, 94, 0.10) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.navbar-bottom-wrapper {
    background: transparent !important;
    padding: 14px 28px !important;
}

.navbar-bottom-wrapper .logo {
    height: 40px !important;
    width: auto !important;
    max-width: 160px;
}

.navbar-bottom-wrapper .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.navbar-bottom-wrapper .menu li a {
    color: #374151 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.navbar-bottom-wrapper .menu li a:hover,
.navbar-bottom-wrapper .menu li a.active {
    color: var(--lp-green) !important;
}

.navbar-bottom-wrapper .menu li a span::before {
    background: var(--lp-green) !important;
}

@media (max-width: 991.9px) {
    .navbar-bottom-wrapper .menu {
        background: #fff !important;
        border-top: 1px solid var(--lp-border) !important;
    }
}

.navbar-bottom-wrapper .cmn--btn {
    background: var(--gradient-green) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.28) !important;
    transition: all 0.25s ease !important;
}

.navbar-bottom-wrapper .cmn--btn:hover {
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.42) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}

.nav-toggle span {
    background: #374151 !important;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.lp-hero__bg-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-hero__bg-blob--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    top: -140px;
    right: -100px;
}

.lp-hero__bg-blob--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.09) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 991px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-hero__btns {
        justify-content: center;
    }

    .lp-hero__trust {
        justify-content: center;
    }
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--lp-green-dark);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lp-hero__title {
    font-family: var(--lp-heading) !important;
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    font-weight: 800 !important;
    line-height: 1.13 !important;
    letter-spacing: -0.025em !important;
    color: #0f1724 !important;
    margin-bottom: 20px !important;
}

.lp-hero__subtitle {
    color: #4b5563 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    max-width: 480px;
    margin-bottom: 32px !important;
}

.lp-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-green);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.lp-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.lp-btn-primary:hover::after {
    transform: translateX(100%);
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.45);
    color: #fff !important;
}

.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #374151 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 1.5px solid #d1fae5;
    transition: all 0.2s ease;
}

.lp-btn-outline:hover {
    border-color: var(--lp-green);
    color: var(--lp-green-dark) !important;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.15);
}

.lp-hero__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.lp-hero__avatars {
    display: flex;
}

.lp-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e7f9ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #fff;
    margin-left: -8px;
}

.lp-avatar:first-child {
    margin-left: 0;
}

/* Phone mockup */
.lp-hero__mockup {
    position: relative;
}

.lp-hero__mockup-wrap {
    position: relative;
    display: inline-block;
}

.lp-hero__phone-img {
    max-height: 480px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.lp-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--lp-shadow-md);
    z-index: 2;
    animation: float-bob 3s ease-in-out infinite alternate;
}

.lp-float-card div {
    display: flex;
    flex-direction: column;
}

.lp-float-card strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f1724;
    line-height: 1;
}

.lp-float-card small {
    font-size: 11px;
    color: #9ca3af;
}

.lp-float-icon {
    font-size: 20px;
}

.lp-float-card--1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.lp-float-card--2 {
    top: 80px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float-bob {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .lp-hero__mockup {
        display: none;
    }

    .lp-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
}

/* ============================================================
   SCROLL CAR TRACK
   ============================================================ */
.lp-car-track {
    width: 100%;
    background: linear-gradient(180deg, #f0fdf4 0%, #e8f5e9 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
}

.lp-car-road {
    position: relative;
    height: 72px;
    margin: 0 16px;
    background: #e2e8f0;
    border-radius: 8px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, .07);
    overflow: hidden;
}

/* Dashed center line */
.lp-road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg,
            #fff 0px, #fff 28px,
            transparent 28px, transparent 48px);
    opacity: .55;
}

/* Car wrapper — JS animates via translateX */
.lp-car-wrap {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    will-change: transform;
}

.lp-car-emoji {
    display: block;
    line-height: 0;
    transition: transform 0.25s ease;
}

.lp-car-svg {
    display: block;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, .25));
}

.lp-car-shadow {
    display: block;
    width: 72px;
    height: 7px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, .20) 0%, transparent 75%);
    border-radius: 50%;
    animation: car-shadow-pulse 1.6s ease-in-out infinite alternate;
}

@keyframes car-shadow-pulse {
    from {
        transform: scaleX(1);
        opacity: .7;
    }

    to {
        transform: scaleX(.75);
        opacity: .35;
    }
}

/* ============================================================
   DOWNLOAD + STATS
   ============================================================ */
.lp-download {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid var(--lp-border-gray);
}

.lp-download__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .lp-download__inner {
        grid-template-columns: 1fr;
    }

    .lp-download__right {
        justify-content: center;
    }
}

.lp-download__title {
    font-family: var(--lp-heading) !important;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem) !important;
    font-weight: 800 !important;
    color: #0f1724 !important;
    letter-spacing: -0.02em;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

.lp-green {
    color: var(--lp-green) !important;
}

.lp-download__sub {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 32px !important;
}

.lp-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}

.lp-stat-item {
    display: flex;
    flex-direction: column;
    padding: 0 24px 0 0;
}

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

.lp-stat-item strong {
    font-family: var(--lp-heading);
    font-size: 22px;
    font-weight: 800;
    color: #0f1724;
    line-height: 1;
    margin-bottom: 4px;
}

.lp-stat-item span {
    color: #9ca3af;
    font-size: 13px;
}

.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--lp-border-gray);
    margin: 0 24px 0 0;
    flex-shrink: 0;
}

.lp-download__right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-store-card {
    flex: 1;
    min-width: 150px;
    background: #f8fafb;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-green);
    border-color: #86efac;
}

.lp-store-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #0f1724;
    align-self: flex-start;
}

.lp-qr-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    border: 1px solid var(--lp-border);
}

.lp-store-badge img {
    max-width: 130px;
    border-radius: 8px;
    transition: filter 0.2s ease;
}

.lp-store-badge:hover img {
    filter: brightness(1.05);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.lp-features {
    background: var(--lp-bg-alt, #f8fafb);
    padding: 80px 0;
}

.lp-section-header {
    margin-bottom: 48px;
}

.lp-section-title {
    font-family: var(--lp-heading) !important;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem) !important;
    font-weight: 800 !important;
    color: #0f1724 !important;
    letter-spacing: -0.022em !important;
    margin-bottom: 10px !important;
}

.lp-section-sub {
    color: #6b7280 !important;
    font-size: 15px !important;
    max-width: 520px;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}

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

@media (max-width: 991px) {
    .lp-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .lp-features__grid {
        grid-template-columns: 1fr;
    }
}

.lp-feature-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px 26px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lp-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 70%);
    border-radius: 0 var(--lp-radius-lg) 0 0;
    pointer-events: none;
}

.lp-feature-card:hover {
    transform: translateY(-6px);
    border-color: #86efac;
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.12);
}

.lp-feature-card__icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--lp-green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

.lp-feature-card__icon-wrap--emoji {
    font-size: 26px;
}

.lp-feature-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-feature-card__title {
    font-family: var(--lp-heading) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f1724 !important;
    margin-bottom: 8px !important;
}

.lp-feature-card__text {
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* CTA card */
.lp-feature-card--cta {
    background: var(--gradient-green) !important;
    border-color: transparent !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-feature-card--cta::after {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
}

.lp-feature-card--cta:hover {
    border-color: transparent !important;
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35) !important;
}

.lp-feature-card--cta h3 {
    color: #fff !important;
    font-family: var(--lp-heading) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.lp-feature-card--cta p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.lp-cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 10px 20px;
    width: fit-content;
    transition: background 0.2s ease;
}

.lp-cta-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff !important;
}

/* ============================================================
   YOUR RIDE, ONE TAP AWAY
   ============================================================ */
.lp-ride {
    background: #fff;
    padding: 80px 0;
}

.lp-ride__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .lp-ride__inner {
        grid-template-columns: 1fr;
    }
}

.lp-ride__img-wrap {
    position: relative;
    text-align: center;
}

.lp-ride__img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--lp-shadow-md);
    position: relative;
    z-index: 1;
}

.lp-ride__img-wrap::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.lp-section-title.text-start,
.lp-section-sub.text-start {
    text-align: left !important;
    margin-left: 0 !important;
}

.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lp-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-green-pale);
    color: var(--lp-green-dark);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1.5px solid #86efac;
}

.lp-checklist li div strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f1724;
    margin-bottom: 3px;
}

.lp-checklist li div p {
    color: #6b7280;
    font-size: 13px;
    margin: 0 !important;
    line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.lp-how {
    background: var(--lp-bg-alt, #f8fafb);
    padding: 80px 0;
    border-top: 1px solid var(--lp-border-gray);
    border-bottom: 1px solid var(--lp-border-gray);
}

.lp-how__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .lp-how__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .lp-how__steps {
        grid-template-columns: 1fr;
    }
}

.lp-step {
    text-align: center;
    padding: 32px 20px 28px;
    background: #fff;
    border: 1px solid var(--lp-border-gray);
    border-radius: var(--lp-radius-lg);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.lp-step__line {
    display: none;
    /* kept for potential future horizontal connector */
}

.lp-step__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
}

.lp-step__icon--green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.lp-step__icon--orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.lp-step__icon--blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.lp-step__icon--purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

.lp-step h4 {
    font-family: var(--lp-heading) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f1724 !important;
    margin-bottom: 8px !important;
}

.lp-step p {
    color: #9ca3af !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Step number badge */
.lp-step::before {
    content: attr(data-step);
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    color: #d1d5db;
    letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    background: #0f172a;
}

.lp-footer__top {
    padding: 64px 0 48px;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .lp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 575px) {
    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.lp-footer__logo-link {
    display: block;
    margin-bottom: 14px;
}

.lp-footer__logo {
    max-height: 36px;
    max-width: 160px;
    object-fit: contain;
}

.lp-footer__brand p {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
    max-width: 240px;
    margin-bottom: 20px !important;
}

.lp-footer__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55) !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp-social-icon:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--lp-green) !important;
    transform: translateY(-2px);
}

.lp-footer__col-title {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 18px !important;
    font-family: var(--lp-body) !important;
}

.lp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer__links li+li {
    margin-top: 10px;
}

.lp-footer__links li a {
    color: rgba(255, 255, 255, 0.50) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.lp-footer__links li a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    padding-left: 4px;
}

.lp-footer__newsletter p {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
}

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

.lp-newsletter-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff !important;
    font-size: 13px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s ease;
}

.lp-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.30);
}

.lp-newsletter-input:focus {
    border-color: rgba(34, 197, 94, 0.5);
}

.lp-newsletter-btn {
    background: var(--gradient-green);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-newsletter-btn:hover {
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.40);
    transform: translateY(-1px);
}

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.2);
}

.lp-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer__bottom-inner>span {
    color: rgba(255, 255, 255, 0.30);
    font-size: 13px;
}

.lp-footer__bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 13px;
    transition: color 0.2s ease;
}

.lp-footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text--base {
    color: var(--lp-green) !important;
}

.cmn--btn {
    transition: all 0.25s ease !important;
}

section {
    position: relative;
}

/* ============================================================
   INNER PAGES — Page Hero
   ============================================================ */
.lp-page-hero {
    background: linear-gradient(150deg, #f0fdf4 0%, #dcfce7 45%, #ffffff 100%);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e7f9ee;
}

.lp-page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 10%, rgba(34, 197, 94, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.lp-page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.lp-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.lp-page-hero__breadcrumb a {
    color: var(--lp-green-dark) !important;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.lp-page-hero__breadcrumb a:hover {
    opacity: 0.75;
}

.lp-page-hero__breadcrumb span {
    color: #d1d5db;
}

.lp-page-hero__title {
    font-family: var(--lp-heading) !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    font-weight: 800 !important;
    color: #0f1724 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 14px !important;
    line-height: 1.15 !important;
}

.lp-page-hero__sub {
    color: #6b7280 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    max-width: 560px;
}

/* ============================================================
   INNER PAGES — Content Layout
   ============================================================ */
.lp-page-content {
    background: #ffffff;
    padding: 60px 0 80px;
}

.lp-page-content__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .lp-page-content__layout {
        grid-template-columns: 1fr;
    }

    .lp-page-sidebar {
        order: 2;
    }

    .lp-page-body {
        order: 1;
    }
}

/* ============================================================
   INNER PAGES — Sidebar
   ============================================================ */
.lp-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 90px;
}

.lp-page-sidebar__card {
    background: #f8fafb;
    border: 1px solid #e7f9ee;
    border-radius: 14px;
    padding: 18px 20px;
}

.lp-page-sidebar__card--green {
    background: var(--lp-green-pale, #f0fdf4);
    border-color: #bbf7d0;
}

.lp-page-sidebar__label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #9ca3af !important;
    margin-bottom: 6px !important;
}

.lp-page-sidebar__value {
    font-size: 13px !important;
    color: #374151 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    line-height: 1.5;
}

.lp-page-sidebar__link {
    color: var(--lp-green-dark) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: opacity 0.2s ease;
}

.lp-page-sidebar__link:hover {
    opacity: 0.75;
}

.lp-page-sidebar__nav {
    background: #f8fafb;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 18px 20px;
}

.lp-page-sidebar__nav ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-page-sidebar__nav ul li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px !important;
    color: #6b7280 !important;
    font-weight: 500 !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.lp-page-sidebar__nav ul li a:hover {
    background: #f0fdf4;
    color: var(--lp-green-dark) !important;
}

.lp-page-sidebar__nav ul li a.active {
    background: var(--lp-green-pale, #f0fdf4);
    color: var(--lp-green-dark) !important;
    font-weight: 700 !important;
}

/* ============================================================
   INNER PAGES — Prose Typography
   ============================================================ */
.lp-page-body {
    min-width: 0;
}

.lp-prose {
    color: #374151;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.lp-prose h1,
.lp-prose h2 {
    font-family: var(--lp-heading) !important;
    font-weight: 800 !important;
    color: #0f1724 !important;
    letter-spacing: -0.02em !important;
    margin-top: 40px !important;
    margin-bottom: 14px !important;
}

.lp-prose h1 {
    font-size: 1.8rem !important;
}

.lp-prose h2 {
    font-size: 1.4rem !important;
}

.lp-prose h3 {
    font-family: var(--lp-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-top: 28px !important;
    margin-bottom: 10px !important;
}

.lp-prose p {
    color: #4b5563 !important;
    margin-bottom: 16px !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

.lp-prose ul,
.lp-prose ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.lp-prose ul li,
.lp-prose ol li {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
}

.lp-prose ul li::marker {
    color: var(--lp-green);
}

.lp-prose ol li::marker {
    color: var(--lp-green);
    font-weight: 700;
}

.lp-prose a {
    color: var(--lp-green-dark) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.lp-prose a:hover {
    opacity: 0.75;
}

.lp-prose strong {
    color: #111827;
    font-weight: 700;
}

.lp-prose blockquote {
    border-left: 3px solid var(--lp-green);
    padding: 12px 20px;
    background: #f0fdf4;
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
    color: #374151;
    font-style: italic;
}

.lp-prose hr {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 32px 0;
}

.lp-prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}

.lp-prose th {
    background: #f0fdf4;
    color: #0f1724;
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #e7f9ee;
}

.lp-prose td {
    padding: 10px 14px;
    border: 1px solid #f0f0f0;
    color: #4b5563;
}

.lp-prose tr:nth-child(even) td {
    background: #f8fafb;
}

/* ============================================================
   ABOUT — Stats Bar
   ============================================================ */
.lp-about-stats {
    background: #f8fafb;
    border-bottom: 1px solid #f0f0f0;
    padding: 28px 0;
}

.lp-about-stats__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.lp-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
    text-align: center;
}

.lp-about-stat strong {
    font-family: var(--lp-heading);
    font-size: 22px;
    font-weight: 800;
    color: #0f1724;
    line-height: 1;
    margin-bottom: 4px;
}

.lp-about-stat span {
    color: #9ca3af;
    font-size: 13px;
}

.lp-about-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .lp-about-stat {
        padding: 12px 20px;
    }

    .lp-about-stat-divider {
        width: 100%;
        height: 1px;
    }

    .lp-about-stats__row {
        flex-direction: column;
    }
}

/* ============================================================
   ABOUT — Values Grid
   ============================================================ */
.lp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .lp-values-grid {
        grid-template-columns: 1fr;
    }
}

.lp-value-card {
    background: #f8fafb;
    border: 1px solid #e7f9ee;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.11);
    border-color: #86efac;
}

.lp-value-card__icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.lp-value-card h3 {
    font-family: var(--lp-heading) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f1724 !important;
    margin-bottom: 8px !important;
}

.lp-value-card p {
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ============================================================
   ABOUT — Bottom CTA Banner
   ============================================================ */
.lp-about-cta {
    background: #f0fdf4;
    border-top: 1px solid #dcfce7;
    padding: 60px 0;
}

.lp-about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.lp-about-cta__inner h2 {
    font-family: var(--lp-heading) !important;
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
    font-weight: 800 !important;
    color: #0f1724 !important;
    margin-bottom: 8px !important;
}

.lp-about-cta__inner p {
    color: #6b7280 !important;
    font-size: 15px !important;
    margin: 0 !important;
}

.lp-about-cta__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ============================================================
   NAV — Become a Driver pill button
   ============================================================ */
.menu li .driver-nav-btn,
.driver-nav-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: #fff !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    letter-spacing: .02em !important;
    transition: opacity .2s ease, transform .2s ease !important;
    border: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    height: auto !important;
    width: auto !important;
    min-height: unset !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, .25) !important;
    position: static !important;
}

.menu li .driver-nav-btn:hover,
.driver-nav-btn:hover {
    opacity: .88 !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}

.menu li .driver-nav-btn span {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

/* ============================================================
   MOBILE MENU — fix button layout in dropdown
   ============================================================ */
@media (max-width: 991.9px) {

    /* Each menu item stacks vertically with proper padding */
    .navbar-bottom-wrapper .menu li {
        display: block !important;
        padding: 0 !important;
    }

    /* Become a Driver button: full-width row in mobile menu */
    .navbar-bottom-wrapper .menu li .driver-nav-btn {
        display: flex !important;
        width: calc(100% - 48px) !important;
        margin: 4px 24px !important;
        padding: 10px 18px !important;
        font-size: 13px !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* Contact Us button inside <li class="d-sm-none"> in mobile menu */
    .navbar-bottom-wrapper .menu li .cmn--btn {
        display: flex !important;
        width: calc(100% - 48px) !important;
        margin: 4px 24px 12px !important;
        padding: 10px 18px !important;
        font-size: 13px !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}

/* Become a Driver — steps grid responsive */
@media (max-width: 768px) {
    .lp-steps-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================================
   SCROLL-REVEAL ANIMATION SYSTEM
   ============================================================ */

/* --- Base hidden states (applied via JS on elements) --- */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1),
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

[data-reveal="fade-up"] {
    transform: translateY(40px);
}

[data-reveal="fade-down"] {
    transform: translateY(-30px);
}

[data-reveal="fade-left"] {
    transform: translateX(-50px);
}

[data-reveal="fade-right"] {
    transform: translateX(50px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.88);
}

[data-reveal="flip-x"] {
    transform: perspective(600px) rotateX(14deg);
}

/* --- Visible state (JS adds this class) --- */
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* --- Stagger delays for sibling groups --- */
[data-reveal][data-delay="100"] {
    transition-delay: .10s;
}

[data-reveal][data-delay="200"] {
    transition-delay: .20s;
}

[data-reveal][data-delay="300"] {
    transition-delay: .30s;
}

[data-reveal][data-delay="400"] {
    transition-delay: .40s;
}

[data-reveal][data-delay="500"] {
    transition-delay: .50s;
}

[data-reveal][data-delay="600"] {
    transition-delay: .60s;
}

/* ============================================================
   HERO PARALLAX SHIMMER
   ============================================================ */
@keyframes shimmer-bg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.lp-hero {
    background-size: 200% 200% !important;
    animation: shimmer-bg 12s ease infinite;
}

/* Badge pulse */
@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .35);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.lp-hero__badge {
    animation: badge-pulse 2.8s ease-in-out infinite;
}

/* Hero title gradient shimmer */
@keyframes text-shine {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

.lp-hero__title {
    background: linear-gradient(90deg,
            #0f1724 0%,
            #22c55e 35%,
            #0f1724 65%,
            #0f1724 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shine 5s linear infinite;
}

/* ============================================================
   STAT COUNTERS — highlight pulse when revealed
   ============================================================ */
@keyframes stat-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
        color: var(--lp-green);
    }

    100% {
        transform: scale(1);
    }
}

.lp-stat-item.counted strong {
    animation: stat-pop .55s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* ============================================================
   CARD MICRO-INTERACTIONS
   ============================================================ */

/* Feature cards — lift + green glow on hover (enhance existing) */
.lp-feature-card {
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
}

/* Store cards ripple border */
.lp-store-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease !important;
}

/* Checklist items slide on hover */
.lp-checklist li {
    transition: transform 0.25s ease;
}

.lp-checklist li:hover {
    transform: translateX(6px);
}

/* Step cards pop */
.lp-step {
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1);
}

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

/* ============================================================
   SECTION DIVIDER WAVE PULSE
   ============================================================ */
@keyframes wave-drift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lp-wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.lp-wave-divider svg {
    display: block;
    width: 200%;
    animation: wave-drift 18s linear infinite;
}

/* ============================================================
   FLOATING DOTS BACKGROUND (hero decorative)
   ============================================================ */
@keyframes dot-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .7;
    }

    50% {
        transform: translateY(-18px) scale(1.2);
        opacity: 1;
    }
}

.lp-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--lp-green);
    opacity: 0.12;
    pointer-events: none;
    animation: dot-float var(--dur, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

/* ============================================================
   PROGRESS SCROLL BAR (top of page)
   ============================================================ */
#lp-scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-green);
    z-index: 9999;
    transition: width .05s linear;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 8px rgba(34, 197, 94, .5);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#lp-back-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(34, 197, 94, .38);
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease;
    z-index: 9998;
    border: none;
    text-decoration: none !important;
}

#lp-back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#lp-back-top:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, .55);
    transform: translateY(-3px);
}

/* ============================================================
   REDUCE MOTION — respect system preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    [data-reveal],
    .lp-hero,
    .lp-hero__badge,
    .lp-hero__title,
    .lp-dot,
    .lp-wave-divider svg {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        -webkit-text-fill-color: unset;
    }
}