:root{
--accent:#0372d8; /* Schwab blue-ish accent */
--dark:#033559;
--muted:#6b6f76;
--card:#0f1720;
--glass: rgba(255,255,255,0.06);
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
*{box-sizing:border-box}
body{margin:0;background:linear-gradient(180deg,#071018 0%, #0b0b0c 60%);color:#eceff1;line-height:1.45}
a{color:inherit;text-decoration:none}
/* Layout */
.container{width:min(1200px,94%);margin:0 auto;padding:3rem 0}
/* Hero */
.hero{position:relative;border-radius:18px;overflow:hidden;display:grid;grid-template-columns:1fr 460px;gap:1.5rem;align-items:stretch}
.hero .hero-left{padding:3rem;background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.55));display:flex;flex-direction:column;justify-content:center}
.kicker{display:inline-block;background:var(--accent);color:#fff;padding:.35rem .75rem;border-radius:999px;font-weight:700;font-size:.85rem;margin-bottom:1rem}
h1{font-size:2.25rem;margin:0 0 .6rem;letter-spacing:-0.02em}
p.lead{color:var(--muted);margin:0 0 1.25rem}
.cta-row{display:flex;gap:.75rem;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.1rem;border-radius:10px;font-weight:700;border:0;cursor:pointer}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 8px 20px rgba(224,58,58,.18)}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.08);color:#fff}
/* Hero images */
.hero-right{position:relative;background-image:linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.55)), url('https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?auto=format&fit=crop&w=1400&q=80');background-size:cover;background-position:center;}
.hero-right .overlay-cards{position:absolute;inset:1.25rem;display:flex;flex-direction:column;gap:1rem;align-items:flex-end}
.card{backdrop-filter: blur(6px);background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));padding:1rem;border-radius:12px;min-width:220px}
.card h4{margin:.1rem 0 .4rem}
.card p{margin:0;color:var(--muted);font-size:.9rem}
/* Accessories grid */
.accessories{margin-top:2.25rem;display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.acc{background:linear-gradient(180deg,#0f1720, #071018);padding:1.1rem;border-radius:12px;border:1px solid rgba(255,255,255,0.03)}
.acc img{width:100%;height:160px;object-fit:cover;border-radius:8px;margin-bottom:.6rem}
.acc h5{margin:0 0 .25rem}
.acc p{margin:0;color:var(--muted);font-size:.92rem}
/* Build & Inventory */
.split{display:grid;grid-template-columns:1fr 420px;gap:1rem;margin-top:2rem}
.build{background:var(--card);padding:1.25rem;border-radius:12px}
.inventory{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:1.25rem;border-radius:12px}
.truck {display:flex;gap:.75rem;align-items:center}
.truck img{width:88px;height:56px;object-fit:cover;border-radius:8px}
.truck small{display:block;color:var(--muted)}
/* Footer */
footer{margin-top:3rem;padding:2rem 0;color:var(--muted);text-align:center;font-size:.95rem}
/* Responsive */
@media (max-width:980px){
.hero{grid-template-columns:1fr}
.hero-right{height:320px}
.split{grid-template-columns:1fr}
.accessories{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
h1{font-size:1.6rem}
.accessories{grid-template-columns:1fr}
.hero-right{height:240px}
}
/* small utility */
.muted{color:var(--muted)}
.pill{display:inline-block;padding:.25rem .6rem;border-radius:999px;background:var(--glass);font-weight:600}
Truck Destination -- Leduc & Edmonton
Schwab Custom Trucks -- Outfit. Upgrade. Dominate.
From Chevrolet Silverado light-duty builds to GMC Sierra heavy-duty workhorses, Schwab Custom Trucks outfits rigs to match how you work and play. Lift kits, bedliners, ramps, lighting, tonneau covers, wheels, performance tuning & more.
Certified Installers
GM Accessories
Financing Available
Featured Build
2025 GMC Sierra 1500 AT4
Stage 2 Lift • All-terrain Package • Integrated LED Light Bar
Install Benefits
Factory-grade warranty-friendly installs handled by our certified techs.
Popular Accessories & Upfits
Choose the gear that transforms a truck into a mission-ready machine.
Schwab Custom Trucks
Tonneau Covers & Bed Protection
Hard & soft tonneau covers, spray-in bedliners, spray-on protection and bed utilties that keep tools secure.
Lighting & Visibility
Light bars, spot lights, fog upgrades, and auxiliary wiring--built for harsh Alberta nights.
Wheels, Tires & Suspension
Lift kits, leveling, wheels and all-terrain tires--matched and balanced for performance and safety.
Bumpers, Winches & Recovery
Heavy-duty steel front/rear bumpers, integrated winches and recovery points for serious offroaders.
Performance & Towing Packages
Tune packages, cooling upgrades, and heavy-duty towing setups to haul more with confidence.
Storage & Contractor Solutions
Drawer systems, ladder racks, and on-the-job storage solutions built for contractors and fleet users.
Featured Inventory -- Ready to Customize
Shop local trade-ins, demo builds and in-stock trucks we can outfit within days.
2025 Chevrolet Silverado 1500 -- Custom Trail Boss Lifted · All-Terrain · Available
2025 GMC Sierra 1500 -- AT4 Heavy-Duty Offroad · Demo Unit
// tiny progressive enhancement for demo use
document.querySelectorAll('input[type="checkbox"]').forEach(cb => cb.addEventListener('change', ()=>{
// visual micro-feedback (no back-end)
if(cb.checked) cb.parentElement.style.opacity=1; else cb.parentElement.style.opacity=.9
}))