/* ============================================================
   Blog & guides typography
   ============================================================ */
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post-head { margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid #e5e7eb; }
.blog-post-head h1 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.01em;
}
.blog-post-meta { margin: 0; color: #6b7280; font-size: 13px; }

.blog-body { font-size: 16px; line-height: 1.7; color: #374151; }
.blog-body h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 700;
    margin: 32px 0 12px;
    color: #111827;
    letter-spacing: -0.005em;
}
.blog-body h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    margin: 24px 0 8px;
    color: #111827;
}
.blog-body p { margin: 0 0 14px; }
.blog-body ul, .blog-body ol { margin: 0 0 16px; padding-left: 24px; }
.blog-body li { margin-bottom: 6px; }
.blog-body strong { color: #111827; font-weight: 700; }
.blog-body a {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(124, 58, 237, .4);
    transition: text-decoration-color .15s, color .15s;
}
.blog-body a:hover {
    color: #d946ef;
    text-decoration-color: #d946ef;
}
.blog-body code {
    background: #f5f0ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

/* Blog index */
.blog-index-head { max-width: 720px; margin: 0 auto 28px; }
.blog-index-head h1 {
    margin: 0 0 8px;
    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.01em;
}
.blog-index-head p { margin: 0; color: #6b7280; font-size: 16px; line-height: 1.55; }

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}
.blog-card {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 18px;
    background: #fff;
    border: 1px solid #ede4ff;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(124, 58, 237, .12);
    border-color: #d6c5fa;
}
.blog-card h2 {
    margin: 0 0 6px !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    color: #111827 !important;
    letter-spacing: -0.005em;
}
.blog-card-meta { margin: 0 0 10px; color: #6b7280; font-size: 12px; }
.blog-card-desc { margin: 0 0 14px; color: #374151; font-size: 14px; line-height: 1.55; flex: 1; }
.blog-card-link { color: #7c3aed; font-weight: 600; font-size: 13.5px; }

@media (max-width: 640px) {
    .blog-index-head h1 { font-size: 26px !important; }
    .blog-index-head p { font-size: 14.5px; }
    .blog-index-grid { grid-template-columns: 1fr; gap: 14px; }
}

.blog-cta {
    margin-top: 36px;
    padding: 22px;
    border: 1px solid #ede4ff;
    background: #faf7ff;
    border-radius: 14px;
}
.blog-cta h3 { margin: 0 0 8px; font-size: 18px; }
.blog-cta p { margin: 0 0 14px; color: #374151; font-size: 14.5px; line-height: 1.55; }
.blog-cta .cta-btn { display: inline-flex; align-items: center; text-decoration: none; }

@media (max-width: 640px) {
    .blog-post-head h1 { font-size: 24px; }
    .blog-body { font-size: 15.5px; }
    .blog-body h2 { font-size: 20px !important; margin-top: 24px; }
    .blog-body h3 { font-size: 17px; }
}

:root {
    --yellow: #f3c300;
    --yellow-deep: #e8b900;
    --grey: #efefef;
    --text: #111827;
    --muted: #6b7280;
    --border: rgba(17,24,39,.14);
    --shadow: 0 30px 90px rgba(0,0,0,.18);
    --radius: 18px;
    --max: 1080px;
}

/* Reviews modal — full list */
.reviewsModal {
    position: fixed; inset: 0; z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
}
.reviewsModal.open { display: flex; }
.reviewsModalBack {
    position: absolute; inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(2px);
}
.reviewsModalBody {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    width: min(720px, 100%);
    max-height: 86vh;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.reviewsModalClose {
    position: absolute; top: 12px; right: 14px;
    background: transparent; border: 0;
    font-size: 28px; line-height: 1; cursor: pointer;
    color: var(--muted);
    width: 36px; height: 36px; border-radius: 50%;
}
.reviewsModalClose:hover { background: rgba(0,0,0,.05); color: var(--text); }
.reviewsModalHead {
    padding: 22px 28px 14px;
    border-bottom: 1px solid var(--border);
}
.reviewsModalHead h2 { margin: 0 0 6px; font-size: 22px; }
.reviewsModalMeta { color: var(--muted); font-size: 14px; }
.reviewsModalMeta strong { color: #f59e0b; font-size: 16px; }
.reviewsModalList {
    overflow-y: auto;
    padding: 12px 18px 18px;
    flex: 1;
}
.reviewModalCard {
    border-bottom: 1px solid var(--border);
    padding: 16px 10px;
}
.reviewModalCard:last-child { border-bottom: 0; }
.reviewModalHeadRow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.reviewModalAvatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--yellow); color: #111;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; flex-shrink: 0; overflow: hidden;
}
.reviewModalAvatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.reviewModalName { font-weight: 700; font-size: 14px; }
.reviewModalDate { color: var(--muted); font-size: 12px; }
.reviewModalStars { color: #f59e0b; letter-spacing: 1px; margin-left: auto; }
.reviewModalText {
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
}
.reviewsModalFoot {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: flex-end;
}
.reviewsModalFoot #googleReviewsLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: #111827;
    border: 0;
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(243, 195, 0, .35);
    transition: transform .15s, box-shadow .15s, filter .15s;
}
.reviewsModalFoot #googleReviewsLink:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(243, 195, 0, .45);
    filter: brightness(1.04);
}

@media (max-width: 640px) {
    .reviewsModalBody { max-height: 92vh; }
    .reviewsModalHead { padding: 18px 18px 12px; }
    .reviewsModalList { padding: 8px 12px 14px; }
}

/* Reviews strip (top of page, slim single-line scroller) */
.reviewStrip {
    background: #111827;
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviewStripTrack {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    padding: 8px 0;
    animation: review-strip-scroll 50s linear infinite;
}
.reviewStrip:hover .reviewStripTrack { animation-play-state: paused; }
@keyframes review-strip-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.reviewStripItem {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
    color: inherit;
    text-decoration: none;
    transition: opacity .15s;
}
a.reviewStripItem { cursor: pointer; }
a.reviewStripItem:hover .rsQuote { color: #fff; }
a.reviewStripItem:hover .rsAuthor { color: #fff; }
.reviewStripItem .rsStars { color: #f59e0b; letter-spacing: 1px; font-size: 12px; }
.reviewStripItem .rsQuote {
    color: #e5e7eb;
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.reviewStripItem .rsAuthor { color: #9ca3af; font-weight: 600; }
.reviewStripItem .rsSep { color: #4b5563; }
@media (max-width: 640px) {
    .reviewStripItem { font-size: 12px; gap: 8px; }
    .reviewStripItem .rsQuote { max-width: 260px; }
    .reviewStripTrack { gap: 24px; }
}
/* NOTE: the reviews ticker is intentionally kept auto-scrolling even when the
   visitor has "reduce motion" enabled — it's a slow, decorative, pausable loop
   and the site owner wants it visibly moving for everyone. We therefore do NOT
   disable its animation here; the strip stays overflow:hidden (no scrollbar). */

/* Reviews marquee */
.reviewMarquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviewTrack {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: review-scroll 60s linear infinite;
}
.reviewMarquee:hover .reviewTrack { animation-play-state: paused; }
@keyframes review-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.reviewCardPub {
    flex: 0 0 320px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
}
a.reviewCardPub {
    cursor: pointer;
}
a.reviewCardPub:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.reviewCardPub .rcHead {
    display: flex; align-items: center; gap: 10px;
}
.reviewCardPub .rcAvatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--yellow); color: #111;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
.reviewCardPub .rcAvatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.reviewCardPub .rcMeta { display: flex; flex-direction: column; min-width: 0; }
.reviewCardPub .rcName { font-weight: 700; font-size: 14px; }
.reviewCardPub .rcDate { color: var(--muted); font-size: 12px; }
.reviewCardPub .rcStars { color: #f59e0b; letter-spacing: 1px; font-size: 14px; }
.reviewCardPub .rcText {
    color: #374151; font-size: 14px; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Reviews card marquee: kept auto-scrolling under reduced motion too (same
   rationale as the top strip) — stays overflow:hidden so no scrollbar appears. */


* {
    box-sizing: border-box;
}

    html, body {
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.35;
    font-feature-settings: "cv11";
}

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

    a:hover {
        text-decoration: underline;
    }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
    width: 100%;
}

.center {
    text-align: center;
}

.strong {
    font-weight: 900;
}

.tiny {
    font-size: 12px;
    color: var(--muted);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 48px;
    width: auto;
    display: block;
}

.top-nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #374151;
}

    .top-nav a {
        padding: 10px 6px;
        font-size:16px;
    }

/* HERO */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0;
    width: 100%;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.10)),
        radial-gradient(1200px 520px at 30% 40%, rgba(255,255,255,.28), transparent 60%),
        url("/assets/hero-bg.jpg");
    background-size: cover, auto, cover;
    background-position: center center, 30% 40%, center center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    filter: saturate(1.08) contrast(1.08);
}

.hero-inner {
    position: relative;
    width: 100%;
    padding: 0;
}

/* Yellow translucent card + thick pale border */
.hero-card {
    width: min(980px, 96vw);
    background: linear-gradient(135deg, rgba(243,195,0,.78), rgba(243,195,0,.66));
    border: 6px solid rgba(255,255,255,.78);
    border-radius: 26px;
    padding: 16px 64px 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(2px);
    max-width: 100%;
}

    .hero-card h1 {
        margin: 0 0 18px;
        font-size: clamp(40px, 4.8vw, 72px);
        line-height: 1.4;
        font-weight: 700;
        letter-spacing: -0.8px;
        color: #0b0f18;
        font-size: 50px;
    }

    .hero-card p {
        margin: 0 0 14px;
        font-size: clamp(16px, 1.35vw, 20px);
        color: #0b0f18;
    }

.hero-sub {
    margin: 0 0 18px;
    font-size: 14px;
    color: #0b0f18;
}

.hero-note {
    font-size: 13px;
    color: rgba(11,15,24,.88);
    margin-top: 10px;
}

/* Hero form */
.hero-form {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 26px 0 14px;
    flex-wrap: wrap;
    max-width: 100%;
}

.reg-input {
    height: 64px;
    width: min(340px, 92vw);
    border: 2px solid rgba(17,24,39,.35);
    background: #fff;
    border-radius: 10px;
    padding: 0 18px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 22px;
    text-align: center;
    max-width: 100%;
}

    .reg-input::placeholder {
        opacity: .55;
        letter-spacing: 2px;
    }

    .reg-input:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255,255,255,.35);
    }

.cta-btn {
    height: 64px;
    border: 0;
    background: #111827;
    color: #fff;
    padding: 0 26px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    max-width: 100%;
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(0,0,0,.18);
        filter: brightness(1.05);
    }

    .cta-btn:disabled {
        opacity: .7;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

.btn-outline {
    height: 64px;
    border: 2px solid rgba(17,24,39,.35);
    background: #fff;
    color: #111827;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
}

/* BANDS */
.band {
    padding: 60px 0;
}

.band-grey {
    background: var(--grey);
}

.band-yellow {
    background: var(--yellow);
}

.band h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -.6px;
}

.band-sub {
    max-width: 760px;
    margin: 0 auto 26px;
    font-size: 14px;
    color: #4b5563;
}

.band-rule {
    border: none;
    border-top: 1px solid rgba(0,0,0,.12);
    margin: 26px 0;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 18px;
}

.step {
    text-align: center;
    padding: 16px 12px;
}

    .step .num {
        width: 64px;
        height: 64px;
        margin: 0 auto 12px;
        border-radius: 999px;
        background: #eab308;
        border: 1px solid rgba(0,0,0,.16);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
    }

    .step h3 {
        margin: 0 0 8px;
        font-size: 22px;
        font-weight: 900;
    }

    .step p {
        margin: 0;
        font-size: 16px;
        color: #4b5563;
    }

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 28px;
    margin-top: 18px;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.18);
    background: rgba(255,255,255,.65);
    flex: 0 0 auto;
}

    .icon svg {
        color: #eab308;
        width: 17px;
        height: 17px;
    }

.feature h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.feature p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
}

/* PEOPLE */
.people {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 28px;
    align-items: center;
    margin-top: 22px;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 999px;
    border: 7px solid rgba(255,255,255,.65);
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
    background: url("/assets/person-left.jpg");
    background-size: cover;
    background-position: center;
}

    .avatar[data-avatar="right"] {
        background: url("/assets/person-right.jpg");
        background-size: cover;
        background-position: center;
    }

.people-copy {
    font-size: 18px;
    color: #111827;
}

    .people-copy p {
        margin: 0 0 12px;
        color: rgba(17,24,39,.85);
    }

/* ACCORDION */
.accordion {
    max-width: 980px;
    margin: 0 auto;
}

.acc-item {
    border-bottom: 1px solid rgba(0,0,0,.12);
}

.acc-head {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
}

.acc-title {
    color: #111827;
}

.acc-chevron {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
}

.acc-body {
    display: none;
    padding: 0 0 16px;
    font-size: 14px;
    color: #4b5563;
}

    .acc-body p {
        margin: 0 0 10px;
    }

    .acc-body ul {
        margin: 8px 0 12px 18px;
    }

.acc-item.open .acc-body {
    display: block;
}

.acc-item.open .acc-chevron {
    transform: rotate(180deg);
}

/* FOOTER */
.site-footer {
    background: var(--yellow);
    padding: 34px 0 18px;
}

.footer-inner {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-brand img {
    height: 28px;
    width: auto;             /* aspect-preserved — width/height HTML attrs ignored */
    display: block;
    margin-bottom: 8px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 26px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.footer-title {
    font-weight: 900;
    margin-bottom: 4px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.14);
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
}

.dot {
    opacity: .6;
}
.css-fqq7u2{
    text-align:center;
}
/* Vehicle confirmation card */
.vehicle-card {
    background: rgba(255,255,255,0.92);
    padding: 22px;
    border-radius: 18px;
    margin-top: 18px;
    max-width: 560px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.14);
    border: 1px solid rgba(0,0,0,.08);
}

.vehicle-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.vehicle-details {
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(17,24,39,.85);
}

.confirm-btn {
    background: #111827;
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

    .confirm-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(0,0,0,.18);
        filter: brightness(1.04);
    }

/* Contact form */
.contact-section {
    padding: 15px 10px;
    max-width: 640px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 14px;
}

    .form-row input {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,.14);
        font-size: 16px;
    }

        .form-row input:focus {
            outline: none;
            border-color: rgba(243,195,0,.85);
            box-shadow: 0 0 0 5px rgba(243,195,0,.18);
        }

.primary-btn {
    background: var(--yellow);
    border: none;
    padding: 16px;
    font-weight: 900;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(0,0,0,.14);
        filter: brightness(1.03);
    }

/* Success state */
.success-state {
    text-align: center;
    padding: 70px 20px;
    max-width: 640px;
    margin: 0 auto;
}

    .success-state h2 {
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 14px;
        letter-spacing: -.4px;
    }

    .success-state p {
        margin-bottom: 26px;
        opacity: 0.85;
        font-size: 16px;
    }

/* Uploads (drag & drop + thumbnails + progress) */
.upload-box {
    margin-top: 12px;
}

.dropzone {
    border: 2px dashed rgba(17,24,39,.25);
    border-radius: 18px;
    padding: 28px 20px;
    background: rgba(255,255,255,.55);
    transition: all .18s ease;
    cursor: pointer;
}

    .dropzone:hover {
        border-color: rgba(17,24,39,.45);
    }

    .dropzone.is-dragover {
        background: rgba(243,195,0,.18);
        border-color: rgba(243,195,0,.75);
        transform: translateY(-2px);
    }

.dz-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.dz-title {
    font-weight: 900;
    font-size: 16px;
}

.dz-sub {
    font-size: 13px;
    color: rgba(17,24,39,.65);
}

.pick-btn {
    height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    border: 0;
    background: #111827;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: all .18s ease;
}

    .pick-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 35px rgba(0,0,0,.16);
    }

