/* ================================================================
   SpaceZ – Design System
   Based on: v0-space-z-shipping-platform.vercel.app
   Framework: Bootstrap 5 + custom classes (sz-*)
   ================================================================ */

:root {
    --sz-blue:        #2B5278;
    --sz-blue-light:  #4A7CB8;
    --sz-blue-dark:   #1e3a5f;
    --sz-green:       #16a34a;
    --sz-green-dark:  #15803d;
    --sz-banner:      #2d3e50;
    --sz-text:        #111827;
    --sz-muted:       #6b7280;
    --sz-border:      #e5e7eb;
    --sz-light:       #f8fafc;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--sz-text);
    margin: 0;
}

/* ---- NAVBAR -------------------------------------------------- */
.sz-navbar {
    padding: 0.625rem 0;
    background-color: #f1f5f9;
    border-bottom: 3px solid var(--sz-blue);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.sz-nav-link {
    font-size: 0.875rem;
    color: #475569 !important;
    font-weight: 500;
    padding: 0.375rem 0.625rem !important;
    transition: color 0.2s;
    white-space: nowrap;
}
.sz-nav-link:hover { color: var(--sz-blue) !important; }

/* Language button */
.sz-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1;
}
.sz-lang-btn:hover,
.sz-lang-btn[aria-expanded="true"] { background: #0f766e; }
.sz-lang-btn .bi { font-size: 1rem; }
.sz-lang-btn::after { display: none; }

/* Login link */
.sz-btn-login-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 0.375rem 0.5rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.sz-btn-login-link:hover { color: var(--sz-blue); }

/* Sign Up button */
.sz-btn-register {
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--sz-blue-dark);
    border-color: var(--sz-blue-dark);
    color: white !important;
    padding: 0.4rem 1.125rem;
    border-radius: 6px;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.sz-btn-register:hover {
    background-color: var(--sz-blue);
    border-color: var(--sz-blue);
}

/* ---- LANGUAGE DROPDOWN -------------------------------------- */
.sz-lang-dropdown {
    min-width: 300px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    overflow: hidden;
    margin-top: 6px !important;
}
.sz-lang-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #f1f5f9;
}
.sz-lang-dropdown-header .bi { font-size: 1.1rem; color: #6b7280; }
.sz-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: none;
    border-left: 3px solid transparent;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s;
}
.sz-lang-option:hover { background-color: #f8fafc; }
.sz-lang-option--active { border-left-color: var(--sz-blue-dark); background-color: #f8fafc; }
.sz-lang-code-badge {
    width: 38px; height: 38px;
    background: #e2e8f0;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: #374151; flex-shrink: 0;
}
.sz-lang-option--active .sz-lang-code-badge { background: var(--sz-blue-dark); color: white; }
.sz-lang-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sz-lang-name { font-size: 0.875rem; font-weight: 600; color: #111827; }
.sz-lang-native { font-weight: 400; color: #6b7280; }
.sz-lang-region { font-size: 0.75rem; color: #9ca3af; }
.sz-lang-check { color: var(--sz-green); font-size: 1.1rem; font-weight: 900; flex-shrink: 0; }
.sz-lang-check--hidden { visibility: hidden; }

/* ---- HERO ---------------------------------------------------- */
.sz-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,25,45,0.88) 0%,
        rgba(15,25,45,0.70) 55%,
        rgba(15,25,45,0.35) 100%
    );
}
.sz-hero-headline {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.sz-hero-sub {
    font-size: 1.075rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero form controls */
.sz-hero-select {
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--sz-text);
    width: 100%;
    cursor: pointer;
}
.sz-hero-select:disabled {
    background: rgba(255,255,255,0.55);
    color: #9ca3af;
    cursor: not-allowed;
}

/* Primary CTA — blue-green gradient */
.sz-btn-primary {
    display: inline-block;
    background: linear-gradient(to right, var(--sz-blue), var(--sz-blue-light), var(--sz-green));
    border: none;
    color: white;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    cursor: pointer;
}
.sz-btn-primary:hover { opacity: 0.9; color: white; transform: translateY(-1px); }
.sz-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Outlined white button (hero secondary) */
.sz-btn-outline-white {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.75);
    color: white;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}
.sz-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

/* ---- BUSINESS BANNER ---------------------------------------- */
.sz-business-banner {
    background: var(--sz-banner);
    padding: 1.125rem 0;
}
.sz-business-banner p {
    color: rgba(255,255,255,0.90);
    font-size: 0.9375rem;
    margin: 0;
}
.sz-business-banner strong { color: white; }
.sz-banner-btn {
    display: inline-block;
    background: var(--sz-green);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s;
}
.sz-banner-btn:hover { background: var(--sz-green-dark); color: white; }

/* ---- SECTION TYPOGRAPHY ------------------------------------- */
.sz-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sz-blue-light);
    margin-bottom: 0.5rem;
    display: block;
}
.sz-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--sz-text);
    line-height: 1.2;
    margin: 0;
}

/* ---- CATEGORY CARDS ----------------------------------------- */
.sz-category-card {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
    cursor: pointer;
}
.sz-category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}
.sz-category-card:hover img { transform: scale(1.06); }
.sz-category-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.875rem 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}
.sz-category-name {
    color: white;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    line-height: 1.2;
}
.sz-category-sub {
    color: rgba(255,255,255,0.68);
    font-size: 0.66rem;
    display: block;
    margin-top: 3px;
    line-height: 1.3;
}

/* ---- FOUR STEPS -------------------------------------------- */
.sz-step-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 1.25rem;
    display: block;
}
.sz-step-title {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--sz-blue);
    margin-bottom: 0.5rem;
}

/* ---- CARRIER SECTION ---------------------------------------- */
.sz-carrier-section {
    background: var(--sz-banner);
    color: white;
}
.sz-carrier-section .sz-section-title { color: white; }
.sz-carrier-section .sz-section-label { color: #7dd3fc; }
.sz-carrier-img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    max-height: 440px;
    display: block;
}
.sz-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.375rem;
}
.sz-feature-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(74,124,184,0.25);
    color: var(--sz-blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.sz-feature-title { font-weight: 700; font-size: 1rem; color: white; margin-bottom: 0.125rem; }
.sz-feature-desc { font-size: 0.875rem; color: rgba(255,255,255,0.58); margin: 0; }

/* ---- BUSINESS / ENTERPRISE ---------------------------------- */
.sz-business-section {
    background: var(--sz-blue);
    color: white;
}
.sz-business-section .sz-section-title { color: white; }
.sz-business-section .sz-section-label { color: #93c5fd; }
.sz-stat-value {
    font-size: 2.625rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.sz-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.60);
    margin-top: 0.375rem;
}
.sz-enterprise-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 1.875rem;
    height: 100%;
}
.sz-enterprise-card .sz-benefit-icon { color: #7dd3fc; }
.sz-enterprise-card .sz-benefit-title { color: white; }
.sz-enterprise-card p { color: rgba(255,255,255,0.60); font-size: 0.875rem; margin: 0; }
.sz-benefit-icon { font-size: 2rem; display: block; margin-bottom: 0.875rem; }
.sz-benefit-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.375rem; }

