/* ============================================================
   RENTERPRISE V3
   Premium Startup UI
   ============================================================ */

:root {

    --bg: #06110f;
    --bg-soft: #0b1715;
    --card: #101d1a;

    --line: #1d302c;

    --lime: #8ee000;

    --teal: #007f78;

    --primary: #8EE000;

    --primary-soft: #B8FF52;

    --text: #FFFFFF;

    --muted: #95A39E;

    --radius: 26px;

    --shadow: 0 30px 80px rgba(0, 0, 0, .35);

    --transition: .35s cubic-bezier(.4, 0, .2, 1);

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    background: var(--bg);

    font-family: Inter, sans-serif;

    color: white;

    overflow-x: hidden;

    line-height: 1.7;

}

img {

    display: block;

    max-width: 100%;

}

a {

    text-decoration: none;

    color: inherit;

}

.container {

    width: min(1400px, calc(100% - 48px));

    margin: auto;

}

h1 {

    font-size: 48px;

    line-height: .92;

    letter-spacing: -2px;

    font-weight: 900;

    margin-bottom: 30px;

}

h2 {

    font-size: clamp(46px, 5vw, 72px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 20px;

}

h3 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 14px;

}

p {

    color: var(--muted);

    font-size: 18px;

}

.section-tag {

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.section-intro {

    max-width: 760px;

    margin-bottom: 70px;

}

.section-intro.center {

    text-align: center;

    margin-inline: auto;

}

.navbar {

    position: fixed;

    height: 82px;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    backdrop-filter: blur(22px);

    background: rgba(6, 17, 15, .82);

    border-bottom: 1px solid rgba(255, 255, 255, .05);

}

.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 88px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 24px;

    font-weight: 800;

}

.logo img,
.footer-logo {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;

    display: block;

}

.logo-icon {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

}

.menu {

    display: flex;

    align-items: center;

    gap: 40px;

}

.kicker {
    color: #c0cac7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center
}

.kicker:before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--lime)
}

.lime {
    color: var(--lime)
}

.menu a {

    font-size: 15px;

    color: #C9D3CF;

    transition: .3s;

}

.menu a:hover {

    color: white;

}

.primary-button {

    background: #8EE000;

    color: #06110f !important;

    font-weight: 800;

}

.primary-button i,
.primary-button svg {

    color: #06110f !important;

    fill: #06110f;

}

.primary,
.telegram-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 34px;

    background: var(--primary);

    color: #06110f;

    font-weight: 800;

    border-radius: 14px;

    transition: var(--transition);

    box-shadow: 0 20px 45px rgba(142, 224, 0, .18);

}

.primary:hover {

    transform: translateY(-4px);

    box-shadow: 0 30px 70px rgba(142, 224, 0, .32);

}

.secondary,
.secondary-button,
.outline-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 34px;

    border: 1px solid var(--line);

    border-radius: 14px;

    transition: var(--transition);

    background: transparent;

}

.secondary:hover {

    background: #0e1b18;

}

.hero {

    min-height: 100vh;

    margin: 40px;

    display: flex;

    align-items: center;

    padding-top: 100px;

    position: relative;

    overflow: hidden;

}

.hero h1 {

    margin-bottom: 36px;

}

.hero:before {

    content: "";

    position: absolute;

    width: 900px;

    height: 900px;

    right: -250px;

    top: -150px;

    background: radial-gradient(circle,
    rgba(142, 224, 0, .10),
    transparent 65%);

    filter: blur(60px);

}

.hero-grid {

    display: grid;

    grid-template-columns:1fr 1fr;

    gap: 80px;

    align-items: center;

}

.hero-description {

    margin-bottom: 42px;

    line-height: 1.9;

    max-width: 620px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-bottom: 70px;

    margin-top: 18px;

}

.hero-stats {

    display: flex;

    gap: 60px;

}

.hero-stats h2 {

    font-size: 46px;

    margin-bottom: 6px;

}

