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

:root {
    --navy: #1a2b6d;
    --navy2: #152258;
    --blue: #1a6fc4;
    --cyan: #00a8d8;
    --cyan2: #0090bb;
    --white: #ffffff;
    --off: #f4f6fb;
    --border: #d0daea;
    --muted: #6b7a99;
    --dark: #0e1a3f;
    --text: #1a2340;
    --fh: 'Barlow Condensed', sans-serif;
    --fb: 'Barlow', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--fb);
    overflow-x: hidden
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    height: 72px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(26, 43, 109, 0.07);
    transition: background 0.3s;
}

.nav-logo-container {
    height: 100%;
    width: auto;
    display: block
}

.nav-logo {
    height: 100%;
    width: auto;
    display: block
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center
}

.nav-links a {
    font-family: var(--fh);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s
}

.nav-links a:hover {
    color: var(--navy)
}

.nav-cta {
    background: var(--cyan) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    transition: background 0.2s !important
}

.nav-cta:hover {
    background: var(--cyan2) !important
}

.nav-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    outline: none
}

.nav-ham span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 0;
    background: var(--muted)
}

/* ── MOBILE NAV DRAWER ── */
.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.nav-mobile.open {
    max-height: 400px;
    padding: 16px 24px 24px;
}
 
.nav-mobile a {
    font-family: var(--fh);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
 
.nav-mobile a:last-child {
    border-bottom: none;
}
 
.nav-mobile a:hover {
    color: var(--navy);
}
 
.nav-mobile .nav-cta {
    margin-top: 10px;
    background: var(--cyan);
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-bottom: none;
    border-radius: 0;
}
 
.nav-mobile .nav-cta:hover {
    background: var(--cyan2);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-photo {
    position: absolute;
    inset: 0;
    background: url('images/truck-front.jpg') no-repeat;
    background-size: cover;
    background-position: center 75%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(14, 26, 63, 0.92) 0%,
            rgba(26, 43, 109, 0.85) 40%,
            rgba(26, 111, 196, 0.5) 70%,
            rgba(0, 168, 216, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 80px;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fh);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cyan)
}

.hero-title {
    font-family: var(--fh);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.hero-slogan {
    font-family: var(--fh);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cyan);
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 44px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-p {
    background: var(--cyan);
    color: #fff;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s
}

.btn-p:hover {
    background: var(--cyan2);
    transform: translateY(-2px)
}

.btn-o {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 34px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s
}

.btn-o:hover {
    border-color: var(--cyan);
    color: var(--cyan)
}

.hero-stats {
    display: flex;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
}

.stat {
    flex: 1;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    margin-right: 28px
}

.stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0
}

.stat-n {
    font-family: var(--fh);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1
}

.stat-l {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px
}

/* ── TICKER ── */
.ticker {
    background: var(--navy);
    overflow: hidden;
    padding: 11px 0;
    white-space: nowrap;
    border-top: 3px solid var(--cyan)
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 30s linear infinite
}

.ticker-item {
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 36px
}

.ticker-dot {
    color: var(--cyan)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── SECTION BASICS ── */
section {
    padding: 100px 80px
}

.s-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fh);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px
}

.s-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyan)
}

.s-title {
    font-family: var(--fh);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--navy);
    margin-bottom: 20px
}

/* ── SERVICES ── */
#services {
    background: var(--off);
    border-top: 1px solid var(--border)
}

.svc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px
}

.svc-intro {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 400px
}

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

.svc-card {
    background: #fff;
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s
}

.svc-card:hover {
    border-color: rgba(0, 168, 216, 0.3);
    box-shadow: 0 8px 32px rgba(26, 43, 109, 0.1);
    transform: translateY(-3px)
}

.svc-card:hover::before {
    transform: scaleX(1)
}

.svc-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px
}

.svc-name {
    font-family: var(--fh);
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px
}

.svc-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7
}

/* ── FLEET PHOTO BANNER ── */
#fleet-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-photo {
    position: absolute;
    inset: 0;
    background: url('images/truck-inline.jpg') no-repeat;
    background-size: cover;
    background-position: center 80%;
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 26, 63, 0.55) 0%, rgba(14, 26, 63, 0.4) 50%, rgba(14, 26, 63, 0.7) 100%)
}

.fleet-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px
}

.fleet-eyebrow {
    font-family: var(--fh);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px
}

.fleet-headline {
    font-family: var(--fh);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.92;
    letter-spacing: -0.01em
}

.fleet-headline span {
    color: var(--cyan)
}