/* ---- TESTIMONIALS ------------------------------------------- */
.sz-testimonial-card {
    background: white;
    border: 1px solid var(--sz-border);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sz-testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(43,82,120,0.10);
    transform: translateY(-2px);
}
.sz-testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.sz-testimonial-text { font-size: 0.9375rem; color: var(--sz-text); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.sz-testimonial-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.125rem; }
.sz-testimonial-title { font-size: 0.8125rem; color: var(--sz-muted); }

/* ---- FOOTER -------------------------------------------------- */
.sz-footer-title { font-size: 0.72rem; letter-spacing: 0.09em; color: rgba(255,255,255,0.42); }
.sz-footer-links { margin: 0; padding: 0; }
.sz-footer-links li { margin-bottom: 0.5rem; font-size: 0.875rem; }
.sz-footer-links a { color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
.sz-footer-links a:hover { color: var(--sz-green); }
.sz-social-link { transition: color 0.2s !important; }
.sz-social-link:hover { color: var(--sz-green) !important; }
.sz-cert-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}
.sz-cert-logo:hover { opacity: 1; }

/* ---- INNER PAGES -------------------------------------------- */
.sz-page-content { padding: 3.5rem 0 4rem; }

/* ---- UTILITIES ---------------------------------------------- */
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(43,82,120,0.30); }

@media (max-width: 575.98px) {
    .sz-category-sub { display: none; }
    .sz-hero-headline { font-size: 1.625rem; }
}

/* ================================================================
   HOMEPAGE SECTIONS
   ================================================================ */

/* ---- HOME HERO (white bg, 2-col) ----------------------------- */
.sz-home-hero {
    padding: 5rem 0 6rem;
    background: white;
}
.sz-home-h1 {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    color: var(--sz-text);
}
.sz-home-subtext {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}
.sz-hero-select-white {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sz-text);
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.sz-hero-select-white:hover { border-color: var(--sz-blue-light); }
.sz-hero-select-white:focus { border-color: var(--sz-blue); box-shadow: 0 0 0 3px rgba(74,124,184,0.2); outline: none; }
.sz-hero-select-white:disabled { opacity: 0.5; cursor: not-allowed; }
.sz-btn-carrier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--sz-blue);
    color: var(--sz-blue);
    padding: 0.8125rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    background: transparent;
}
.sz-btn-carrier:hover {
    background: linear-gradient(to right, var(--sz-blue), var(--sz-blue-light));
    color: white;
    border-color: var(--sz-blue-light);
}
.sz-btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--sz-blue), var(--sz-blue-light), var(--sz-green));
    border: none;
    color: white;
    padding: 0.8125rem 2rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    cursor: pointer;
}
.sz-btn-primary-lg:hover { opacity: 0.9; color: white; transform: translateY(-1px); }
.sz-btn-primary-lg.disabled, .sz-btn-primary-lg:disabled { opacity: 0.5; cursor: not-allowed; transform: none; pointer-events: none; }

/* ---- BIZ BANNER (dark gradient) ------------------------------ */
.sz-biz-banner {
    background: linear-gradient(to right, #1e3a52, #2d3e50);
    padding: 2rem 0;
}
.sz-biz-banner p { color: white; font-size: clamp(1rem, 2vw, 1.375rem); font-weight: 600; margin: 0; }
.sz-btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #16a34a, #22c55e);
    color: white;
    padding: 0.625rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}
.sz-btn-green:hover { background: linear-gradient(to right, #15803d, #16a34a); color: white; }

/* ---- CATEGORIES (icon-grid style) ---------------------------- */
.sz-categories-section { padding: 3rem 0 4rem; }
.sz-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}
.sz-category-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); color: inherit; }
.sz-category-img { width: 96px; height: 96px; object-fit: contain; margin-bottom: 1rem; }
.sz-category-title { font-weight: 700; font-size: 0.8rem; margin-bottom: 0.375rem; color: var(--sz-text); text-transform: uppercase; letter-spacing: 0.03em; }
.sz-category-desc { font-size: 0.75rem; color: #6b7280; line-height: 1.5; margin: 0; }

/* ---- PHONE BANNER -------------------------------------------- */
.sz-phone-banner { background: #2d3e50; padding: 1.5rem 0; }
.sz-phone-banner p { color: white; font-size: clamp(1rem, 2vw, 1.375rem); font-weight: 600; margin: 0; text-align: center; }
.sz-phone-banner a.sz-phone-green { color: #4ade80; text-decoration: underline; }
.sz-phone-banner a.sz-phone-green:hover { color: #86efac; }
.sz-phone-banner a.sz-phone-blue { color: #5dade2; text-decoration: underline; }
.sz-phone-banner a.sz-phone-blue:hover { color: #85c1e9; }

/* ---- FOUR STEPS --------------------------------------------- */
.sz-steps-section { padding: 4rem 0 5rem; background: white; }
.sz-step-box {
    width: 160px; height: 160px;
    background: white;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sz-step-box img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.sz-step-num { font-size: 1.25rem; font-weight: 800; color: var(--sz-text); margin-bottom: 0.75rem; text-transform: uppercase; }
.sz-step-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.65; margin: 0; }

/* ---- RESERVATION BANNER ------------------------------------- */
.sz-reservation-banner { background: #1e3a52; padding: 3rem 0 4rem; }
.sz-reservation-banner h2 { color: white; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1.5rem; }
.sz-reservation-sub { color: rgba(255,255,255,.9); font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; display: block; margin-top: 0.5rem; }

/* ---- FULL-WIDTH IMAGE STRIP --------------------------------- */
.sz-fullwidth-strip { padding: 2rem 0 3rem; }
.sz-fullwidth-strip img { width: 100%; height: auto; display: block; }

/* ---- TRUST/PARTNERSHIP TEXT --------------------------------- */
.sz-trust-text-section { padding: 2rem 0 3rem; background: white; }
.sz-trust-text-section p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--sz-text); line-height: 1.75; max-width: 820px; margin: 0 auto; }

/* ---- CARRIERS PAGE ------------------------------------------ */
.sz-carriers-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}
.sz-carriers-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sz-carriers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.62), rgba(0,0,0,.48));
}
.sz-carriers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5rem 1rem;
}
.sz-carriers-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.sz-carriers-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: rgba(255,255,255,.88);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
.sz-btn-carriers-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #2B5278, #4A7CB8, #16a34a);
    border-radius: 8px;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: opacity .2s, box-shadow .2s;
}
.sz-btn-carriers-primary:hover { opacity: .9; box-shadow: 0 6px 20px rgba(0,0,0,.35); color: white; }

