/* ==========================================================================
   Jsbiaoshu - Fleet Leasing Affiliate
   Theme: Navy Blue & White - Automotive
   ========================================================================== */

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

*, *::before, *::after { box-sizing: border-box; }

/* ---- Base ---- */
.jsb-html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: #ffffff;
}

.jsb-body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #0a1628;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
.jsb-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
}

.jsb-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #0a1628;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.jsb-h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 0.75rem 0;
}

.jsb-h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a1628;
    margin: 0 0 0.5rem 0;
}

.jsb-overline {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #3b82f6;
    margin: 0 0 0.75rem 0;
    display: inline-block;
}

.jsb-p {
    font-size: 1rem;
    color: #475569;
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
}

.jsb-p-lg {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0 0 1.75rem 0;
    line-height: 1.7;
}

.jsb-p-sm {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.jsb-bold { font-weight: 700; }

/* ---- Layout ---- */
.jsb-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jsb-wrap-sm {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jsb-sec {
    padding: 6rem 0;
}

.jsb-sec-sm {
    padding: 3.5rem 0;
}

/* ---- Disclosure ---- */
.jsb-disclosure {
    background: #0a1628;
    padding: 0.6rem 2rem;
    text-align: center;
}

.jsb-disclosure p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

/* ---- Header ---- */
.jsb-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
}

.jsb-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.jsb-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.jsb-logo-img {
    height: 34px;
    width: auto;
}

.jsb-nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jsb-nav-a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.jsb-nav-a:hover { color: #1e3a5f; }

.jsb-nav-a--active {
    color: #1e3a5f;
    font-weight: 600;
}

.jsb-nav-a--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #3b82f6;
    border-radius: 2px;
}

.jsb-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.jsb-burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #0a1628;
    position: relative;
    transition: 0.3s;
}

.jsb-burger-line::before,
.jsb-burger-line::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #0a1628;
    transition: 0.3s;
}

.jsb-burger-line::before { top: -7px; }
.jsb-burger-line::after { top: 7px; }

/* ---- Buttons ---- */
.jsb-btn {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.jsb-btn--primary {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.jsb-btn--primary:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.jsb-btn--white {
    background: #ffffff;
    color: #0a1628;
    border-color: #ffffff;
}

.jsb-btn--white:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.jsb-btn--outline {
    background: transparent;
    color: #0a1628;
    border-color: #cbd5e1;
}

.jsb-btn--outline:hover {
    background: #0a1628;
    color: #ffffff;
    border-color: #0a1628;
    transform: translateY(-2px);
}

.jsb-btn--lg {
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.jsb-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.jsb-link:hover {
    border-bottom-color: #3b82f6;
    color: #1e3a5f;
}

/* ---- Hero (Full-width gradient) ---- */
.jsb-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f2744 100%);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.jsb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.jsb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.jsb-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.jsb-hero-text .jsb-p-lg {
    color: rgba(255,255,255,0.7);
}

.jsb-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.jsb-hero-img-box {
    position: relative;
}

.jsb-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.jsb-hero-price-tag {
    position: absolute;
    bottom: -20px;
    left: 24px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 3;
}

.jsb-hero-price-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.jsb-hero-price-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0a1628;
    margin-top: 0.15rem;
}

.jsb-hero-price-sub {
    font-size: 0.75rem;
    color: #3b82f6;
    font-weight: 500;
}

/* ---- Stats Bar ---- */
.jsb-stats {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.jsb-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.jsb-stat {
    padding: 2.5rem 1rem;
    border-right: 1px solid #e2e8f0;
}

.jsb-stat:last-child { border-right: none; }

.jsb-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1;
}

.jsb-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- Vehicle Cards (horizontal scroll on mobile) ---- */
.jsb-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.jsb-vcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.jsb-vcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.1);
    border-color: #3b82f6;
}

.jsb-vcard-img-wrap {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.jsb-vcard-img {
    width: 90%;
    max-height: 140px;
    object-fit: contain;
}

.jsb-vcard-body {
    padding: 1.75rem;
}

.jsb-vcard-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.jsb-vcard-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a1628;
    margin: 0.75rem 0 0.25rem;
}

.jsb-vcard-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
}

.jsb-vcard-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.jsb-vcard-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1e3a5f;
    background: #eff6ff;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
}

/* ---- Benefits (alternating layout) ---- */
.jsb-benefits-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.jsb-benefits-row:last-child { margin-bottom: 0; }

.jsb-benefits-row--reverse .jsb-benefits-visual { order: -1; }

.jsb-benefits-visual {
    position: relative;
}

.jsb-benefits-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.jsb-benefit-tile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.jsb-benefit-tile:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10,22,40,0.06);
}

.jsb-benefit-tile-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.jsb-benefit-tile-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a5f;
}

/* ---- Pricing Table ---- */
.jsb-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.jsb-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.jsb-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10,22,40,0.08);
    border-color: #3b82f6;
}

.jsb-price-card--featured {
    border-color: #3b82f6;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 40%);
}

.jsb-price-card--featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.12em;
}

.jsb-price-card-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 0.25rem;
}

.jsb-price-card-type {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.jsb-price-card-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #0a1628;
}