.hero-right {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

.hero-floating .glass {

    width: 250px;

}

.hero-floating {

    position: absolute;

    left: -20px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 22px;

    z-index: 5;

}

.hero-scooter {

    width: 620px;

    filter: drop-shadow(0 60px 90px rgba(0, 0, 0, .45));

}

.glass {

    position: absolute;

    background: rgba(18, 27, 24, .78);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 22px;

    padding: 26px;

    box-shadow: var(--shadow);

}

.income-card {
    position: absolute;
    left: -20px;
    top: -200px;

    width: 260px;
    z-index: 3;
}

.range-card {
    position: absolute;
    left: -40px;
    top: 230px;

    width: 260px;
    z-index: 3;
}

.battery-card {

    bottom: 50px;

    left: -20px;

    width: 170px;

    text-align: center;

}

.dashboard {

    background: #101C19;

    padding: 35px;

    border-radius: 26px;

    border: 1px solid var(--line);

    box-shadow: var(--shadow);

}

.dashboard-card {

    padding: 22px;

    margin-top: 18px;

    border-radius: 18px;

    background: #0B1715;

}

.online {

    width: 12px;

    height: 12px;

    background: #8EE000;

    border-radius: 50%;

    box-shadow: 0 0 18px #8EE000;

}

section {

    padding: 140px 0;

}

@media (max-width: 768px) {

    section {

        padding: 80px 0;

    }

}

.ecosystem-grid,
.purpose-grid,
.workflow-grid {

    display: grid;

    grid-template-columns:repeat(3, 1fr);

    gap: 32px;

}

.workflow-card,
.principle,
.market-card {

    background: var(--card);

    margin: 10px;

    border: 1px solid var(--line);

    padding: 42px;

    border-radius: var(--radius);

    transition: var(--transition);

}

.why-card {

    padding: 40px;

}

.why-card h3 {

    margin-bottom: 20px;

}

.why-card p {

    line-height: 1.9;

}

.eco-card:hover,
.workflow-card:hover,
.market-card:hover {

    transform: translateY(-8px);

    border-color: #8EE00066;

}

/*==========================================================
FLEET
==========================================================*/

.fleet-section {

    background: #081412;

}

.fleet-grid {

    display: grid;

    grid-template-columns:repeat(2, 1fr);

    gap: 40px;

    margin-top: 70px;

}

.scooter-card {

    background: #0d1816;

    border: 1px solid rgba(255, 255, 255, .05);

    border-radius: 32px;

    overflow: hidden;

    transition: .45s;

    position: relative;

}

.scooter-card:hover {

    transform: translateY(-12px);

    border-color: rgba(142, 224, 0, .4);

    box-shadow: 0 30px 90px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(142, 224, 0, .08);

}

.card-image {

    height: 520px;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    background: radial-gradient(circle at center,
    rgba(142, 224, 0, .08),
    transparent 65%),
    linear-gradient(180deg, #12211d, #0a1412);

}

.card-image img {

    width: 85%;

    transition: .5s;

}

.scooter-card:hover img {

    transform: scale(1.05);

}

.badge {

    position: absolute;

    top: 28px;

    left: 28px;

    padding: 10px 18px;

    border-radius: 100px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}

.badge.available {

    background: #8EE000;

    color: #06110f;

}

.badge.rented {

    background: #18221f;

    color: white;

    border: 1px solid rgba(255, 255, 255, .08);

}

.card-content {

    padding: 42px;

}

.card-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 28px;

}

.category {

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #8EE000;

    margin-bottom: 8px;

}

.card-top h3 {

    font-size: 42px;

    font-weight: 800;

}

.status {

    display: inline-flex;

    align-items: center;

    padding: 8px 18px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

}

.card-description {

    margin-bottom: 34px;

    max-width: 420px;

}

.spec-grid {

    display: grid;

    grid-template-columns:repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 38px;

}

.spec-grid div {

    background: #101c19;

    border-radius: 18px;

    padding: 22px;

    text-align: center;

}

.spec-grid h4 {

    font-size: 26px;

    margin-bottom: 6px;

}

.spec-grid span {

    font-size: 13px;

    color: #95A39E;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.pricing {

    display: grid;

    grid-template-columns:repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 36px;

}

.pricing > div {

    background: #101c19;

    padding: 22px;

    border-radius: 18px;

    text-align: center;

    transition: .3s;

}

.pricing > div:hover {

    transform: translateY(-4px);

}

.pricing p {

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;

}

.pricing h5 {

    font-size: 28px;

    font-weight: 800;

    color: white;

}

.featured-price {

    background: #8EE000;

}

.featured-price h5 {

    color: #59e629;

    font-size: 30px;

    font-weight: 900;

}

.featured-price p {

    color: #264300;

}

.rent-button {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 64px;

    background: #8EE000;

    color: #06110f;

    font-size: 16px;

    font-weight: 800;

    border-radius: 16px;

    transition: .35s;

}

.rent-button:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 50px rgba(142, 224, 0, .35);

}

