:root {
    --tli-navy: #232053;
    --tli-blue: #21409a;
    --tli-gold: #fab10c;
    --tli-ink: #17152b;
    --tli-road: #231f20;
    --tli-muted: #62627a;
    --tli-soft: #f4f6fb;
    --shadow-sm: 0 10px 30px rgba(35, 32, 83, .08);
    --shadow-lg: 0 26px 70px rgba(23, 21, 43, .18);
    --radius: 1.25rem;
    --font-brand: "Century Gothic", "Noto Sans", "Trebuchet MS", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    overflow-x: hidden;
    color: var(--tli-ink);
    background: #fff;
    font-family: var(--font-brand);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--tli-blue); }
a:hover { color: var(--tli-navy); }

.skip-link {
    position: fixed;
    top: .5rem;
    left: .5rem;
    z-index: 2000;
    transform: translateY(-150%);
    padding: .75rem 1rem;
    background: var(--tli-gold);
    color: var(--tli-ink);
    font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.utility-bar {
    padding: .45rem 0;
    background: var(--tli-navy);
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    letter-spacing: .03em;
}
.utility-bar a { color: #fff; text-decoration: none; font-size: 1rem; font-weight: 800; }

.site-navbar {
    min-height: 86px;
    border-bottom: 1px solid rgba(35,32,83,.08);
    transition: box-shadow .25s ease, min-height .25s ease;
}
.site-navbar.is-scrolled { box-shadow: 0 8px 25px rgba(23,21,43,.1); }
.navbar-brand img { width: 270px; max-height: 64px; object-fit: contain; object-position: left center; }
.navbar-nav .nav-link {
    position: relative;
    padding: .75rem .9rem !important;
    color: var(--tli-ink);
    font-weight: 700;
    font-size: .96rem;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .42rem;
    height: 3px;
    background: var(--tli-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn {
    border-radius: .3rem;
    padding: .8rem 1.3rem;
    font-weight: 800;
    letter-spacing: .01em;
}
.btn-lg { padding: 1rem 1.55rem; font-size: 1rem; }
.btn-brand {
    --bs-btn-color: var(--tli-ink);
    --bs-btn-bg: var(--tli-gold);
    --bs-btn-border-color: var(--tli-gold);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--tli-blue);
    --bs-btn-hover-border-color: var(--tli-blue);
    --bs-btn-active-bg: var(--tli-navy);
    --bs-btn-active-border-color: var(--tli-navy);
    color: var(--tli-ink);
    background: var(--tli-gold);
    border-color: var(--tli-gold);
    box-shadow: 0 10px 25px rgba(250,177,12,.22);
}
.btn-brand:hover { color: #fff; background: var(--tli-blue); border-color: var(--tli-blue); }

.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 3.4rem 0; }
.py-lg-6 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
.eyebrow {
    color: var(--tli-blue);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow.light { color: var(--tli-gold); }
.display-heading {
    margin-top: .65rem;
    color: var(--tli-navy);
    font-size: clamp(2.1rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
}
.section-intro, .lead-copy { color: var(--tli-muted); font-size: 1.12rem; }
.text-white-75 { color: rgba(255,255,255,.75); }

.hero-section {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 78% 32%, rgba(33,64,154,.92), transparent 33%),
        linear-gradient(122deg, #16143b 0%, var(--tli-navy) 48%, #151337 100%);
    isolation: isolate;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    background: linear-gradient(90deg, var(--tli-gold) 0 32%, var(--tli-blue) 32% 66%, var(--tli-gold) 66% 100%);
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: linear-gradient(to right, black, transparent 70%);
    mask-image: linear-gradient(to right, black, transparent 70%);
}
.min-vh-hero { min-height: 680px; }
.hero-copy-col { position: relative; z-index: 3; }
.hero-section h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3rem, 6.3vw, 6.4rem);
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.055em;
}
.hero-section h1 span { color: var(--tli-gold); }
.hero-section .eyebrow.light { color: var(--tli-gold); font-size: .94rem; font-weight: 900; letter-spacing: .14em; }
.hero-lead { max-width: 620px; margin-top: 1.6rem; color: rgba(255,255,255,.92); font-size: 1.34rem; font-weight: 600; line-height: 1.7; }
.hero-options { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; color: rgba(255,255,255,.88); font-weight: 700; }
.option-check { display: inline-grid; place-items: center; width: 1.6rem; height: 1.6rem; margin-right: .45rem; border: 1px solid rgba(250,177,12,.55); border-radius: 50%; color: var(--tli-gold); }
.hero-truck-col { position: relative; min-height: 560px; }
.hero-truck {
    position: absolute;
    z-index: 2;
    right: -18%;
    bottom: 1.4rem;
    width: 130%;
    max-width: none;
    filter: drop-shadow(0 35px 35px rgba(0,0,0,.3));
}
.hero-accent-disc {
    position: absolute;
    right: -8%;
    bottom: 13%;
    width: 480px;
    aspect-ratio: 1;
    border: 1px solid rgba(250,177,12,.4);
    border-radius: 50%;
    box-shadow: inset 0 0 0 65px rgba(250,177,12,.035), inset 0 0 0 130px rgba(33,64,154,.08);
}
.hero-road {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 34px;
    background: var(--tli-road);
    clip-path: polygon(0 62%, 10% 28%, 24% 54%, 38% 13%, 54% 51%, 72% 9%, 86% 49%, 100% 19%, 100% 100%, 0 100%);
}

.quick-benefits { background: #fff; border-bottom: 1px solid #e9ebf2; }
.quick-benefit { display: flex; gap: 1.15rem; padding: 1.25rem; }
.feature-icon {
    flex: 0 0 3rem;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(33,64,154,.09);
    color: var(--tli-blue);
    font-size: 1.35rem;
    font-weight: 900;
}
.quick-benefit h2 { margin: 0 0 .25rem; color: var(--tli-navy); font-size: 1.08rem; font-weight: 800; }
.quick-benefit p { margin: 0; color: var(--tli-muted); font-size: .93rem; }

.opportunity-card {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    border: 1px solid rgba(35,32,83,.12);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.opportunity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.opportunity-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 9px; background: var(--tli-blue); }
.opportunity-lease::before { background: var(--tli-gold); }
.opportunity-number { position: absolute; top: 1rem; right: 1.5rem; color: rgba(35,32,83,.06); font-size: 7rem; font-weight: 900; line-height: 1; }
.opportunity-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; padding: 3.2rem; }
.pill { display: inline-block; padding: .45rem .75rem; border-radius: 999px; background: rgba(33,64,154,.09); color: var(--tli-blue); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.pill.gold { background: rgba(250,177,12,.15); color: #846000; }
.opportunity-card h3 { margin: 1.45rem 0 1rem; color: var(--tli-navy); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 900; letter-spacing: -.035em; }
.opportunity-card p { color: var(--tli-muted); }
.lease-focus-card { min-height: auto; }
.lease-focus-card .opportunity-content { padding: clamp(2.2rem, 5vw, 4.25rem); }
.lease-focus-card .lead-copy { max-width: 760px; }
.lease-feature-list { padding: 1.4rem 1.6rem; border-radius: .9rem; background: var(--tli-soft); }
.check-list { padding: 0; margin: 1.6rem 0 2.3rem; list-style: none; }
.check-list li { position: relative; margin: .7rem 0; padding-left: 1.8rem; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--tli-gold); font-weight: 900; }
.text-link { color: var(--tli-blue); font-weight: 900; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.opportunity-action { margin-top: auto; padding-top: 1.25rem; }

.network-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(138deg, #17143e 0%, var(--tli-navy) 62%, #152b70 100%);
}
.network-section::after { content: ""; position: absolute; right: -10%; bottom: -40%; width: 600px; height: 600px; border: 80px solid rgba(250,177,12,.04); border-radius: 50%; }
.map-stage { position: relative; z-index: 1; padding: 2rem; }
.map-stage img { position: relative; z-index: 2; filter: drop-shadow(0 28px 32px rgba(0,0,0,.25)); }
.map-glow { position: absolute; inset: 18% 10%; border-radius: 50%; background: rgba(33,64,154,.4); filter: blur(50px); }
.network-list > div { display: flex; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.network-list span { color: var(--tli-gold); font-weight: 900; }
.network-list p { margin: 0; color: rgba(255,255,255,.68); }
.network-list strong { color: #fff; }

.steps-section { position: relative; padding-bottom: 11rem; overflow: hidden; background: #f7f8fc; }
.section-title-narrow { max-width: 820px; }
.steps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; z-index: 2; }
.step-card { min-height: 255px; padding: 1.5rem; border-top: 5px solid var(--tli-blue); border-radius: .9rem; background: #fff; box-shadow: var(--shadow-sm); }
.step-card.step-gold { margin-top: 2.7rem; border-color: var(--tli-gold); }
.step-number { display: grid; place-items: center; width: 3.1rem; height: 3.1rem; margin-bottom: 1.25rem; border-radius: 50%; background: var(--tli-blue); color: #fff; font-weight: 900; }
.step-gold .step-number { background: var(--tli-gold); color: var(--tli-ink); }
.step-card h3 { color: var(--tli-navy); font-size: 1.05rem; font-weight: 900; }
.step-card p { color: var(--tli-muted); font-size: .9rem; }
.road-divider { position: absolute; right: 0; bottom: -1px; left: 0; width: 100%; height: 180px; }

.technology-section { background: #fff; }
.tech-intro { padding: 3.2rem; border-radius: var(--radius); background: var(--tli-navy); box-shadow: var(--shadow-lg); }
.tech-intro p { color: rgba(255,255,255,.72); }
.tech-card { padding: 2.2rem; border: 1px solid rgba(35,32,83,.11); border-radius: var(--radius); background: var(--tli-soft); }
.tech-mark { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; margin-bottom: 1.6rem; border-radius: .8rem; background: var(--tli-gold); color: var(--tli-ink); font-weight: 900; font-size: 1.25rem; }
.tech-card h3 { color: var(--tli-navy); font-size: 1.35rem; font-weight: 900; }
.tech-card p { margin-bottom: 0; color: var(--tli-muted); }
.tech-card-wide { display: flex; align-items: center; gap: 1.6rem; }
.tech-card-wide .tech-mark { flex: 0 0 3.2rem; margin: 0; }

.cta-section { padding: 0 0 6rem; background: #fff; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3.4rem; border-radius: var(--radius); background: linear-gradient(120deg, var(--tli-blue), var(--tli-navy)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-panel h2 { margin: .5rem 0; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -.04em; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.72); font-size: 1.1rem; }

.page-hero { position: relative; overflow: hidden; padding: 7rem 0; color: #fff; background: linear-gradient(130deg, #181641 0%, var(--tli-navy) 56%, var(--tli-blue) 140%); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 50px 50px; }
.page-hero .container { position: relative; }
.page-hero h1 { margin: .7rem 0 1.2rem; font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 900; line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.76); font-size: 1.2rem; }
.page-hero-card { padding: 2.4rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.page-hero-card span { color: var(--tli-gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.page-hero-card strong { display: block; margin: 1rem 0; font-size: 1.65rem; }
.page-hero-card p { font-size: 1rem; }

.values-band { padding-top: 0; }
.value-card { padding: 2.5rem; border-radius: var(--radius); background: var(--tli-soft); }
.value-card span { color: var(--tli-gold); font-weight: 900; }
.value-card h2 { margin: 1.2rem 0 .7rem; color: var(--tli-navy); font-size: 2rem; font-weight: 900; }
.value-card p { margin: 0; color: var(--tli-muted); }
.sticky-section-title { top: 130px; }
.support-list article { display: flex; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid #dddfea; }
.support-list article:first-child { padding-top: 0; }
.support-list span { color: var(--tli-gold); font-weight: 900; }
.support-list h3 { color: var(--tli-navy); font-weight: 900; }
.support-list p { margin: 0; color: var(--tli-muted); }
.technology-dark { background: var(--tli-navy); }
.about-tech-grid { display: grid; gap: 1rem; }
.about-tech-grid article { padding: 1.8rem; border-left: 5px solid var(--tli-gold); background: rgba(255,255,255,.08); color: #fff; }
.about-tech-grid strong { font-size: 1.2rem; }
.about-tech-grid p { margin: .5rem 0 0; color: rgba(255,255,255,.68); }
.light-cta { padding-top: 6rem; }

.contact-hero { padding-bottom: 6rem; }
.contact-hero-info { padding: 1.5rem 0 1.5rem 2rem; border-left: 4px solid var(--tli-gold); }
.contact-hero-info span { display: block; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 900; }
.contact-hero-info a { color: #fff; font-size: 1.2rem; font-weight: 900; text-decoration: none; }
.contact-main { background: #f7f8fc; }
.form-panel { padding: clamp(1.6rem, 4vw, 3.2rem); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.form-panel h2 { margin: .55rem 0; color: var(--tli-navy); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.035em; }
.form-label { color: var(--tli-navy); font-weight: 800; }
.form-control, .form-select { min-height: 52px; border: 1px solid #cfd2df; border-radius: .35rem; padding: .75rem .9rem; }
textarea.form-control { min-height: 150px; }
.form-control:focus, .form-select:focus { border-color: var(--tli-blue); box-shadow: 0 0 0 .22rem rgba(33,64,154,.14); }
.form-note { max-width: 360px; color: var(--tli-muted); }
.contact-sidebar { display: grid; gap: 1.2rem; }
.contact-card { padding: 2rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.contact-card-label { display: block; margin-bottom: .8rem; color: var(--tli-blue); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-card a { display: inline-block; margin-bottom: .75rem; color: var(--tli-navy); font-size: 1.18rem; font-weight: 900; text-decoration: none; overflow-wrap: anywhere; }
.contact-card address { color: var(--tli-navy); font-size: 1.18rem; font-weight: 900; }
.contact-card p { margin: 0; color: var(--tli-muted); font-size: .92rem; }
.dark-card { background: var(--tli-navy); color: #fff; }
.dark-card .contact-card-label { color: var(--tli-gold); }
.dark-card ol { margin: 0; padding-left: 1.3rem; color: rgba(255,255,255,.78); }
.dark-card li { margin: .7rem 0; padding-left: .35rem; }

.site-footer { padding: 5rem 0 0; background: #151327; color: rgba(255,255,255,.7); }
.footer-logo-wrap { display: inline-block; padding: .65rem 1rem; border-radius: .55rem; background: #fff; }
.footer-logo-wrap img { width: 290px; }
.footer-copy { max-width: 510px; }
.footer-heading { color: #fff; font-size: .82rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-links li { margin: .65rem 0; }
.footer-links a, .footer-email { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-phone { color: var(--tli-gold); font-size: 1.05rem; font-weight: 900; text-decoration: none; }
.footer-links a:hover, .footer-email:hover, .footer-phone:hover { color: #fff; }
.footer-contact { font-style: normal; }
.footer-bottom { margin-top: 4rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

@media (max-width: 1199.98px) {
    .hero-truck { right: -10%; width: 118%; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .step-card.step-gold { margin-top: 0; }
}

@media (max-width: 991.98px) {
    .site-navbar { min-height: 78px; }
    .navbar-brand img { width: 235px; }
    .navbar-collapse { padding: 1rem 0 1.3rem; }
    .navbar-nav .btn { margin-top: .5rem; }
    .min-vh-hero { min-height: auto; }
    .hero-truck-col { min-height: 430px; }
    .hero-truck { right: 0; bottom: 0; width: 105%; }
    .hero-accent-disc { right: 10%; width: 390px; }
    .section-pad { padding: 5.5rem 0; }
    .cta-panel { align-items: flex-start; flex-direction: column; }
    .sticky-section-title { position: static !important; }
}

@media (max-width: 767.98px) {
    .row.g-5 { --bs-gutter-x: 1.5rem; }
    .navbar-brand img { width: 205px; }
    .hero-section h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
    .hero-truck-col { min-height: 315px; }
    .hero-truck { right: -10%; width: 125%; }
    .hero-accent-disc { right: 4%; width: 290px; }
    .quick-benefit { padding: .6rem 0; }
    .opportunity-content { padding: 2rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-section { padding-bottom: 9rem; }
    .road-divider { height: 120px; }
    .tech-card-wide { display: block; }
    .tech-card-wide .tech-mark { margin-bottom: 1.6rem; }
    .page-hero { padding: 5rem 0; }
    .cta-panel { padding: 2.1rem; }
}

@media (max-width: 479.98px) {
    .steps-grid { grid-template-columns: 1fr; }
    .hero-options { display: grid; }
    .hero-truck-col { min-height: 260px; }
    .footer-logo-wrap img { width: 230px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