.dz-hint {
    font-size: 12px;
    color: rgba(17,24,39,.6);
}

.upload-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    max-width: 100%;
}

.upload-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.10);
}

    .upload-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.upload-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.upload-name {
    font-weight: 900;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(17,24,39,.10);
    overflow: hidden;
}

    .progress > div {
        height: 100%;
        width: 0%;
        background: #111827;
        transition: width .12s ease;
    }

.upload-status {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: rgba(17,24,39,.70);
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .header-inner {
        height: 60px;
    }

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

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

    .people {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        min-height: 82vh;
        padding: 90px 0;
    }

    .hero-card {
        padding: 34px 22px 26px;
    }

    .hero-form {
        gap: 10px;
    }

    .reg-input {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }
}

/* Mobile full-width hero (fix right white strip + gutters) */
@media (max-width: 520px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 70px 0;
    }

        .hero .container.hero-inner {
            padding-left: 0;
            padding-right: 0;
            max-width: 100%;
            width: 100%;
        }

    .hero-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-width: 5px;
        border-radius: 22px;
        padding: 28px 18px 22px;
    }
}




/* ===== FORCE mobile hero to be compact (wins over everything) ===== */
@media (max-width: 860px) {
    .hero {
        min-height: auto !important;
        padding: 18px 0 18px !important; /* kills the huge top padding */
        align-items: flex-start !important;
    }

        .hero .container.hero-inner {
            padding-left: 10px !important;
            padding-right: 10px !important;
        }

    .hero-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 18px 14px 14px !important;
        border-width: 5px !important;
        border-radius: 20px !important;
    }

        .hero-card h1 {
            margin: 0 0 8px !important;
            font-size: 32px !important;
            line-height: 1.03 !important;
            letter-spacing: -0.6px !important;
        }

        .hero-card p {
            margin: 0 0 8px !important;
            font-size: 14px !important;
            line-height: 1.25 !important;
        }

    .hero-note {
        margin-top: 6px !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    .hero-form {
        margin: 12px 0 8px !important;
        gap: 10px !important;
    }

    .reg-input {
        height: 52px !important;
        font-size: 18px !important;
        letter-spacing: 1.4px !important;
        width: 100% !important;
    }

    .cta-btn {
        height: 52px !important;
        font-size: 16px !important;
        width: 100% !important;
    }

    /* When the VRM result card appears, keep it compact so it doesn't cause scrolling */
    #vrmResult.vehicle-card,
    .vehicle-card {
        margin-top: 12px !important;
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .vehicle-title {
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }

    .vehicle-details {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }

    .confirm-btn {
        padding: 12px 14px !important;
        border-radius: 12px !important;
        width: 100% !important;
    }
}

.burger {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .burger {
        display: block;
    }

    .top-nav {
        display: none;
    }

    .site-header.nav-open .top-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 12px;
        right: 12px;
        top: 60px;
        background: #fff;
        border: 1px solid rgba(0,0,0,.12);
        border-radius: 14px;
        padding: 10px;
        gap: 0;
    }

        .site-header.nav-open .top-nav a {
            padding: 12px 10px;
            border-radius: 10px;
        }
}

/* Desktop hero positioning */
@media (min-width: 861px) {
    .hero {
        align-items: flex-start; /* stop vertical centering */
        padding-top: 40px; /* push it down slightly from header */
        padding-bottom: 80px;
    }

    .hero-card {
        margin-top: 0; /* ensure no accidental centering */
    }
}