:root {
    --bg: #080d12;
    --panel: #101821;
    --panel2: #14202b;
    --text: #f4f7fb;
    --muted: #9aa8b8;
    --line: rgba(255, 255, 255, .1);
    --green: #33d17a;
    --green2: #16a34a;
    --white: #ffffff;
    --danger: #ff6b6b;
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(51, 209, 122, .16), transparent 34%),
        radial-gradient(circle at top right, rgba(59, 130, 246, .11), transparent 30%),
        var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 28px clamp(18px, 5vw, 72px) 72px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    left: -100px;
    width: calc(100% + 100px);
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 13, 18, .85) 0%, rgba(8, 13, 18, .15) 10%, rgba(8, 13, 18, .35) 100%);
    z-index: 1;
}

.nav,
.hero-grid {
    position: relative;
    z-index: 2;
}

.nav {
    max-width: 1180px;
    margin: 0 auto 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.4px;
}

.drive {
    color: var(--green);
}

.nav-btn,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
}

.nav-btn,
.secondary-btn {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.primary-btn {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #041009;
    box-shadow: 0 16px 40px rgba(51, 209, 122, .22);
}

.hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: start;
}

.badge,
.eyebrow {
    display: inline-flex;
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 18px;
    margin-top: 30px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    margin-bottom: 24px;
    max-width: 790px;
}

.lead {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 30px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

h1 {
    text-shadow: 0 4px 28px rgba(0, 0, 0, .75);
}


.nav-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .30);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, .20);
    border-color: rgba(255, 255, 255, .48);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .42);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
    justify-content: flex-start;
    /* alebo center */
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.stats div,
.card,
.form-card,
.steps div {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
    backdrop-filter: blur(14px);
}

.stats div {
    border-radius: 18px;
    padding: 18px;
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    margin-bottom: 6px;
}

.stats span {
    color: var(--muted);
    font-size: 14px;
}

.form-card {
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 34px);

    background: rgba(10, 18, 26, 0.92);
    /* menej priesvitné */
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    box-shadow:
        0 24px 80px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.form-card h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.form-card>p {
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 22px;
}

.lead-form {
    display: grid;
    gap: 13px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(3, 7, 12, .55);
    color: var(--text);
    border-radius: 14px;
    padding: 15px 16px;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(51, 209, 122, .75);
    box-shadow: 0 0 0 4px rgba(51, 209, 122, .12);
}

.gdpr {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.gdpr input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--green);
}

button {
    border: 0;
    cursor: pointer;
    border-radius: 14px;
    padding: 16px 18px;
    font-weight: 900;
    font-size: 16px;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #041009;
}

button:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.form-status {
    margin: 0;
    min-height: 20px;
    font-weight: 700;
    font-size: 14px;
}

.form-status.success {
    color: var(--green);
}

.form-status.error {
    color: var(--danger);
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 82px clamp(18px, 5vw, 72px);
}

.section-head {
    max-width: 680px;
    margin-bottom: 28px;
}

.section h2,
.cta h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    border-radius: var(--radius);
    padding: 26px;
}

.card span {
    color: var(--green);
    font-weight: 900;
}

.card h3 {
    margin: 20px 0 10px;
    font-size: 22px;
}

.card p,
.steps p,
.cta p {
    color: var(--muted);
    line-height: 1.6;
}

.split {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.steps {
    display: grid;
    gap: 14px;
}

.steps div {
    border-radius: 18px;
    padding: 20px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
}

.steps strong {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(51, 209, 122, .16);
    color: var(--green);
}

.steps p {
    margin: 0;
}

.cta {
    max-width: 1040px;
    margin: 40px auto 90px;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top, rgba(51, 209, 122, .18), transparent 45%),
        var(--panel);
}

footer {
    border-top: 1px solid var(--line);
    padding: 28px clamp(18px, 5vw, 72px);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
}

footer div {
    color: var(--text);
    font-weight: 900;
}