.jsb-price-card-val span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.jsb-price-card-note {
    font-size: 0.78rem;
    color: #3b82f6;
    font-weight: 500;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.jsb-price-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.jsb-price-card-features li {
    font-size: 0.85rem;
    color: #475569;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    padding-left: 1.5rem;
    position: relative;
}

.jsb-price-card-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* ---- FAQ ---- */
.jsb-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.jsb-faq-item:hover { border-color: #cbd5e1; }

.jsb-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0a1628;
    cursor: pointer;
    transition: 0.3s;
}

.jsb-faq-q:hover { color: #3b82f6; }

.jsb-faq-arrow {
    font-size: 1.25rem;
    color: #3b82f6;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.jsb-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.jsb-faq-a--open {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.jsb-faq-a p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

/* ---- CTA Banner ---- */
.jsb-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 2rem;
}

.jsb-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.jsb-cta-inner {
    position: relative;
    z-index: 2;
}

/* ---- Trust ---- */
.jsb-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.jsb-trust-box {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.jsb-trust-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10,22,40,0.05);
}

.jsb-trust-ico { font-size: 2rem; margin-bottom: 0.75rem; }

.jsb-trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a5f;
}

/* ---- Specs Table ---- */
.jsb-specs {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.jsb-specs tr { border-bottom: 1px solid #e2e8f0; }
.jsb-specs tr:last-child { border-bottom: none; }

.jsb-specs td {
    padding: 1.15rem 1.5rem;
    font-size: 0.9rem;
}

.jsb-specs td:first-child {
    font-weight: 500;
    color: #64748b;
    width: 40%;
}

.jsb-specs td:last-child {
    color: #0a1628;
    font-weight: 500;
}

/* ---- Legal ---- */
.jsb-legal-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    border-radius: 20px;
}

/* ---- Contact ---- */
.jsb-contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.jsb-contact-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

/* ---- Preloader ---- */
.jsb-preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.jsb-preloader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.jsb-preloader-spin {
    width: 44px;
    height: 44px;
    border: 3px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: jsb-rotate 0.9s linear infinite;
    margin-bottom: 1.25rem;
}

.jsb-preloader-txt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: #0a1628;
    text-transform: uppercase;
    animation: jsb-fade 1.5s ease-in-out infinite;
}

@keyframes jsb-rotate {
    to { transform: rotate(360deg); }
}

@keyframes jsb-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ---- Footer ---- */
.jsb-footer {
    background: #0a1628;
    color: #fff;
    padding: 5rem 0 2rem;
}

.jsb-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.jsb-footer-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.jsb-footer-heading {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.jsb-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jsb-footer-menu li { margin-bottom: 0.8rem; }

.jsb-footer-menu a {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.jsb-footer-menu a:hover { color: #60a5fa; }

.jsb-footer-bottom {
    border-top: 1px solid rgba(148,163,184,0.12);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jsb-footer-copy {
    font-size: 0.8rem;
    color: #475569;
    margin: 0;
}

/* ---- Cookie Popup ---- */
.jsb-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a1628;
    padding: 1.25rem 2rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}

.jsb-cookie--show { transform: translateY(0); }

.jsb-cookie-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.jsb-cookie-text {
    font-size: 0.84rem;
    color: #cbd5e1;
    margin: 0;
    flex: 1;
    min-width: 280px;
    line-height: 1.6;
}

.jsb-cookie-text a { color: #60a5fa; text-decoration: underline; }

.jsb-cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

.jsb-cookie-yes {
    font-family: 'Inter', sans-serif;
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.jsb-cookie-yes:hover { background: #2563eb; }

.jsb-cookie-no {
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #94a3b8;
    border: 1px solid #334155;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.jsb-cookie-no:hover { border-color: #94a3b8; color: #fff; }

/* ---- Mobile Menu ---- */
.jsb-menu-open { display: flex !important; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .jsb-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .jsb-hero-ctas { justify-content: center; }

    .jsb-hero-price-tag { left: 50%; transform: translateX(-50%); }

    .jsb-vehicles-grid { grid-template-columns: repeat(2, 1fr); }

    .jsb-benefits-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .jsb-benefits-row--reverse .jsb-benefits-visual { order: 0; }

    .jsb-price-grid { grid-template-columns: 1fr 1fr; }

    .jsb-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .jsb-stats-row { grid-template-columns: repeat(2, 1fr); }

    .jsb-stat { border-right: none; border-bottom: 1px solid #e2e8f0; }
}

@media (max-width: 768px) {
    .jsb-h1 { font-size: 2.5rem; }
    .jsb-h2 { font-size: 1.85rem; }

    .jsb-burger { display: block; }

    .jsb-nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        padding: 1.5rem 2rem;
        box-shadow: 0 15px 25px rgba(0,0,0,0.06);
        gap: 1rem;
    }

    .jsb-hero { padding: 4.5rem 0 5rem; }

    .jsb-hero-ctas { flex-direction: column; }

    .jsb-btn--lg { width: 100%; text-align: center; }
    .jsb-btn--white { width: 100%; text-align: center; }

    .jsb-vehicles-grid,
    .jsb-price-grid {
        grid-template-columns: 1fr;
    }

    .jsb-trust-row { grid-template-columns: repeat(2, 1fr); }

    .jsb-sec { padding: 4rem 0; }

    .jsb-cta {
        margin: 0;
        border-radius: 0;
        padding: 3rem 1.5rem;
    }

    .jsb-stats-row { grid-template-columns: 1fr 1fr; }

    .jsb-cookie-inner { flex-direction: column; text-align: center; }
    .jsb-cookie-btns { width: 100%; justify-content: center; }

    .jsb-benefits-icon-grid { grid-template-columns: 1fr 1fr; }

    .jsb-legal-box { padding: 1.75rem; }
}

@media (max-width: 480px) {
    .jsb-h1 { font-size: 2rem; }
    .jsb-trust-row { grid-template-columns: 1fr; }
    .jsb-stat-num { font-size: 2rem; }
    .jsb-wrap, .jsb-wrap-sm { padding: 0 1.25rem; }
}
