/* ============================================
   FONT FACES
   ============================================ */
@font-face {
    font-family: ETmodules;
    font-display: block;
    src: url(/fonts/modules.eot);
    src: url(/fonts/modules.eot?#iefix) format("embedded-opentype"),
         url(/fonts/modules.woff) format("woff"),
         url(/fonts/modules.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(/fonts/fa-solid-900.eot);
    src: url(/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),
         url(/fonts/fa-solid-900.woff2) format("woff2"),
         url(/fonts/fa-solid-900.woff) format("woff"),
         url(/fonts/fa-solid-900.ttf) format("truetype");
}
@font-face {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(/fonts/fa-regular-400.eot);
    src: url(/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),
         url(/fonts/fa-regular-400.woff2) format("woff2"),
         url(/fonts/fa-regular-400.woff) format("woff"),
         url(/fonts/fa-regular-400.ttf) format("truetype");
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #444;
    background-color: #fff;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: #2ea3f2; text-decoration: none; }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
section { overflow: hidden; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 14px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '\2192';
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover::after {
    transform: translateX(4px);
}
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #F15A0B 0%, #e84d00 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(241, 90, 11, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b1a 0%, #F15A0B 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(241, 90, 11, 0.45);
}
.btn-white {
    color: #F15A0B;
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
    background-color: #fff;
    color: #e84d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.btn-white-cta {
    color: #00203F;
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-white-cta:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    background: rgba(0, 32, 63, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(0, 32, 63, 0.97);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.navbar-logo {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}
.navbar-logo span {
    color: #F15A0B;
}
.navbar-logo:hover {
    opacity: 0.85;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}
.btn-sm::after {
    display: none;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: #fff;
    padding: 48px 24px;
    border-bottom: 1px solid rgba(0,32,63,0.06);
}
.trust-bar-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.trust-item {
    padding: 16px;
}
.trust-value {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    color: #F15A0B;
    line-height: 1.2;
    margin-bottom: 6px;
}
.trust-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #00203F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 32, 63, 0.9);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #F15A0B;
    border-color: #F15A0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241,90,11,0.4);
}
.back-to-top .fa-icon {
    font-family: FontAwesome;
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background-image:
        linear-gradient(180deg, rgba(0,32,63,0.35) 0%, rgba(0,32,63,0.85) 55%, #00203f 85%),
        url(/images/Untitled-design-32.png);
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 160px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyAgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAxKSIgaGVpZ2h0PSIyNnB4IiB3aWR0aD0iMjAwcHgiIHZpZXdCb3g9IjAgMCAyMDAgMjYiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMzLjc3LDBDMjUuMDksMy44MSwxNC41Nyw2LjUsMCw2LjVWMFpNMjAwLDYuNVYwSDE2Ni4yM0MxNzQuOTEsMy44MSwxODUuNDMsNi41LDIwMCw2LjVaTTEzMy43NywwSDEwMGMyNCwwLDM1Ljc5LDcuNjQsNDguMjMsMTUuNzNhMTI1LDEyNSwwLDAsMCwxOCwxMC4yN0gyMDBjLTI0LDAtMzUuNzktNy42NC00OC4yMy0xNS43M0ExMjUsMTI1LDAsMCwwLDEzMy43NywwWk0xMDAsMEg2Ni4yM2ExMjUsMTI1LDAsMCwwLTE4LDEwLjI3QzM1Ljc5LDE4LjM2LDI0LDI2LDAsMjZIMzMuNzdhMTI1LDEyNSwwLDAsMCwxOC0xMC4yN0M2NC4yMSw3LjY0LDc2LDAsMTAwLDBaTTY2LjIzLDI2aDY3LjU0Yy04LjY4LTMuODEtMTkuMi02LjUtMzMuNzctNi41Uzc0LjkxLDIyLjE5LDY2LjIzLDI2WiIvPjwvc3ZnPg==");
    background-size: 401px auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    flex-shrink: 0;
}
.hero-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.05);
}
.hero-title {
    font-family: 'Alegreya Sans', Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 76px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 28px;
}
.hero-description {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-description p {
    margin-bottom: 12px;
}
.hero-description p:last-child { margin-bottom: 0; }

/* Hero Media */
.hero-media {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 24px;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}
.hero-media-inner {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
}
.phone-mockup {
    width: 180px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    margin-right: -60px;
    margin-bottom: -4px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.phone-mockup img {
    width: 100%;
    height: auto;
}
.video-container {
    flex: 1;
    max-width: 750px;
    position: relative;
}
.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 -10px 60px rgba(0,0,0,0.4);
}
.video-wrapper video {
    width: 100%;
    display: block;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.video-play-btn {
    width: 88px;
    height: 88px;
    background: rgba(241, 90, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(241, 90, 11, 0.4);
}
.video-play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}
.video-overlay:hover .video-play-btn {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(241, 90, 11, 0.6);
}

/* headline-divider removed - replaced by trust-bar */

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: linear-gradient(180deg, #001a33 0%, #00203F 100%);
    padding: 80px 0 100px;
    position: relative;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241,90,11,0.3), transparent);
}
.how-it-works .section-header {
    text-align: center;
    margin-bottom: 70px;
}
.how-it-works .section-header .btn {
    margin-top: 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.step {
    text-align: center;
    padding: 40px 24px 36px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(241, 90, 11, 0.2);
    transform: translateY(-6px);
}
.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(241,90,11,0.15) 0%, rgba(241,90,11,0.05) 100%);
    border: 1px solid rgba(241, 90, 11, 0.2);
}
.step-icon .fa-icon {
    font-family: FontAwesome;
    font-weight: 900;
    font-style: normal;
    font-size: 36px;
    color: #F15A0B;
}
.step-icon .et-icon {
    font-family: ETmodules;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    color: #F15A0B;
}
.step-number {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #F15A0B;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.step h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.3;
}
.step p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   SPLIT SECTIONS (Why / Trucking)
   ============================================ */
.split-section {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 580px;
}
.split-section .image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.split-section .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-section:hover .image-col img {
    transform: scale(1.03);
}
.split-section .content-col {
    flex: 1;
    background-color: #00203F;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-section .content-col h2 {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 44px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.split-section .content-col .description {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}
.split-section .content-col .description p {
    margin-bottom: 0;
}
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefit-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.7;
}
.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F15A0B, #ff8c42);
}
.benefit-list li strong {
    color: #fff;
}

.trucking-section .split-section .content-col {
    order: -1;
}
.trucking-section .split-section .content-col .description {
    font-size: 18px;
}

/* ============================================
   ADDITIONAL SERVICES
   ============================================ */
.services-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}
.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}
.services-section .section-header h2 {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 52px);
    color: #00203F;
    line-height: 1.15;
}
.services-section .section-header .accent-line {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F15A0B, #ff8c42);
    border-radius: 2px;
    margin: 20px auto 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 24px;
}
.service-card {
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 32, 63, 0.06);
    border: 1px solid rgba(0, 32, 63, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 32, 63, 0.12);
}
.service-card .card-image {
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover img {
    transform: scale(1.06);
}
.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #00203F;
    padding: 20px 16px 24px;
    font-size: 16px;
    line-height: 1.4;
}
.services-cta {
    text-align: center;
    padding: 0 24px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-image:
        linear-gradient(135deg, rgba(241,90,11,0.92) 0%, rgba(200,60,0,0.88) 100%),
        url(/images/Untitled-design-34.png);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.cta-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.cta-section .cta-text {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.8;
    margin-bottom: 40px;
}
.cta-section .cta-text p { margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #00203F;
    padding: 40px 24px;
    text-align: center;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}
.footer-logo span {
    color: #F15A0B;
}
.footer-address {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-bottom: 16px;
}
.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}
.footer p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}
.footer-links {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #FF6A13;
}

