
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: #333; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
img { max-width: 100%; height: auto; }


/* Main Nav */
.main-nav { background: #fff; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px; border-bottom: 3px solid #1E3A5F; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.main-nav .logo { display: flex; align-items: center; gap: 12px; }
.main-nav .logo img { height: 40px; width: auto; }
.main-nav .nav-links { display: flex; gap: 32px; }
.main-nav .nav-links a { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #444; padding: 24px 0; border-bottom: 3px solid transparent; display: block; }
.main-nav .nav-links a:hover, .main-nav .nav-links a.active { color: #1E3A5F; border-bottom-color: #1E3A5F; }

/* Hamburger button (desktop hidden) */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.hamburger span { display: block; width: 26px; height: 3px; background: #1E3A5F; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile menu overlay */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.mobile-menu.active { display: block; }
.mobile-menu-content { background: #fff; padding: 24px; max-width: 320px; height: 100%; box-shadow: 2px 0 10px rgba(0,0,0,0.1); }
.mobile-menu-content a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; text-transform: uppercase; color: #333; border-bottom: 1px solid #eee; }
.mobile-menu-content a:hover, .mobile-menu-content a.active { color: #1E3A5F; }

/* Hero */
.hero { position: relative; height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
/* .hero-bg styled per-page below */
.hero-content { position: relative; z-index: 2; padding: 0 48px; max-width: 800px; text-align: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); padding: 8px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 32px; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #fff; color: #1E3A5F; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border: none; cursor: pointer; display: inline-block; }
.btn-secondary { background: transparent; color: #fff; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; display: inline-block; }

/* Stats Bar */
.stats-bar { background: #f8f8f8; border-bottom: 1px solid #e8e8e8; padding: 32px 48px; display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .number { font-size: 36px; font-weight: 800; color: #1E3A5F; line-height: 1; }
.stat-item .label { font-size: 13px; color: #666; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Sections */
.section { padding: 72px 48px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 800; color: #222; margin-bottom: 12px; }
.section-header .accent-line { width: 60px; height: 4px; background: #1E3A5F; margin: 0 auto 16px; border-radius: 2px; }
.section-header p { font-size: 16px; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Solutions Grid */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.solution-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-top: 4px solid #1E3A5F; }
.solution-card .card-img { height: 280px; overflow: hidden; }
.solution-card .card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.solution-card h3 { font-size: 18px; font-weight: 700; padding: 20px 24px 8px; color: #222; }
.solution-card p { font-size: 14px; color: #666; padding: 0 24px 16px; line-height: 1.6; }
.solution-card .card-link { display: inline-block; padding: 0 24px 20px; color: #1E3A5F; font-weight: 600; font-size: 14px; text-transform: uppercase; }

/* About */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-img { height: 400px; border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 { font-size: 24px; font-weight: 700; color: #222; margin-bottom: 16px; }
.about-text p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-text ul { list-style: none; padding: 0; }
.about-text ul li { padding: 6px 0; font-size: 14px; color: #444; }
.about-text ul li::before { content: "\2713 "; color: #1E3A5F; font-weight: 700; }

/* Video */
.video-section { max-width: 900px; margin: 0 auto; }
.video-section video { width: 100%; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

/* Partners */
.partners-section { background: #f8f8f8; text-align: center; }
.partners-grid { display: flex; justify-content: center; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.partner-item { padding: 24px 32px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); text-align: center; min-width: 150px; }
.partner-item h4 { font-size: 16px; font-weight: 700; color: #1E3A5F; }
.partner-item p { font-size: 12px; color: #888; margin-top: 4px; }

/* Canada */
.canada-section { background: linear-gradient(135deg, #1E3A5F, #2B6CB0); color: #fff; }
.canada-section .section-header h2 { color: #fff; }
.canada-section .section-header p { color: rgba(255,255,255,0.9); }
.canada-section .accent-line { background: #fff; }
.canada-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.canada-card { text-align: center; padding: 32px 24px; background: rgba(255,255,255,0.1); border-radius: 8px; }
.canada-card .icon { font-size: 40px; margin-bottom: 16px; }
.canada-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.canada-card p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.industry-card { padding: 40px; background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center; border-left: 4px solid #1E3A5F; }
.industry-card .icon { font-size: 48px; margin-bottom: 16px; }
.industry-card h4 { font-size: 20px; font-weight: 700; color: #1E3A5F; margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* Product detail */
.product-detail { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 48px; }
.product-detail .pd-header { display: flex; align-items: center; gap: 32px; margin-bottom: 24px; justify-content: space-between; }
.product-detail .pd-img { width: 300px; height: 220px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.product-detail .pd-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .pd-text h3 { font-size: 22px; font-weight: 700; color: #1E3A5F; margin-bottom: 12px; }
.product-detail .pd-text p { font-size: 15px; color: #555; line-height: 1.7; }
.product-detail .pd-text ul { list-style: none; padding: 0; margin-top: 12px; }
.product-detail .pd-text ul li { padding: 4px 0; font-size: 14px; color: #444; }
.product-detail .pd-text ul li::before { content: "\2713 "; color: #1E3A5F; font-weight: 700; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #1E3A5F, #0f3460); color: #fff; text-align: center; padding: 72px 48px; }
.cta-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }
.cta-btn { background: #fff; color: #1E3A5F; padding: 16px 40px; border: none; border-radius: 4px; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; display: inline-block; }
.cta-btn:hover { background: #f0f0f0; }

/* Footer */
.footer { background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 48px 48px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 32px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer p { font-size: 14px; line-height: 1.6; }
.footer a { font-size: 14px; color: rgba(255,255,255,0.7); display: block; padding: 4px 0; }
.footer a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.5); }

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
  /* Main nav: show hamburger, hide regular links */
  .main-nav { padding: 0 20px; height: 60px; }
  .main-nav .nav-links { display: none; }
  .hamburger { display: block; }
  .main-nav .logo img { height: 34px; }

  /* Hero */
  .hero { height: auto; padding: 60px 24px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

  /* Stats */
  .stats-bar { padding: 24px 20px; gap: 24px; }
  .stat-item .number { font-size: 28px; }

  /* Sections */
  .section { padding: 48px 20px; }
  .section-header h2 { font-size: 24px; }

  /* Grids -> single column */
  .solutions-grid { grid-template-columns: 1fr; }
  .canada-features { grid-template-columns: 1fr; gap: 16px; }
  .industries-grid { grid-template-columns: 1fr; }
  .product-detail .pd-header { flex-direction: column; }
  .product-detail .pd-img { width: 100%; height: 200px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-img { height: 250px; }

  /* Partners */
  .partners-grid { gap: 16px; }
  .partner-item { padding: 16px 20px; min-width: 120px; }

  /* CTA */
  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 24px; }

  /* Footer */
  .footer { padding: 32px 20px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .top-nav { padding: 6px 16px; font-size: 10px; }
  .main-nav { padding: 0 16px; height: 56px; }
  .hero { padding: 48px 16px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 14px; }
  .section { padding: 36px 16px; }
  .section-header h2 { font-size: 20px; }
  .stat-item .number { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .partner-item { min-width: 100px; padding: 12px 16px; }
  .industry-card { padding: 24px; }
}

/* ====== HERO BACKGROUND PATTERNS (CSS-only, no images) ====== */






/* ========== HERO BACKGROUNDS - CSS Patterns (no images) ========== */

/* HOME: diagonal tech lines + dots */

/* ABOUT: grid pattern (building/blueprint feel) */

/* PRODUCTS: spotlight cones */

/* SOLUTIONS: network nodes */

/* INDUSTRIES: 3 vertical sections */

/* CONTACT: wave lines + dots */

/* ABOUT: grid pattern */

/* PRODUCTS: spotlight effect */

/* SOLUTIONS: network nodes */

/* INDUSTRIES: 3 vertical sections */

/* CONTACT: dots + horizontal lines */

/* HOME: diagonal lines + scattered dots */

/* ABOUT: grid pattern */

/* PRODUCTS: spotlight effect */

/* SOLUTIONS: network nodes */

/* INDUSTRIES: 3 vertical sections */

/* CONTACT: dots + horizontal lines */

/* HOME: diagonal tech lines + dots */

/* ABOUT: blueprint grid */

/* PRODUCTS: spotlights */

/* SOLUTIONS: network nodes */

/* INDUSTRIES: 3 sections with icons */

/* CONTACT: wave lines + city lights */



/* ABOUT: large grid + squares */

/* PRODUCTS: spotlight cones (BOLD) */

/* SOLUTIONS: large network */

/* INDUSTRIES: 3 large sections */

/* CONTACT: large city skyline + dots */

/* Minimal overlay - just for text contrast */

/* ====== HERO BACKGROUNDS: Real Photos ====== */

.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Light overlay for text readability (only 30-40% dark) */
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.45) 0%, rgba(15,29,51,0.55) 100%);
}

/* HOME: Truck/Highway */
.page-home .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80");
}
/* SCANIA logo blur overlay (brand safety) */
.page-home .hero-blur {
  position: absolute;
  top: 32%;
  left: 44%;
  width: 10%;
  height: 10%;
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80");
  background-size: 1920px 1280px;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(12px);
  -webkit-filter: blur(12px);
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-home .hero-blur {
    top: 30%;
    left: 40%;
    width: 14%;
    height: 12%;
  }
}

@media (max-width: 768px) {
  .page-home .hero-blur {
    top: 28%;
    left: 35%;
    width: 20%;
    height: 12%;
  }
}


/* ABOUT: Factory/Manufacturing */
.page-about .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1920&q=80");
}

/* PRODUCTS: Industrial Parts */
.page-products .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80");
}

/* SOLUTIONS: EV Charging */
.page-solutions .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1593941707882-a5bba14938c7?auto=format&fit=crop&w=1920&q=80");
}

/* INDUSTRIES: Warehouse/Logistics */
.page-industries .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80");
}

/* CONTACT: City/Business */
.page-contact .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80");
}