.disabled {

    width: 100%;

    height: 64px;

    background: #18221f;

    color: #7f8d88;

    border: none;

    border-radius: 16px;

    font-size: 16px;

    font-weight: 700;

    cursor: not-allowed;

}

.roadmap {

    background: #06110f;

}

.timeline {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 28px;

    margin-top: 80px;

}

.timeline-line {

    width: 80px;

    height: 2px;

    margin-top: 60px;

    background: #1e302d;

    flex-shrink: 0;

}

.timeline-card {

    flex: 1;

    padding: 34px;

    border-radius: 24px;

    background: #0d1816;

    border: 1px solid #1b2d29;

    transition: .35s;

}

.timeline-card:hover {

    transform: translateY(-8px);

    border-color: #8EE00055;

}

.timeline-card.completed {

    background: linear-gradient(
            180deg,
            rgba(142, 224, 0, .10),
            #0d1816);

}

.year {

    font-size: 52px;

    font-weight: 900;

    color: #8EE000;

    margin-bottom: 18px;

}

.investment-preview {

    background: #081412;

}

.investment-grid {

    display: grid;

    grid-template-columns:1fr 1fr;

    gap: 100px;

    align-items: center;

}

.dashboard {

    padding: 38px;

    background: #0f1b18;

    border-radius: 28px;

    border: 1px solid #20322d;

}

.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 28px;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #95A39E;

}

.dashboard-card {

    padding: 24px;

    margin-bottom: 18px;

    border-radius: 18px;

    background: #13211d;

}

.dashboard-card:last-child {

    margin-bottom: 0;

}

.dashboard-card small {

    display: block;

    margin-bottom: 10px;

    color: #95A39E;

}

.dashboard-card h3 {

    font-size: 34px;

    margin: 0;

}

/*==========================================================
FAQ
==========================================================*/

#faq {

    background: #081412;

}

.faq {

    margin-top: 70px;

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.faq-item {

    background: #0f1b18;

    border: 1px solid #20322d;

    border-radius: 22px;

    padding: 34px;

    transition: .35s;

    cursor: pointer;

}

.faq-item:hover {

    border-color: #8EE00055;

    transform: translateY(-3px);

}

.faq-item h3 {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    font-size: 22px;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;

}

.faq-item.active .faq-answer {

    max-height: 200px;

}

.faq-item.active span {

    transform: rotate(45deg);

}

.faq-item h3::after {

    content: "+";

    font-size: 32px;

    color: #8EE000;

    font-weight: 300;

    transition: .3s;

}

.faq-item:hover h3::after {

    transform: rotate(90deg);

}

.faq-item p {

    max-width: 900px;

    line-height: 1.8;

}

/*==========================================================
CTA
==========================================================*/

.cta {

    padding: 180px 0;

    position: relative;

    overflow: hidden;

    background: radial-gradient(circle at 80% 50%,
    rgba(142, 224, 0, .08),
    transparent 30%),
    radial-gradient(circle at 10% 10%,
            rgba(0, 127, 120, .15),
            transparent 40%),
    #06110f;

}

.cta::before {

    content: "R";

    position: absolute;

    right: -60px;

    top: -120px;

    font-size: 650px;

    font-weight: 900;

    color: rgba(255, 255, 255, .025);

    line-height: 1;

    pointer-events: none;

}

.cta .container {

    position: relative;

    z-index: 5;

    text-align: center;

}

.cta h2 {

    font-size: clamp(70px, 8vw, 120px);

    line-height: .92;

    margin: 25px auto;

    max-width: 900px;

}

.cta-text {

    font-size: 22px;

    max-width: 720px;

    margin: 0 auto 55px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

/*==========================================================
FOOTER
==========================================================*/

footer {

    padding: 90px 0 50px;

    border-top: 1px solid rgba(255, 255, 255, .05);

    background: #050d0b;

}

.footer-grid {

    display: grid;

    grid-template-columns:2fr 1fr 1fr;

    gap: 70px;

}

footer h3 {

    font-size: 30px;

    margin-bottom: 12px;

}

footer h4 {

    margin-bottom: 20px;

    font-size: 18px;

}

footer a {

    display: block;

    margin-bottom: 14px;

    color: #95A39E;

    transition: .3s;

}

footer a:hover {

    color: #8EE000;

    padding-left: 6px;

}

footer p {

    color: #95A39E;

}

.copyright {

    margin-top: 70px;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, .05);

    text-align: center;

    font-size: 14px;

    color: #6D7B76;

}

/*==========================================================
ANIMATIONS
==========================================================*/

.fade-up {

    opacity: 0;

    transform: translateY(60px);

    transition: all .8s cubic-bezier(.2, .8, .2, 1);

}

.fade-up.show {

    opacity: 1;

    transform: translateY(0);

}

.fade-left {

    opacity: 0;

    transform: translateX(-80px);

    transition: .8s;

}

.fade-left.show {

    opacity: 1;

    transform: none;

}

.fade-right {

    opacity: 0;

    transform: translateX(80px);

    transition: .8s;

}

.fade-right.show {

    opacity: 1;

    transform: none;

}

.hero-scooter {

    animation: float 5s ease-in-out infinite;

}

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-14px);

    }

    100% {

        transform: translateY(0px);

    }

}