@media (max-width: 900px) {
    .hero {
        padding-top: 20px;
    }

    .nav {
        margin-bottom: 42px;
    }

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

    .stats,
    .cards {
        grid-template-columns: 1fr;
    }

    .form-card {
        order: 2;
    }

    footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .nav-btn {
        display: none;
    }

    .hero-actions {
        display: grid;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    h1 {
        font-size: 42px;
    }
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-visual {
    position: relative;
    min-height: 265px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 30% 20%, rgba(51, 209, 122, .25), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.phone-card {
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%) rotate(-4deg);
    width: 210px;
    padding: 18px;
    border-radius: 26px;
    background: #071018;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.phone-top {
    width: 58px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .18);
    margin: 0 auto 18px;
}

.order-card {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
}

.order-card.active {
    background: rgba(51, 209, 122, .14);
    border-color: rgba(51, 209, 122, .35);
}

.order-card strong,
.order-card span {
    display: block;
}

.order-card strong {
    font-size: 14px;
    margin-bottom: 6px;
}

.order-card span {
    font-size: 13px;
    color: var(--muted);
}

.route-line {
    width: 3px;
    height: 42px;
    margin: 8px auto;
    border-radius: 99px;
    background: linear-gradient(var(--green), transparent);
}

.floating-badge {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(5, 13, 20, .82);
    border: 1px solid rgba(51, 209, 122, .35);
    color: var(--text);
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.floating-badge.car {
    left: 24px;
    bottom: 28px;
}

.floating-badge.support {
    right: 22px;
    top: 28px;
}

.mini-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(51, 209, 122, .13);
    margin-bottom: 12px;
}

.card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(51, 209, 122, .13);
    border: 1px solid rgba(51, 209, 122, .18);
    font-size: 25px;
    margin-bottom: 22px;
}


.center-head {
    text-align: center;
    margin-bottom: 46px;
}

.center-head h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card {
    min-height: 245px;
    padding: 34px 26px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .045);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 26px;
    background: rgba(51, 209, 122, .12);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.6;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    text-align: center;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green2);
    color: white;
    font-weight: 900;
    font-size: 22px;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-item p {
    color: var(--muted);
    line-height: 1.6;
    max-width: 290px;
    margin: 0 auto;
}

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

    .timeline {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .timeline::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }
}

.partner-wrap {
    padding-left: 16px;
    border-left: 1px solid var(--line);
}

.bolt-big {
    font-size: 18px;
    font-weight: 900;
    color: #2f8f5b;
    letter-spacing: 0.3px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* DRIVE = rovnaká farba ako Bolt */
.drive {
    color: var(--green);
}


/* malé "partner" */
.partner-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Bolt Food zvýraznené */
.bolt {
    font-weight: 900;
    font-size: 22px;
    color: var(--green);
    letter-spacing: 0.4px;
}

.partner-inline {
    display: flex;
    align-items: baseline;
    /* dôležité – baseline alignment */
    gap: 8px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.partner-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scroll-top {
    position: fixed;
    left: 20px;
    bottom: 20px;

    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;

    padding: 0;
    border-radius: 50%;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #041009;

    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 50;
}

.scroll-top span {
    display: block;
    line-height: 1;
    transform: translateY(-1px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #ffffff;
    color: var(--green2);
}

.form-section {
    padding-top: 40px;
}

.form-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.form-layout .hero-visual {
    min-height: 430px;
}

.form-layout .phone-card {
    top: 72px;
}

.form-layout .form-card {
    width: 100%;
}

@media (max-width: 900px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .form-layout .hero-visual {
        min-height: 320px;
    }
}


.real-earnings-section {
    padding-top: 46px;
}

.real-earnings-section .center-head p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
}

.real-earnings-section .center-head strong {
    color: var(--green);
}

.real-earnings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.earning-widget {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(51, 209, 122, .14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
}

.earning-widget.highlight {
    border-color: rgba(51, 209, 122, .45);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, .35),
        0 0 40px rgba(51, 209, 122, .10);
}

.earning-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.earning-top h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.earning-top span {
    color: var(--muted);
    font-weight: 700;
}

.delivery-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: rgba(51, 209, 122, .13);
    border: 1px solid rgba(51, 209, 122, .18);
    font-size: 22px;
}

.earning-money {
    color: var(--green);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.earning-widget p {
    color: var(--muted);
    margin-bottom: 26px;
    font-weight: 700;
}

.earning-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.earning-bottom span {
    color: var(--muted);
    font-size: 13px;
}

.earning-bottom strong {
    color: var(--text);
}

.real-earnings-note {
    max-width: 760px;
    margin: 26px auto 0;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 1050px) {
    .real-earnings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .real-earnings-grid {
        grid-template-columns: 1fr;
    }
}


.hidden-earning {
    display: none;
}

.real-earnings-grid.show-all .hidden-earning {
    display: block;
}

.earnings-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.earnings-more-btn {
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    background: rgba(255, 255, 255, .08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
}

.earnings-more-btn:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(51, 209, 122, .42);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    color: var(--green);
    padding: 0 6px;
}

.link-btn:hover {
    text-decoration: underline;
}