/* ── ABOUT ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 110px 80px
}

.about-photo-wrap {
    position: relative
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/3;
    background: url('images/truck-back.jpg') no-repeat;
    background-size: cover;
    background-position: right 70%;
    display: block;
}

.about-photo-accent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--cyan);
    z-index: -1;
    opacity: 0.7
}

.about-photo-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: var(--navy);
    color: #fff;
    font-family: var(--fh);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-bottom: 3px solid var(--cyan);
}

.about-body {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px
}

.about-list {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

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

.ali-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(0, 168, 216, 0.1);
    border: 1.5px solid rgba(0, 168, 216, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px
}

.ali-text {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.5
}

.ali-text strong {
    display: block;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 1px
}

/* ── TRAILERS PHOTO BANNER ── */
#trailers-banner {
    position: relative;
    height: 460px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.trailers-photo {
    position: absolute;
    inset: 0;
    background: url('images/truck-inline-angle.jpg') no-repeat;
    background-size: cover;
    background-position: center 60%;
}

.trailers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 26, 63, 0.88) 0%, rgba(14, 26, 63, 0.4) 60%, transparent 100%)
}

.trailers-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px 70px
}

.trailers-tag {
    font-family: var(--fh);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

.trailers-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyan)
}

.trailers-headline {
    font-family: var(--fh);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 20px
}

.trailers-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 32px
}

/* ── COVERAGE ── */
#coverage {
    text-align: center;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 100px 80px;
}

#coverage .s-label {
    justify-content: center
}

#coverage .s-title {
    color: #fff
}

#coverage .sub {
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 56px;
    font-size: 1rem;
    line-height: 1.7
}

#coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
}

#coverage-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 36px;
}

.map-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px
}

.map-wrap svg {
    width: 100%;
    height: auto;
    display: block
}

/* ── MAP SVG CLASSES ── */
.canada-text {
    fill: rgba(0, 168, 216, 0.5);
}

.usa-text {
    fill: rgba(96, 165, 250, 0.5);
}

.canada {
    fill: rgba(0, 168, 216, 0.08);
    stroke: rgba(0, 168, 216, 0.3);
    stroke-width: 1;
}

.usa {
    fill: rgba(96, 165, 250, 0.08);
    stroke: rgba(96, 165, 250, 0.3);
    stroke-width: 1;
}

.mexico {
    fill: rgba(0, 168, 216, 0.05);
    stroke: rgba(0, 168, 216, 0.1);
    stroke-width: 1;
}

.locations {
    fill: #00a8d8;
}

.cpills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    flex-direction: column;
    gap: 12px;
}

.cpill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 11px 18px;
    font-family: var(--fh);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.pd {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.pd.ca {
    background: var(--cyan)
}

.pd.us {
    background: #60a5fa
}

@media (max-width: 1100px) {
    #coverage-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #coverage {
        padding: 80px 40px;
    }

    .cpills {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    #coverage {
        padding: 60px 20px;
    }

    .cpills {
        flex-direction: column;
    }
}

/* ── WHY ── */
#why {
    background: var(--off);
    border-top: 1px solid var(--border)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-top: 60px
}

.why-item {
    border-top: 3px solid var(--border);
    padding-top: 26px;
    transition: border-color 0.3s
}

.why-item:hover {
    border-color: var(--cyan)
}

.why-num {
    font-family: var(--fh);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(0, 168, 216, 0.18);
    line-height: 1;
    margin-bottom: 14px
}

.why-title {
    font-family: var(--fh);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px
}

.why-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7
}

/* ── CONTACT ── */
#contact {
    background: #fff;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 80px
}

.cdesc {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 44px
}

.cdetails {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.citem {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.ci-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(0, 168, 216, 0.1);
    border: 1px solid rgba(0, 168, 216, 0.25);
    display: flex;
    align-items: center;
    justify-content: center
}

.ci-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6
}

.ci-text strong {
    display: block;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 1px
}

.cform {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.fl {
    font-family: var(--fh);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted)
}

.fi,
.fs,
.ft {
    background: var(--off);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--fb);
    font-size: 0.92rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%
}

.fi:focus,
.fs:focus,
.ft:focus {
    border-color: var(--cyan)
}

.ft {
    resize: vertical;
    min-height: 110px
}

.fsub {
    background: var(--navy);
    color: #fff;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 17px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start
}

.fsub:hover {
    background: var(--blue);
    transform: translateY(-2px)
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 3px solid var(--cyan);
    padding: 64px 80px 36px
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px
}

.ft-logo {
    height: 71px;
    width: auto;
    display: block
}

.ft-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 270px
}

.ft-col-title {
    font-family: var(--fh);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ft-links a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s
}

.ft-links a:hover {
    color: #fff
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ft-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25)
}

.ft-tag {
    font-family: var(--fh);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2)
}