.sz-carriers-how { padding: 5rem 0; background: white; }
.sz-carriers-how h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--sz-text); }
.sz-carriers-how > .container > .text-center p { font-size: 1.1rem; color: #6b7280; }

.sz-carriers-step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #fff7ed;
    color: #ea580c;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.sz-carriers-step h3 { font-size: 1.15rem; font-weight: 700; color: var(--sz-text); margin-bottom: .5rem; }
.sz-carriers-step p  { font-size: .92rem; color: #6b7280; line-height: 1.6; margin: 0; }

.sz-carriers-loads { padding: 5rem 0; background: white; border-top: 1px solid #f1f5f9; }
.sz-carriers-loads h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--sz-text); }
.sz-carriers-load-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: default;
    transition: border-color .2s, box-shadow .2s;
    height: 100%;
}
.sz-carriers-load-card:hover { border-color: #3b82f6; box-shadow: 0 6px 18px rgba(59,130,246,.13); }
.sz-carriers-load-card .sz-load-emoji { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.sz-carriers-load-card h3 { font-size: .95rem; font-weight: 700; color: var(--sz-text); margin-bottom: .375rem; }
.sz-carriers-load-card p  { font-size: .8rem; color: #6b7280; margin: 0; }

.sz-carriers-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #2B5278, #4A7CB8);
    text-align: center;
}
.sz-carriers-cta h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: white; margin-bottom: 1rem; }
.sz-carriers-cta p  { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 580px; margin: 0 auto 2rem; }
.sz-btn-carriers-white {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 1rem 2.5rem; font-size: 1.05rem; font-weight: 600;
    color: #2B5278; background: white; border-radius: 8px; border: none;
    text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.2);
    transition: background .2s, box-shadow .2s;
}
.sz-btn-carriers-white:hover { background: #f1f5f9; box-shadow: 0 6px 20px rgba(0,0,0,.28); color: #2B5278; }
.sz-btn-carriers-outline {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 1rem 2.5rem; font-size: 1.05rem; font-weight: 600;
    color: white; background: transparent;
    border: 2px solid white; border-radius: 8px;
    text-decoration: none; transition: background .2s;
}
.sz-btn-carriers-outline:hover { background: rgba(255,255,255,.12); color: white; }

/* ---- SHIPPERS PAGE ------------------------------------------ */
.sz-shippers-hero { padding: 5rem 0 3rem; background: #f8fafc; }
.sz-shippers-hero h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--sz-text); }
.sz-shippers-hero p  { font-size: 1.1rem; color: #6b7280; max-width: 700px; margin: 0 auto; }

.sz-shipper-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 100%;
}
.sz-shipper-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59,130,246,0.15);
    color: inherit;
    text-decoration: none;
}
.sz-shipper-card-img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    transition: transform 0.3s;
}
.sz-shipper-card:hover .sz-shipper-card-img { transform: scale(1.07); }
.sz-shipper-card-body { padding: 1rem; text-align: center; }
.sz-shipper-card-title { font-weight: 700; font-size: 0.85rem; color: var(--sz-text); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.375rem; }
.sz-shipper-card-desc  { font-size: 0.78rem; color: #6b7280; line-height: 1.5; margin: 0; }

.sz-shippers-benefits { padding: 3.5rem 0 4rem; background: white; }
.sz-shippers-benefit-card { background: #f9fafb; border-radius: 12px; padding: 1.75rem; display: flex; align-items: flex-start; gap: 1rem; }
.sz-shippers-benefit-card svg { flex-shrink: 0; color: var(--sz-dark); }
.sz-shippers-benefit-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.25rem; }
.sz-shippers-benefit-card p  { font-size: 0.95rem; color: #6b7280; margin: 0; }

/* ---- SHIPPER BENEFITS --------------------------------------- */
.sz-shipper-benefits { padding: 4rem 0 5rem; background: linear-gradient(to bottom right, #f8fafc, #f3f4f6); }
.sz-benefit-card2 {
    background: white;
    border: 2px solid rgba(229,231,235,0.5);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s;
}
.sz-benefit-card2:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.sz-benefit-icon-circle {
    width: 64px; height: 64px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #2563eb;
}
.sz-benefit-card2-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--sz-text); }
.sz-benefit-card2-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.65; margin: 0; }

/* ---- HOW SPACEZ WORKS --------------------------------------- */
.sz-how-works { padding: 3rem 0 4rem; background: white; }

/* ---- TRUST BADGES BAR -------------------------------------- */
.sz-trust-bar { background: #e5e7eb; border-top: 1px solid #d1d5db; border-bottom: 1px solid #d1d5db; padding: 2rem 0; margin-bottom: 4rem; }
.sz-trust-badge-label { font-weight: 700; font-size: 0.875rem; color: var(--sz-text); margin-bottom: 0.125rem; }
.sz-trust-badge-sub { font-size: 0.75rem; color: #6b7280; margin: 0; }

/* ---- JOIN AS CARRIER --------------------------------------- */
.sz-carrier-join { padding: 4rem 0; }
.sz-carrier-join h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--sz-text); margin-bottom: 1.5rem; line-height: 1.15; }
.sz-carrier-join-text { font-size: 1.0625rem; color: #6b7280; line-height: 1.75; margin-bottom: 2rem; }

/* ---- CARRIER BENEFITS -------------------------------------- */
.sz-carrier-benefits { padding: 4rem 0 5rem; background: #d1d5db; }
.sz-carrier-card {
    background: white;
    border: 2px solid rgba(229,231,235,0.4);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s;
}
.sz-carrier-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.sz-carrier-icon-green { width: 64px; height: 64px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: #16a34a; }
.sz-carrier-icon-blue { width: 64px; height: 64px; background: #dbeafe; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: #2563eb; }
.sz-carrier-card-title { font-weight: 600; font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--sz-text); }
.sz-carrier-card-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.65; margin: 0; }

/* ---- HEAVY EQUIPMENT CTA ----------------------------------- */
.sz-heavy-equip { background: #1e3a52; padding: 3rem 0 4rem; }
.sz-heavy-equip h2 { color: white; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.sz-heavy-equip-text { color: rgba(255,255,255,.9); font-size: 1.0625rem; margin-bottom: 1.75rem; line-height: 1.65; }

/* ---- ENTERPRISE SECTION ------------------------------------ */
.sz-enterprise-section { position: relative; padding: 5rem 0 8rem; overflow: hidden; }
.sz-enterprise-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.sz-enterprise-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(12,49,91,0.95), rgba(12,49,91,0.90), rgba(12,49,91,0.80));
}
.sz-enterprise-content { position: relative; z-index: 2; }
.sz-enterprise-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.10);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 1.5rem;
}
.sz-enterprise-title { color: white; font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; }
.sz-enterprise-p { color: rgba(255,255,255,.85); font-size: 1.0625rem; margin-bottom: 2rem; line-height: 1.65; }
.sz-enterprise-feature { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.sz-enterprise-feature-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.25rem; flex-shrink: 0;
}
.sz-enterprise-feature-title { font-weight: 600; font-size: 1.0625rem; color: white; margin-bottom: 0.25rem; }
.sz-enterprise-feature-desc { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin: 0; }
.sz-btn-enterprise-white {
    display: inline-flex; align-items: center; justify-content: center;
    background: white; color: #0c315b; border: none;
    padding: 0.875rem 2rem; font-weight: 600; font-size: 1rem;
    border-radius: 8px; text-decoration: none; white-space: nowrap;
    transition: background 0.2s;
}
.sz-btn-enterprise-white:hover { background: #f1f5f9; color: #0c315b; }
.sz-btn-enterprise-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: white; border: 2px solid white;
    padding: 0.875rem 2rem; font-weight: 600; font-size: 1rem;
    border-radius: 8px; text-decoration: none; white-space: nowrap;
    transition: background 0.2s;
}
.sz-btn-enterprise-outline:hover { background: rgba(255,255,255,0.1); color: white; }
.sz-stat-glass {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 16px;
    padding: 1.5rem;
}
.sz-stat-glass-num { font-size: 3rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.375rem; }
.sz-stat-glass-label { font-size: 0.875rem; color: rgba(255,255,255,0.80); margin: 0; }

/* ---- TESTIMONIALS ------------------------------------------ */
.sz-testimonials-section { padding: 5rem 0 8rem; background: #f9fafb; }
.sz-testimonial-card2 {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.2s;
}
.sz-testimonial-card2:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.sz-testimonial-stars2 { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.sz-testimonial-country { font-size: 0.75rem; color: #9ca3af; margin-bottom: 1rem; }
.sz-testimonial-quote { font-size: 0.9375rem; color: #374151; line-height: 1.65; margin-bottom: 1.25rem; }
.sz-testimonial-name2 { font-weight: 600; font-size: 0.9375rem; color: var(--sz-text); margin-bottom: 0.125rem; }
.sz-testimonial-role2 { font-size: 0.8125rem; color: #6b7280; margin: 0; }

/* ---- CARRIERS PAGE ----------------------------------------- */
.sz-carriers-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1e3a5f;
}
.sz-carriers-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.sz-carriers-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.65) 100%);
}
.sz-carriers-hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 1rem 4rem;
    text-align: center;
    color: white;
}
.sz-carriers-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    line-height: 1.1;
}
.sz-carriers-hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.65;
}
.sz-btn-carriers-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(to right, #2B5278, #4A7CB8, #16a34a);
    color: white; border: none; border-radius: 8px;
    padding: 1rem 2.5rem; font-size: 1.0625rem; font-weight: 600;
    text-decoration: none; white-space: nowrap;
    transition: opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.sz-btn-carriers-primary:hover { opacity: 0.9; color: white; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.sz-carriers-how { padding: 4rem 0 5rem; background: white; }
.sz-carriers-how h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--sz-text); }
.sz-carriers-how .mt-2 { color: #6b7280; font-size: 1.0625rem; }

.sz-carriers-step { padding: 0.5rem; }
.sz-carriers-step-num {
    width: 56px; height: 56px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.sz-carriers-step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.5rem; }
.sz-carriers-step p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin: 0; }