/* ============================================
   LEGAL PAGES (Terms, Privacy)
   ============================================ */
.legal-header {
    background: #00203F;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-logo {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.legal-logo span {
    color: #F15A0B;
}
.legal-logo:hover {
    opacity: 0.85;
}
.legal-page {
    background: #00203F;
    padding: 48px 24px 60px;
    min-height: 60vh;
}
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.8;
}
.legal-container h1 {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    color: #fff;
    margin-bottom: 8px;
}
.legal-updated {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-bottom: 40px;
}
.legal-container h2 {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 26px);
    color: #FF6A13;
    margin-top: 40px;
    margin-bottom: 16px;
}
.legal-container p {
    margin-bottom: 16px;
}
.legal-container ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-container li {
    margin-bottom: 10px;
}
.legal-container a {
    color: #FF6A13;
    text-decoration: none;
}
.legal-container a:hover {
    text-decoration: underline;
}
.legal-toc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 40px;
}
.legal-toc h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.legal-toc ol {
    padding-left: 20px;
    margin: 0;
    columns: 2;
    column-gap: 32px;
}
.legal-toc li {
    margin-bottom: 8px;
    font-size: 15px;
    break-inside: avoid;
}
.legal-toc a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.legal-toc a:hover {
    color: #FF6A13;
}
.legal-callout {
    background: rgba(241, 90, 11, 0.08);
    border-left: 3px solid #FF6A13;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 16px 0 24px;
}
.legal-callout p {
    margin-bottom: 12px;
}
.legal-callout p:last-child {
    margin-bottom: 0;
}
.legal-container h2 {
    scroll-margin-top: 24px;
}
.legal-address {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .hero-section {
        padding-top: 120px;
        min-height: auto;
    }
    .hero-content {
        max-width: 600px;
    }
    .phone-mockup {
        width: 140px;
        margin-right: -40px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .split-section {
        min-height: auto;
    }
    .split-section .content-col {
        padding: 60px 40px;
    }
    .split-section .content-col .description {
        font-size: 16px;
    }
    .trucking-section .split-section .content-col .description {
        font-size: 16px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    .hero-badge {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .hero-media {
        margin-top: 40px;
        padding: 0 16px;
    }
    .phone-mockup {
        display: none;
    }
    .video-container {
        max-width: 100%;
    }
    .video-wrapper {
        border-radius: 10px 10px 0 0;
    }
    .video-play-btn {
        width: 64px;
        height: 64px;
    }
    .video-play-btn::after {
        border-width: 10px 0 10px 18px;
    }
    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .trust-bar {
        padding: 32px 16px;
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .legal-toc ol {
        columns: 1;
    }
    .how-it-works {
        padding: 60px 0 70px;
    }
    .how-it-works .section-header {
        margin-bottom: 40px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 16px;
    }
    .step {
        padding: 30px 20px 28px;
    }
    .split-section {
        flex-direction: column;
    }
    .split-section .image-col {
        min-height: 260px;
        max-height: 320px;
    }
    .split-section .image-col img {
        min-height: 260px;
    }
    .split-section .content-col {
        padding: 48px 24px;
    }
    .split-section .content-col h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .split-section .content-col .description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    .benefit-list li {
        font-size: 15px;
    }
    .trucking-section .split-section .content-col {
        order: 0;
    }
    .trucking-section .split-section .content-col .description {
        font-size: 15px;
    }
    .services-section {
        padding: 60px 0 50px;
    }
    .services-section .section-header {
        margin-bottom: 36px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }
    .cta-section {
        padding: 70px 0;
    }
    .btn {
        padding: 16px 28px;
        font-size: 13px;
        width: auto;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .trust-value {
        font-size: 22px;
    }
    .trust-label {
        font-size: 11px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    .hero-section {
        padding-top: 80px;
    }
    .hero-content {
        padding: 0 16px;
    }
    .hero-media {
        padding: 0 8px;
    }
    .step-icon {
        width: 72px;
        height: 72px;
    }
    .step-icon .fa-icon,
    .step-icon .et-icon {
        font-size: 28px;
    }
    .split-section .image-col {
        min-height: 200px;
        max-height: 260px;
    }
    .split-section .image-col img {
        min-height: 200px;
    }
    .footer {
        padding: 30px 16px;
    }
}