/* ── FADE ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .svc-header {
        grid-template-columns: 1fr
    }

    #about {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 80px 40px
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    #contact {
        grid-template-columns: 1fr;
        padding: 80px 40px
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    section {
        padding: 80px 40px
    }

    nav {
        padding: 0 24px
    }

    .nav-links {
        display: none
    }

    .nav-ham {
        display: flex
    }

    .hero-content {
        padding: 80px 40px
    }

    .trailers-content {
        padding: 40px 40px 50px
    }
}

@media(max-width:640px) {

    .svc-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .ft-top {
        grid-template-columns: 1fr
    }

    .frow {
        grid-template-columns: 1fr
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 18px;
        margin-bottom: 0
    }

    section {
        padding: 60px 20px
    }

    #about,
    #contact {
        padding: 60px 20px
    }

    footer {
        padding: 40px 20px 24px
    }

    #fleet-banner {
        height: 300px
    }

    #trailers-banner {
        height: auto
    }

    .trailers-content {
        padding: 40px 20px
    }
}

.careers-hero {
    min-height: 52vh;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.careers-hero-photo {
    position: absolute;
    inset: 0;
    background: url('images/truck-inline-angle.jpg') center 40% / cover no-repeat;
}

.careers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14, 26, 63, 0.93) 0%, rgba(26, 43, 109, 0.82) 45%, rgba(26, 111, 196, 0.45) 100%);
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 80px;
}

.careers-hero-content .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fh);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.careers-hero-content .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cyan);
}

.careers-hero-title {
    font-family: var(--fh);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.careers-hero-title span {
    color: var(--cyan);
}

.careers-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 520px;
}

/* ── PERKS ── */
.perks-section {
    background: var(--off);
    border-top: 1px solid var(--border);
    padding: 80px 80px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 52px;
}

.perk-item {
    border-top: 3px solid var(--border);
    padding-top: 24px;
    transition: border-color 0.3s;
}

.perk-item:hover {
    border-color: var(--cyan);
}

.perk-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}

.perk-title {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 8px;
}

.perk-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── POSITIONS ── */
.positions-section {
    padding: 90px 80px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.positions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px;
}

.position-card {
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.position-card:hover {
    border-color: rgba(0, 168, 216, 0.35);
    box-shadow: 0 8px 32px rgba(26, 43, 109, 0.1);
    transform: translateY(-3px);
}

.position-card:hover::before {
    transform: scaleX(1);
}

.position-card.active {
    border-color: var(--cyan);
    box-shadow: 0 8px 32px rgba(0, 168, 216, 0.15);
}

.position-card.active::before {
    transform: scaleX(1);
}

.position-tag {
    display: inline-block;
    font-family: var(--fh);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 168, 216, 0.1);
    border: 1px solid rgba(0, 168, 216, 0.25);
    padding: 4px 12px;
    margin-bottom: 14px;
}

.position-title {
    font-family: var(--fh);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}

.position-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.position-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.position-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--muted);
    font-family: var(--fh);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.position-detail svg {
    flex-shrink: 0;
}

.position-apply-btn {
    display: inline-block;
    margin-top: 22px;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 2px;
    text-decoration: none;
    transition: color 0.2s;
}

.position-apply-btn:hover {
    color: var(--cyan);
}

/* ── APPLICATION FORM ── */
.apply-section {
    background: var(--off);
    border-top: 1px solid var(--border);
    padding: 90px 80px;
}

.apply-inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

.apply-info .s-title {
    margin-bottom: 16px;
}

.apply-info-desc {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.apply-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.apply-check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(0, 168, 216, 0.1);
    border: 1.5px solid rgba(0, 168, 216, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.apply-check-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.apply-check-text strong {
    display: block;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 1px;
}

/* Form */
.apply-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fl {
    font-family: var(--fh);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.fl .req {
    color: var(--cyan);
    margin-left: 2px;
}

.fi,
.fs,
.ft {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-family: var(--fb);
    font-size: 0.92rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.fi:focus,
.fs:focus,
.ft:focus {
    border-color: var(--cyan);
}

.ft {
    resize: vertical;
    min-height: 100px;
}

.fs option {
    background: var(--white);
}

/* File upload */
.file-upload-wrap {
    position: relative;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-box {
    background: var(--white);
    border: 1.5px dashed var(--border);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.file-upload-box:hover {
    border-color: var(--cyan);
    background: rgba(0, 168, 216, 0.03);
}

.file-upload-box.has-file {
    border-color: var(--cyan);
    border-style: solid;
    background: rgba(0, 168, 216, 0.04);
}

.file-upload-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(0, 168, 216, 0.1);
    border: 1px solid rgba(0, 168, 216, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-label {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.file-upload-label strong {
    display: block;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.file-upload-name {
    font-size: 0.82rem;
    color: var(--cyan);
    margin-top: 2px;
}

/* Status */
#apply-error {
    display: none;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 12px 16px;
    font-size: 0.88rem;
}

#apply-success {
    display: none;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    padding: 16px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fsub {
    background: var(--navy);
    color: #fff;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 17px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
}

.fsub:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.fsub:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .apply-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .careers-hero-content {
        padding: 70px 40px;
    }

    .perks-section,
    .positions-section,
    .apply-section {
        padding: 70px 40px;
    }
}

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

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

    .careers-hero-content {
        padding: 60px 20px;
    }

    .perks-section,
    .positions-section,
    .apply-section {
        padding: 60px 20px;
    }
}