.sz-carriers-loads { padding: 4rem 0 5rem; background: #f9fafb; }
.sz-carriers-loads h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--sz-text); }
.sz-carriers-load-card {
    background: white;
    border: 1px solid var(--sz-border);
    border-radius: 12px;
    padding: 1.75rem 1rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sz-carriers-load-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.sz-load-emoji { font-size: 2.25rem; display: block; margin-bottom: 0.75rem; }
.sz-carriers-load-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.375rem; }
.sz-carriers-load-card p { font-size: 0.8125rem; color: #6b7280; margin: 0; }

.sz-carriers-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2B5278 0%, #4A7CB8 100%);
    text-align: center;
}
.sz-carriers-cta h2 { color: white; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.sz-carriers-cta p { color: rgba(255,255,255,0.9); font-size: 1.0625rem; margin-bottom: 2rem; }
.sz-btn-carriers-white {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: white; color: #1e3a5f; border: none; border-radius: 8px;
    padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
}
.sz-btn-carriers-white:hover { background: #f1f5f9; color: #1e3a5f; }
.sz-btn-carriers-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: white; border: 2px solid white; border-radius: 8px;
    padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
}
.sz-btn-carriers-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ---- BUSINESS PAGE ----------------------------------------- */
.sz-business-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1e3a5f;
}
.sz-business-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.sz-business-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.60) 50%, rgba(0,0,0,0.70) 100%);
}
.sz-business-hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 1rem 4rem;
    text-align: center;
    color: white;
}
.sz-business-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    line-height: 1.1;
}
.sz-business-hero-content p {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.sz-btn-business-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(to right, #2B5278, #4A7CB8, #16a34a);
    color: white; border: none; border-radius: 8px;
    padding: 1.0625rem 2.5rem; font-size: 1.0625rem; font-weight: 600;
    text-decoration: none; white-space: nowrap;
    transition: opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.sz-btn-business-primary:hover { opacity: 0.9; color: white; box-shadow: 0 6px 24px rgba(0,0,0,0.35); }

.sz-business-fleet { padding: 4rem 0 5rem; background: white; }
.sz-business-fleet h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: var(--sz-text); margin-bottom: 1rem; }
.sz-business-fleet-desc { font-size: 1.0625rem; color: #6b7280; line-height: 1.7; margin-bottom: 2rem; }

.sz-business-feature { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.sz-business-feature-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: #dbeafe; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #2563eb; font-size: 1.1rem;
}
.sz-business-feature h3 { font-size: 0.9375rem; font-weight: 600; color: var(--sz-text); margin-bottom: 0.25rem; }
.sz-business-feature p { font-size: 0.875rem; color: #6b7280; margin: 0; line-height: 1.55; }
.sz-btn-business-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: #2563eb; border: 2px solid #2563eb; border-radius: 8px;
    padding: 0.75rem 1.75rem; font-size: 0.9375rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
}
.sz-btn-business-outline:hover { background: #eff6ff; color: #1d4ed8; }

.sz-business-form-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(to bottom right, #eff6ff, #f9fafb);
}
.sz-business-form-section h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: var(--sz-text); margin-bottom: 0.75rem; }
.sz-business-form-section .sz-form-sub { font-size: 1.0625rem; color: #6b7280; line-height: 1.65; }
.sz-business-form-card {
    background: white;
    border: 1px solid rgba(229,231,235,0.4);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
@media (max-width: 576px) { .sz-business-form-card { padding: 1.5rem; } }
.sz-form-label { font-weight: 600; font-size: 0.9375rem; color: var(--sz-text); margin-bottom: 0.375rem; display: flex; align-items: center; gap: 0.25rem; }
.sz-form-label .text-danger { font-size: 0.875rem; }
.sz-form-control-lg2 {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 1rem; color: var(--sz-text);
    background: white; outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sz-form-control-lg2:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.sz-form-control-lg2::placeholder { color: #9ca3af; }
.sz-btn-business-submit {
    width: 100%; height: 3.5rem;
    background: #2563eb; color: white; border: none; border-radius: 8px;
    font-size: 1.0625rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: background 0.15s;
}
.sz-btn-business-submit:hover { background: #1d4ed8; }
.sz-form-note { font-size: 0.8125rem; color: #9ca3af; text-align: center; margin-top: 0.75rem; margin-bottom: 0; }
.sz-file-help { font-size: 0.8125rem; color: #6b7280; display: flex; align-items: center; gap: 0.375rem; margin-top: 0.375rem; }

/* ---- VIDEOS / HOW IT WORKS PAGE ---------------------------- */
.sz-videos-section {
    padding: 5rem 0 6rem;
    background: #f9fafb;
}
.sz-videos-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.sz-video-article {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    overflow: hidden;
}
.sz-video-player {
    background: #111827;
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .sz-video-player { min-height: 340px; }
}
.sz-video-play-wrap { text-align: center; }
.sz-video-play-btn {
    width: 80px; height: 80px;
    background: linear-gradient(to right, #2B5278, #4A7CB8);
    border: none; border-radius: 50%;
    color: white; font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(43,82,120,0.4);
}
.sz-video-play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(43,82,120,0.5); }
.sz-video-play-btn .bi { margin-left: 4px; }
.sz-video-play-label { color: rgba(255,255,255,0.75); font-size: 0.8125rem; margin: 0; }
.sz-video-info {
    padding: 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) { .sz-video-info { padding: 2.5rem; } }
.sz-video-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(74,124,184,0.12);
    color: #2B5278;
    padding: 0.25rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}
.sz-video-info h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--sz-text);
    margin-bottom: 0.875rem;
    line-height: 1.2;
}
.sz-video-info p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.sz-video-steps {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.875rem;
}
.sz-video-step {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}
.sz-step-num {
    width: 26px; height: 26px; flex-shrink: 0;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}

.sz-videos-cta {
    padding: 4rem 0;
    background: linear-gradient(to right, #2B5278, #4A7CB8);
    text-align: center;
}
.sz-videos-cta h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.sz-videos-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.sz-btn-videos-white {
    display: inline-flex; align-items: center; justify-content: center;
    background: white; color: #2B5278; border: none; border-radius: 8px;
    padding: 0.875rem 2.25rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.sz-btn-videos-white:hover { background: #f1f5f9; color: #2B5278; }
.sz-btn-videos-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: white; border: 2px solid white; border-radius: 8px;
    padding: 0.875rem 2.25rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
}
.sz-btn-videos-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ---- NEWS PAGE --------------------------------------------- */
.sz-news-masthead {
    background: white;
    border-bottom: 8px double black;
    padding: 2rem 0 1.25rem;
}
.sz-chronicle-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: black;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.sz-chronicle-est {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.sz-chronicle-line { flex: 0 0 80px; height: 1px; background: black; }
.sz-chronicle-est-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.8125rem;
    color: black;
    white-space: nowrap;
}
.sz-chronicle-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.8125rem;
    color: black;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sz-news-hero {
    background: white;
    border-bottom: 2px solid black;
    padding: 3rem 0;
}
.sz-news-special-tag {
    border-left: 4px solid black;
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: black;
}
.sz-news-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.875rem, 5vw, 4rem);
    font-weight: 900;
    color: black;
    line-height: 1.05;
    border-bottom: 4px solid black;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}
.sz-news-deck {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: black;
    border-left: 2px solid #9ca3af;
    padding-left: 1rem;
    line-height: 1.65;
    margin-bottom: 0.875rem;
}
.sz-news-byline {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.875rem;
    color: black;
    margin: 0;
}

.sz-news-article {
    background: white;
    padding: 3rem 0 5rem;
}
.sz-news-dropcap {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 1.5rem;
}
.sz-news-dropcap::first-letter {
    font-size: 4.5rem;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    margin-right: 0.125rem;
    margin-top: 0.125rem;
    color: black;
}
.sz-news-columns {
    column-count: 2;
    column-gap: 2rem;
    text-align: justify;
    margin-bottom: 2rem;
}
@media (max-width: 640px) { .sz-news-columns { column-count: 1; } }
.sz-news-columns p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 1.25rem;
    break-inside: avoid;
}
.sz-news-subheading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 900;
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 0.5rem;
    margin: 2.5rem 0 1.25rem;
}
.sz-news-body-p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: black;
    text-align: justify;
    margin-bottom: 1.5rem;
}
.sz-news-partner-card {
    border: 2px solid #2B5278;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    height: 100%;
    transition: box-shadow 0.2s;
}
.sz-news-partner-card:hover { box-shadow: 0 4px 16px rgba(43,82,120,0.15); }
.sz-news-partner-icon { font-size: 2.5rem; color: #2B5278; flex-shrink: 0; }
.sz-news-partner-card h4 { font-size: 1rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.375rem; }
.sz-news-partner-card p { font-size: 0.8125rem; color: #6b7280; margin: 0; line-height: 1.55; }

.sz-news-metrics {
    background: linear-gradient(135deg, #2B5278 0%, #4A7CB8 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    color: white;
}
.sz-news-metrics h3 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 1.5rem; }
.sz-news-metric-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: white; line-height: 1; margin-bottom: 0.375rem; }
.sz-news-metric-label { font-size: 0.8125rem; color: rgba(255,255,255,0.8); margin: 0; }
.sz-news-compliance {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: white;
}
.sz-news-compliance h4 { font-weight: 700; margin-bottom: 0.375rem; font-size: 1rem; }
.sz-news-compliance p { font-size: 0.8125rem; color: rgba(255,255,255,0.9); margin: 0; line-height: 1.6; }

.sz-news-blockquote {
    border-left: 4px solid #2B5278;
    padding: 1rem 1.5rem;
    margin: 2.5rem 0;
    font-family: Georgia, 'Times New Roman', serif;
}
.sz-news-blockquote p {
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}
.sz-news-blockquote footer {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sz-text);
    font-style: normal;
}

.sz-news-profile-section { margin-top: 2rem; }
.sz-news-profile-card {
    border: 2px solid var(--sz-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.sz-news-profile-img-wrap { position: relative; min-height: 280px; }
.sz-news-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    display: block;
    min-height: 280px;
}
@media (min-width: 768px) { .sz-news-profile-img { min-height: 360px; } }
.sz-news-profile-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    padding: 1rem;
}
.sz-news-caption-label { color: white; font-size: 0.75rem; font-weight: 500; margin-bottom: 0.125rem; }
.sz-news-caption-sub { color: rgba(255,255,255,0.8); font-size: 0.75rem; margin: 0; }
.sz-news-profile-bio {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sz-news-profile-bio h4 { font-size: 1.375rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.25rem; }
.sz-news-profile-role { color: #2B5278; font-weight: 600; margin-bottom: 1.25rem; }
.sz-news-profile-bio p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.875rem;
}
.sz-news-closing {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}
.sz-news-closing p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--sz-text);
    margin-bottom: 1rem;
}
.sz-news-closing p:last-child { margin-bottom: 0; }

/* ---- ABOUT PAGE -------------------------------------------- */
.sz-about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, #2B5278, #1a3650);
}
.sz-about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.75;
}
.sz-about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom right, rgba(43,82,120,0.55), rgba(26,54,80,0.60));
}
.sz-about-hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 1rem 4rem;
    color: white;
}
.sz-about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}
.sz-about-hero-content p {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin: 0;
}