.market-card:hover,
.eco-card:hover,
.workflow-card:hover,
.timeline-card:hover,
.scooter-card:hover {

    box-shadow: 0 40px 100px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(142, 224, 0, .08);

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width: 1100px) {

    .hero-grid,
    .investment-grid,
    .footer-grid {

        grid-template-columns:1fr;

    }

    .hero {

        padding-top: 140px;

    }

    .hero-right {

        margin-top: 60px;

    }

    .timeline {

        flex-direction: column;

    }

    .timeline-line {

        display: none;

    }

    .fleet-grid {

        grid-template-columns:1fr;

    }

    .ecosystem-grid,
    .workflow-grid,
    .purpose-grid {

        grid-template-columns:1fr;

    }

}

@media (max-width: 768px) {

    .container {

        width: calc(100% - 34px);

    }

    .menu {

        display: none;

    }

    h1 {

        font-size: 58px;

        letter-spacing: -3px;

    }

    h2 {

        font-size: 44px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .pricing {

        grid-template-columns:1fr;

    }

    .spec-grid {

        grid-template-columns:1fr;

    }

    .card-top {

        flex-direction: column;

        gap: 20px;

    }

    .cta {

        padding: 120px 0;

    }

    .cta::before {

        font-size: 300px;

    }

    .footer-grid {

        grid-template-columns:1fr;

    }

}

.navbar-scrolled {

    background: rgba(4, 10, 9, .94);

    backdrop-filter: blur(30px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);

}

.faq-item p {

    max-height: 0;

    overflow: hidden;

    transition: .4s;

}

.faq-item.active p {

    max-height: 300px;

    margin-top: 20px;

}

.faq-item.active h3::after {

    transform: rotate(45deg);

}

.cursor-glow {

    position: fixed;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    pointer-events: none;

    background: radial-gradient(
            circle,
            rgba(142, 224, 0, .08),
            transparent 70%
    );

    transform: translate(-50%, -50%);

    z-index: 0;

    transition: left .15s,
    top .15s;

}

.menu a.active {

    color: #8EE000;

}

.scooter-card::before {

    content: "";

    position: absolute;

    /*left:var(--x);*/

    /*top:var(--y);*/

    width: 250px;

    height: 250px;

    background: radial-gradient(circle,
    rgba(142, 224, 0, .12),
    transparent 70%);

    transform: translate(-50%, -50%);

    pointer-events: none;

    opacity: 0;

    transition: .3s;

}

.scooter-card:hover::before {

    opacity: 1;

}

#loader {

    position: fixed;

    inset: 0;

    background: #06110f;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

    transition: .6s;

}

.loader-logo {

    font-size: 72px;

    font-weight: 900;

    color: #8EE000;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

    50% {

        transform: scale(1.08);

        opacity: .6;

    }

}

@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns:1fr;
    }

    .hero-right {
        order: -1;
        margin-bottom: 40px;
    }

    .glass {
        display: none;
    }

    .hero-scooter {
        width: 100%;
        max-width: 380px;
        margin: auto;
    }

}

.eco-card {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 230px;

    padding: 36px;

}

.eco-card h3 {

    margin-bottom: 18px;

}

.eco-card p {

    margin-top: 12px;

    line-height: 1.8;

}