.sz-about-what { padding: 4.5rem 0 5rem; background: white; }
.sz-about-what h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: var(--sz-text); margin-bottom: 0.75rem; }
.sz-about-sub { font-size: 1.0625rem; color: #6b7280; line-height: 1.65; max-width: 700px; margin: 0 auto; }

.sz-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.sz-about-feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(43,82,120,0.10);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #2B5278;
    font-size: 1.25rem;
}
.sz-about-feature h3 { font-size: 1rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.25rem; }
.sz-about-feature p { font-size: 0.875rem; color: #6b7280; margin: 0; line-height: 1.6; }

.sz-about-community {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, #2B5278, #1a3650);
}
.sz-about-community-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.10;
}
.sz-about-community-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.sz-about-community-content {
    position: relative;
    z-index: 2;
    color: white;
}
.sz-about-community-content h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}
.sz-about-community-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin-bottom: 0;
}
.sz-about-stat { text-align: center; padding: 0.5rem; }
.sz-about-stat-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: white; line-height: 1; margin-bottom: 0.5rem; }
.sz-about-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

.sz-about-benefits { padding: 4.5rem 0 5rem; background: #f9fafb; }
.sz-about-benefits h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: var(--sz-text); margin-bottom: 0.75rem; }
.sz-about-benefit-card {
    background: white;
    border: 2px solid rgba(229,231,235,0.4);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s;
}
.sz-about-benefit-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.sz-about-benefit-icon {
    width: 52px; height: 52px;
    background: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}
.sz-about-benefit-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--sz-text); margin-bottom: 0.5rem; }
.sz-about-benefit-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin: 0; }

.sz-about-compliance-section { padding: 4rem 0; background: white; }
.sz-about-compliance-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    border: 2px solid var(--sz-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
@media (max-width: 640px) {
    .sz-about-compliance-card { flex-direction: column; align-items: center; text-align: center; padding: 2rem; }
}
.sz-about-shield-wrap {
    width: 90px; height: 90px; flex-shrink: 0;
    background: rgba(43,82,120,0.10);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.sz-about-shield-icon { font-size: 2.75rem; color: #2B5278; }
.sz-about-compliance-card h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 700; color: var(--sz-text); margin-bottom: 1rem; }
.sz-about-compliance-card p { font-size: 0.9375rem; color: #6b7280; line-height: 1.7; margin-bottom: 0.75rem; }
.sz-about-compliance-card p:last-child { margin-bottom: 0; }

.sz-about-cta {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #166534, #14532d);
    text-align: center;
}
.sz-about-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 1rem; }
.sz-about-cta p { font-size: 1.0625rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; line-height: 1.65; }
.sz-btn-about-white {
    display: inline-flex; align-items: center; justify-content: center;
    background: white; color: #166534; border: none; border-radius: 8px;
    padding: 0.9375rem 2.5rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.sz-btn-about-white:hover { background: #f0fdf4; color: #166534; }
.sz-btn-about-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: white; border: 2px solid white; border-radius: 8px;
    padding: 0.9375rem 2.5rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
}
.sz-btn-about-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ═══════════════════════════════════════════
   AVAILABLE LOADS PAGE
═══════════════════════════════════════════ */

/* Hero */
.sz-loads-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom right, #2B5278, #1a3650);
    overflow: hidden;
}
.sz-loads-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.sz-loads-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(27,54,80,0.55) 0%, rgba(27,54,80,0.75) 100%);
}
.sz-loads-hero-content {
    position: relative; z-index: 1; width: 100%;
}
.sz-loads-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800; color: white; margin-bottom: 1rem;
}
.sz-loads-hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    max-width: 700px; margin: 0 auto 2rem;
    line-height: 1.65;
}
.sz-loads-stats {
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: center;
}
.sz-loads-stat-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    padding: 0.875rem 1.75rem;
    min-width: 170px;
    text-align: center;
}
.sz-loads-stat-num {
    font-size: 1.75rem; font-weight: 800; color: white; line-height: 1.1;
}
.sz-loads-stat-live {
    font-size: 1.1rem; font-weight: 700; color: white;
}
.sz-loads-stat-label {
    font-size: 0.875rem; color: rgba(255,255,255,0.78); margin-top: 0.2rem;
}
.sz-loads-live-dot {
    display: inline-block; width: 10px; height: 10px;
    background: #4ade80; border-radius: 50%;
    animation: sz-live-pulse 1.5s ease-in-out infinite;
}
@keyframes sz-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

/* Filter bar */
.sz-loads-filter-bar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 80px;
    z-index: 40;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sz-loads-filters {
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end;
}
.sz-loads-filter-group {
    display: flex; flex-direction: column; gap: 0.3rem; min-width: 150px;
}
.sz-loads-filter-label {
    font-size: 0.75rem; font-weight: 600; color: #6b7280;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.sz-loads-select {
    border: 1.5px solid #d1d5db; border-radius: 8px;
    padding: 0.5rem 0.85rem; font-size: 0.9rem; color: #111827;
    background: white; outline: none; cursor: pointer;
    transition: border-color 0.15s;
}
.sz-loads-select:focus { border-color: #2B5278; }
.sz-loads-reset-btn {
    background: #f3f4f6; border: 1.5px solid #d1d5db; border-radius: 8px;
    padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: #374151;
    cursor: pointer; transition: all 0.15s; align-self: flex-end;
}
.sz-loads-reset-btn:hover { background: #e5e7eb; }
.sz-loads-count {
    font-size: 0.875rem; color: #6b7280; margin-top: 0.5rem;
}

/* Loads grid section */
.sz-loads-grid-section {
    padding: 3rem 0 5rem;
    background: #f9fafb;
}

/* Load card */
.sz-load-card {
    background: white;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}
.sz-load-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
/* Top bar */
.sz-load-topbar {
    display: flex; align-items: center; gap: 0.6rem;
    background: #0D1F35; padding: 0.7rem 1.1rem;
}
.sz-load-topbar-icon { color: rgba(255,255,255,0.65); font-size: 1rem; }
.sz-load-id {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.85); letter-spacing: 0.02em;
}
/* Body */
.sz-load-body {
    padding: 1.1rem; display: flex;
    flex-direction: column; gap: 0.8rem; flex: 1;
}
.sz-load-title {
    font-size: 1.1rem; font-weight: 700; color: #111827; margin: 0;
}
.sz-load-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sz-load-tag {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.71rem; font-weight: 600;
    border-radius: 5px; padding: 0.18rem 0.55rem;
}
.sz-load-tag--general   { background: #dbeafe; color: #1d4ed8; }
.sz-load-tag--oversized { background: #ede9fe; color: #6d28d9; }
.sz-load-tag--tempctrl  { background: #d1fae5; color: #065f46; }
.sz-load-tag--local     { background: #cffafe; color: #0e7490; }
.sz-load-tag--heavy     { background: #ffedd5; color: #c2410c; }
.sz-load-tag--equip {
    background: #f3f4f6; color: #374151;
    font-size: 0.71rem; font-weight: 500;
    border-radius: 5px; padding: 0.18rem 0.55rem;
}
/* Route box */
.sz-load-route-box {
    background: #f8fafc; border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 0.7rem 0.85rem;
}
.sz-load-route-inner {
    display: flex; align-items: center; gap: 0.5rem;
}
.sz-load-stops { flex: 1; display: flex; flex-direction: column; gap: 0.55rem; }
.sz-load-stop-meta {
    display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.1rem;
}
.sz-load-dot {
    width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.sz-load-dot--green { background: #22c55e; }
.sz-load-dot--red   { background: #ef4444; }
.sz-load-stop-type {
    font-size: 0.62rem; font-weight: 700; color: #6b7280;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.sz-load-stop-ctry {
    font-size: 0.58rem; font-weight: 700; color: #9ca3af;
    background: #f3f4f6; border-radius: 3px; padding: 0 0.28rem;
}
.sz-load-stop-city {
    font-size: 0.93rem; font-weight: 700; color: #111827; line-height: 1.2;
}
.sz-load-stop-zip { font-size: 0.7rem; color: #9ca3af; }
.sz-load-miles { text-align: right; flex-shrink: 0; }
.sz-load-miles-num {
    font-size: 1.45rem; font-weight: 800; color: #111827; line-height: 1;
}
.sz-load-miles-label {
    font-size: 0.6rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.06em;
}
/* Info row */
.sz-load-info-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden;
}
.sz-load-info-col {
    padding: 0.55rem 0.6rem;
    border-right: 1px solid #e5e7eb;
    text-align: center;
}
.sz-load-info-col:last-child { border-right: none; }
.sz-load-info-col--match { background: #fefce8; }
.sz-load-info-label {
    font-size: 0.58rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.18rem;
}
.sz-load-info-val {
    font-size: 0.95rem; font-weight: 800; color: #111827; line-height: 1.1;
}
.sz-load-info-unit { font-size: 0.62rem; color: #9ca3af; margin-top: 0.12rem; }
.sz-load-match-icon { font-size: 0.95rem; color: #d97706; }
/* Rate */
.sz-load-rate-label {
    font-size: 0.6rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem;
}
.sz-load-rate-val {
    font-size: 1.45rem; font-weight: 800; color: #111827;
}
/* Carrier box */
.sz-load-carrier-box {
    display: flex; align-items: flex-start; gap: 0.7rem;
    background: #f8fafc; border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 0.7rem 0.85rem;
    margin-top: auto;
}
.sz-load-carrier-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: #0D1F35; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 700; flex-shrink: 0;
}
.sz-load-carrier-info { flex: 1; min-width: 0; }
.sz-load-carrier-by {
    font-size: 0.58rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.12rem;
}
.sz-load-carrier-name {
    font-size: 0.875rem; font-weight: 700; color: #111827; margin-bottom: 0.18rem;
}
.sz-load-carrier-stars {
    display: flex; align-items: center; gap: 0.2rem;
    font-size: 0.72rem; color: #374151; margin-bottom: 0.3rem;
}
.sz-load-carrier-stars i { color: #f59e0b; font-size: 0.68rem; }
.sz-load-carrier-reviews { color: #9ca3af; }
.sz-load-carrier-quote {
    font-size: 0.7rem; color: #6b7280; font-style: italic; line-height: 1.4;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
/* Bid button */
.sz-load-bid-btn {
    display: block; width: 100%;
    background: linear-gradient(to right, #2B5278, #4A7CB8);
    color: white; text-align: center; border: none; border-radius: 8px;
    padding: 0.7rem; font-size: 0.9rem; font-weight: 700;
    text-decoration: none; transition: opacity 0.15s; cursor: pointer;
}
.sz-load-bid-btn:hover { opacity: 0.88; color: white; }

/* No results */
.sz-loads-no-results {
    text-align: center; padding: 4rem 1rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.sz-loads-no-results-icon { font-size: 3rem; color: #d1d5db; }
.sz-loads-no-results p { color: #6b7280; font-size: 1.05rem; }

/* CTA */
.sz-loads-cta {
    background: linear-gradient(to bottom right, #2B5278, #1a3650);
    padding: 5rem 0;
    text-align: center;
}
.sz-loads-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: white; margin-bottom: 1rem;
}
.sz-loads-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem; max-width: 640px; margin: 0 auto 2rem; line-height: 1.65;
}
.sz-btn-loads-white {
    display: inline-flex; align-items: center; justify-content: center;
    background: white; color: #2B5278; border-radius: 8px;
    padding: 0.9375rem 2.5rem; font-size: 1rem; font-weight: 700;
    text-decoration: none; transition: background 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.sz-btn-loads-white:hover { background: #f0f9ff; color: #1a3650; }
.sz-btn-loads-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: white; border: 2px solid white; border-radius: 8px;
    padding: 0.9375rem 2.5rem; font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
}
.sz-btn-loads-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGES  (sz-svc-*)
═══════════════════════════════════════════════════════════ */

/* Hero */
.sz-svc-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.sz-svc-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sz-svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.38));
}
.sz-svc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.sz-svc-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.sz-svc-hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 2rem;
    max-width: 640px;
    line-height: 1.65;
}

/* Hero buttons */
.sz-btn-svc-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(to right, #2B5278, #4A7CB8, #16a34a);
    color: #fff;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.sz-btn-svc-primary:hover { opacity: .88; color: #fff; }

.sz-btn-svc-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.15s;
}
.sz-btn-svc-outline:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Feature cards row */
.sz-svc-features {
    padding: 5rem 0;
    background: #f8fafc;
}
.sz-svc-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 1px solid #e5e9ef;
    transition: box-shadow 0.18s, transform 0.18s;
}
.sz-svc-card:hover {
    box-shadow: 0 8px 28px rgba(43,82,120,.13);
    transform: translateY(-3px);
}
.sz-svc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2B5278, #4A7CB8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    color: #fff;
}
.sz-svc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2e45;
    margin-bottom: 0.65rem;
}
.sz-svc-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* "What Sets SpaceZ Apart" section */
.sz-svc-apart {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}
.sz-svc-apart h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #1a2e45;
    margin-bottom: 0.75rem;
}
.sz-svc-apart-sub {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.sz-svc-apart-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    text-align: left;
}
.sz-svc-apart-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.45;
}
.sz-svc-apart-list li::before {
    content: '\F26A';               /* bi-check-circle-fill */
    font-family: 'bootstrap-icons';
    color: #16a34a;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
@media (max-width: 767px) {
    .sz-svc-apart-list { grid-template-columns: 1fr; max-width: 360px; }
    .sz-svc-hero { height: auto; padding: 7rem 0 4rem; }
}

/* CTA banner */
.sz-svc-cta {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #1a2e45 0%, #2B5278 50%, #1a3a1a 100%);
    text-align: center;
}
.sz-svc-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.sz-svc-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    max-width: 600px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}
.sz-btn-svc-white {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    color: #2B5278;
    border-radius: 8px;
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    transition: background 0.15s;
}
.sz-btn-svc-white:hover { background: #f0f9ff; color: #1a3650; }

.sz-btn-svc-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 8px;
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.sz-btn-svc-outline-dark:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Materials grid (construction-materials page) */
.sz-svc-materials {
    padding: 5rem 0;
    background: #fff;
}
.sz-svc-materials h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #1a2e45;
    margin-bottom: 0.5rem;
}
.sz-svc-mat-sub {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Photo grid — 2 rows × 6 columns */
.sz-svc-mat-photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1rem;
}
.sz-svc-mat-photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
    cursor: default;
}
.sz-svc-mat-photo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e5e9ef;
    transition: border-color 0.18s, box-shadow 0.18s;
    flex-shrink: 0;
}
.sz-svc-mat-photo-item:hover .sz-svc-mat-photo-wrap {
    border-color: #4A7CB8;
    box-shadow: 0 4px 16px rgba(43,82,120,.18);
}
.sz-svc-mat-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sz-svc-mat-photo-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .sz-svc-mat-photo-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 0.75rem; }
}
@media (max-width: 479px) {
    .sz-svc-mat-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .sz-svc-mat-photo-wrap { width: 80px; height: 80px; }
}

/* ── How It Works ───────────────────────────────────────────── */
.sz-svc-how {
    padding: 5rem 0;
    background: #f8fafc;
}
.sz-svc-how h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #1a2e45;
}
.sz-svc-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.sz-svc-how-step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}
.sz-svc-how-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2B5278, #4A7CB8);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(43,82,120,.25);
}
.sz-svc-how-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2e45;
    margin-bottom: 0.65rem;
}
.sz-svc-how-step p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.sz-svc-how-arrow {
    display: none; /* shown via pseudo on desktop */
    position: absolute;
    top: 22px;
    right: -1.25rem;
    font-size: 1.75rem;
    color: #4A7CB8;
}
.sz-svc-how-step:not(:last-child) .sz-svc-how-arrow { display: block; }
@media (max-width: 767px) {
    .sz-svc-how-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sz-svc-how-arrow { display: none !important; }
}

/* ── How Payments Work ──────────────────────────────────────── */
.sz-svc-payments {
    padding: 5rem 0;
    background: #fff;
}
.sz-svc-pay-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.sz-svc-pay-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #4A7CB8);
    color: #fff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.sz-svc-pay-card h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a2e45;
    margin-bottom: 0.5rem;
}
/* Payment step columns */
.sz-svc-pay-step {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: 14px;
    background: #f8fafc;
    height: 100%;
}
.sz-svc-pay-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.sz-svc-pay-icon-blue   { background: #dbeafe; color: #2563eb; }
.sz-svc-pay-icon-purple { background: #ede9fe; color: #7c3aed; }
.sz-svc-pay-icon-green  { background: #dcfce7; color: #16a34a; }
.sz-svc-pay-step h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e45;
    margin-bottom: 0.5rem;
}
.sz-svc-pay-step p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}
/* Protection sub-card */
.sz-svc-pay-protection {
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    border: 1px solid #c7d2fe;
    border-radius: 14px;
    padding: 1.75rem 2rem;
}
.sz-svc-pay-protection h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e45;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.sz-svc-pay-protection h5 i { color: #2B5278; font-size: 1.1rem; }
.sz-svc-pay-prot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.sz-svc-pay-prot-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}
.sz-svc-pay-prot-list li i { color: #16a34a; font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 767px) {
    .sz-svc-pay-card { padding: 2rem 1.25rem; }
}
