:root {
  --navy: #12324a;
  --navy-dark: #081f31;
  --charcoal: #1f2933;
  --orange: #f59e0b;
  --steel: #f3f6f8;
  --border: #d8e0e6;
  --white: #fff;
  --muted: #647687;
  --shadow: 0 16px 42px rgba(12, 34, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--charcoal); background: var(--white); font-family: Inter, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.top-bar { display: flex; justify-content: space-between; gap: 20px; padding: 9px clamp(18px,4vw,60px); color: #dce8ef; background: var(--navy-dark); font-size: 13px; font-weight: 700; }
.top-bar div { display: flex; gap: 20px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; min-height: 76px; padding: 0 clamp(18px,4vw,60px); background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-size: 21px; font-weight: 900; white-space: nowrap; }
.brand-logo { width: 58px; height: 48px; flex: 0 0 auto; object-fit: contain; }
.main-nav { display: flex; justify-content: center; gap: clamp(22px,2.5vw,40px); color: #354958; font-size: 16px; font-weight: 850; }
.main-nav > a,.nav-products > a { padding: 26px 2px; border-bottom: 4px solid transparent; }
.main-nav > a:hover,.nav-products:hover > a,.nav-products:focus-within > a { color: var(--navy); border-bottom-color: var(--orange); }
.nav-products { display: flex; align-items: center; }
.products-toggle { width: 23px; height: 32px; display: grid; place-items: center; margin-left: -2px; padding: 0; border: 0; color: var(--navy); background: transparent; cursor: pointer; }
.products-toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.mega-menu { position: absolute; top: 100%; right: clamp(18px,4vw,60px); left: clamp(18px,4vw,60px); z-index: 30; visibility: hidden; overflow: hidden; border: 1px solid var(--border); border-top: 4px solid var(--orange); background: var(--white); box-shadow: 0 24px 55px rgba(8,31,49,.2); opacity: 0; transform: translateY(-8px); transition: opacity .18s ease,transform .18s ease,visibility .18s; }
.site-header:has(.nav-products:hover) .mega-menu,.site-header:has(.nav-products:focus-within) .mega-menu,.mega-menu:hover,.mega-menu:focus-within,.site-header.mega-open .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.site-header.mega-open .products-toggle svg,.nav-products:hover .products-toggle svg,.nav-products:focus-within .products-toggle svg { transform: rotate(180deg); }
.mega-menu-inner { display: grid; grid-template-columns: repeat(5,1fr); }
.mega-category { min-width: 0; padding: 20px; border-right: 1px solid var(--border); }
.mega-category:last-child { border-right: 0; }
.mega-category-head { display: block; padding-bottom: 15px; border-bottom: 2px solid var(--navy); }
.mega-category-image { display: block; height: 105px; margin-bottom: 14px; background-position: center; background-size: cover; }
.mega-dump { background-image: url("assets/category-dump-truck.webp"); }
.mega-tractor { background-image: url("assets/category-tractor-truck.webp"); }
.mega-cargo { background-image: url("assets/category-cargo-truck.webp"); }
.mega-trailer { background-image: url("assets/category-semi-trailer.webp"); }
.mega-special { background-image: url("assets/category-mixer-truck.webp"); }
.mega-category-head strong,.mega-category-head small { display: block; }
.mega-category-head strong { color: var(--navy); font-size: 17px; }
.mega-category-head small { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 700; }
.mega-models a { display: block; padding: 12px 2px; border-bottom: 1px solid #e3e9ed; color: var(--navy); font-size: 13px; font-weight: 800; transition: color .18s ease,padding-left .18s ease; }
.mega-models a:hover { padding-left: 6px; color: var(--orange); }
.mega-menu-footer { display: flex; justify-content: space-between; gap: 20px; padding: 15px 20px; color: #c9d8e1; background: var(--navy-dark); font-size: 13px; font-weight: 800; }
.mega-menu-footer a { color: var(--orange); }
.header-cta, .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 5px; font-weight: 900; line-height: 1; transition: transform .18s ease, box-shadow .18s ease; }
.header-cta, .btn-primary { color: #151b21; background: var(--orange); box-shadow: 0 10px 25px rgba(245,158,11,.24); }
.btn:hover, .header-cta:hover { transform: translateY(-1px); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.58); background: rgba(8,31,49,.2); }
.btn-secondary { color: var(--navy); border-color: var(--navy); background: var(--white); }

.hero { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-dark); }
.hero-copy { position: relative; z-index: 3; width: min(1120px,80vw); display: flex; flex-direction: column; justify-content: center; padding: 82px clamp(28px,6vw,110px) 120px; }
.eyebrow, .section-kicker { margin: 0 0 12px; color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
h1,h2,h3,p { overflow-wrap: anywhere; }
h1 { margin: 0 0 27px; max-width: 1020px; font-size: clamp(45px,4.7vw,70px); line-height: 1.07; letter-spacing: 0; }
.hero-text { max-width: 790px; margin: 0; color: #e3edf2; font-size: clamp(17px,1.55vw,22px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-points span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 4px; color: #f3f7fa; background: rgba(255,255,255,.06); font-size: 12px; font-weight: 800; }
.hero-image { position: absolute; inset: 0; min-height: 100%; overflow: hidden; background: var(--navy-dark); }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,31,49,.74) 0%,rgba(8,31,49,.52) 42%,rgba(8,31,49,.22) 72%,rgba(8,31,49,.08) 100%),linear-gradient(180deg,rgba(8,31,49,.04),rgba(8,31,49,.58)); }
.hero-slides,.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { object-fit: cover; opacity: 0; transform: scale(1.015); transition: opacity .7s ease, transform 5s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.carousel-arrow { position: absolute; top: 50%; z-index: 4; width: 28px; height: 112px; border: 1px solid rgba(255,255,255,.26); border-radius: 0; color: rgba(255,255,255,.92); background: rgba(8,31,49,.32); font-family: Arial,sans-serif; font-size: 30px; font-weight: 300; line-height: 1; transform: translateY(-50%); cursor: pointer; transition: width .18s ease,background-color .18s ease,border-color .18s ease; }
.carousel-prev { right: auto; left: 0; border-left: 0; }
.carousel-next { right: 0; border-right: 0; }
.carousel-arrow:hover { width: 34px; border-color: rgba(255,255,255,.48); background: rgba(8,31,49,.64); }
.carousel-dots { position: absolute; right: 28px; bottom: 92px; z-index: 4; display: flex; gap: 7px; }
.carousel-dots button { width: 24px; height: 5px; padding: 0; border: 0; border-radius: 0; background: rgba(255,255,255,.52); cursor: pointer; }
.carousel-dots button.active { background: var(--orange); }
.hero-image-note { position: absolute; right: 28px; bottom: 26px; left: auto; z-index: 4; width: min(720px,48vw); display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.2); color: #eaf1f5; background: rgba(8,31,49,.76); font-size: 13px; }
.hero-image-note strong { color: var(--white); font-size: 15px; }

.confidence-bar { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid var(--border); background: var(--white); }
.confidence-bar div { min-height: 98px; padding: 20px; border-right: 1px solid var(--border); }
.confidence-bar div:last-child { border-right: 0; }
.confidence-bar strong,.confidence-bar span { display: block; }
.confidence-bar strong { color: var(--navy); font-size: 16px; }
.confidence-bar span { margin-top: 4px; color: var(--muted); font-size: 12px; }

.section { padding: clamp(58px,7vw,100px) clamp(18px,5vw,74px); }
.section-muted { background: var(--steel); }
.section-head { width: min(800px,100%); margin-bottom: 34px; }
.section-head.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-head-row { width: 100%; display: flex; justify-content: space-between; align-items: end; gap: 28px; }
h2 { margin: 0 0 14px; color: var(--navy); font-size: clamp(31px,4vw,49px); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 9px; color: var(--navy); font-size: 20px; line-height: 1.2; }
.section-head p:not(.section-kicker), .inspection-copy > p, .about-section > div > p, .inquiry-copy > p { margin: 0; color: var(--muted); font-size: 16px; }

.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.image-card,.vehicle-card { overflow: hidden; border: 1px solid var(--border); border-radius: 6px; background: var(--white); box-shadow: 0 10px 28px rgba(12,34,51,.07); }
.card-image,.vehicle-photo { min-height: 230px; background-position: center; background-size: cover; }
.image-dump { background-image: linear-gradient(rgba(18,50,74,.02),rgba(18,50,74,.08)),url("assets/category-dump-truck.webp"); }
.image-tractor { background-image: linear-gradient(rgba(18,50,74,.02),rgba(18,50,74,.08)),url("assets/category-tractor-truck.webp"); }
.image-cargo { background-image: linear-gradient(rgba(18,50,74,.02),rgba(18,50,74,.08)),url("assets/category-cargo-truck.webp"); }
.image-trailer { background-image: linear-gradient(rgba(18,50,74,.02),rgba(18,50,74,.08)),url("assets/category-semi-trailer.webp"); }
.image-mixer { background-image: linear-gradient(rgba(18,50,74,.02),rgba(18,50,74,.08)),url("assets/category-mixer-truck.webp"); }
.image-tank { background-image: linear-gradient(rgba(18,50,74,.02),rgba(18,50,74,.08)),url("assets/category-tank-truck.webp"); }
.card-body { padding: 23px; }
.card-body p { min-height: 50px; margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.text-link { color: var(--navy); font-weight: 900; border-bottom: 2px solid var(--orange); }

.why-us-section { position: relative; display: grid; grid-template-columns: minmax(280px,.48fr) minmax(620px,1fr); gap: clamp(45px,6vw,96px); align-items: center; overflow: hidden; color: var(--white); background-color: var(--navy-dark); background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 42px 42px; }
.why-us-section::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 5px; background: var(--orange); }
.why-us-intro { position: relative; width: 100%; margin: 0; padding-left: 24px; }
.why-us-intro::before { content: ""; position: absolute; top: 3px; bottom: 3px; left: 0; width: 3px; background: var(--orange); }
.why-us-intro h2 { color: var(--white); font-size: clamp(42px,5vw,66px); }
.why-us-intro p:not(.section-kicker) { max-width: 420px; color: #b9cbd7; font-size: 16px; }
.benefit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; padding: 1px; background: rgba(255,255,255,.13); }
.benefit-grid article { position: relative; min-height: 190px; display: grid; grid-template-columns: 48px 1fr; gap: 17px; align-content: center; overflow: hidden; padding: 28px; border: 1px solid transparent; background: rgba(255,255,255,.045); transition: transform .22s ease,border-color .22s ease,background-color .22s ease; }
.benefit-grid article:hover { z-index: 2; border-color: rgba(245,158,11,.72); background: rgba(255,255,255,.075); transform: translateY(-3px); }
.benefit-number { position: absolute; right: 13px; bottom: -26px; color: rgba(255,255,255,.045); font-size: 106px; font-weight: 950; line-height: 1; pointer-events: none; }
.benefit-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(245,158,11,.62); color: var(--orange); background: rgba(245,158,11,.06); transition: color .22s ease,background-color .22s ease,border-color .22s ease; }
.benefit-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit-grid article:hover .benefit-icon { color: var(--navy-dark); border-color: var(--orange); background: var(--orange); }
.benefit-copy { position: relative; z-index: 1; }
.benefit-grid h3 { color: var(--white); font-size: 18px; }
.benefit-grid p,.process-grid p,.vehicle-card p { margin: 0; color: var(--muted); font-size: 14px; }
.benefit-grid p { color: #aebfca; }

.inspection-section { display: grid; grid-template-columns: minmax(380px,.9fr) minmax(420px,1.1fr); gap: clamp(34px,5vw,76px); align-items: center; }
.inspection-image { position: relative; min-height: 620px; overflow: hidden; border-radius: 6px; background: var(--white); box-shadow: var(--shadow); }
.inspection-slides,.inspection-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.inspection-slide { object-fit: contain; opacity: 0; transition: opacity .65s ease; }
.inspection-slide.active { opacity: 1; }
.inspection-arrow { position: absolute; top: 50%; z-index: 3; width: 42px; height: 50px; border: 1px solid rgba(255,255,255,.42); border-radius: 4px; color: var(--white); background: rgba(8,31,49,.62); font-size: 32px; line-height: 1; transform: translateY(-50%); cursor: pointer; }
.inspection-prev { left: 14px; }
.inspection-next { right: 14px; }
.inspection-arrow:hover { background: rgba(8,31,49,.9); }
.inspection-dots { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 3; display: flex; justify-content: center; gap: 7px; }
.inspection-dots button { width: 27px; height: 5px; padding: 0; border: 0; background: rgba(255,255,255,.58); cursor: pointer; }
.inspection-dots button.active { background: var(--orange); }
.inspection-copy > p { margin-bottom: 14px; }
.check-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-steps li { min-height: 72px; display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--border); background: var(--steel); color: var(--navy); font-size: 13px; font-weight: 850; }
.check-steps span { display: grid; place-items: center; width: 31px; height: 31px; flex: 0 0 auto; color: #111827; background: var(--orange); font-size: 11px; font-weight: 950; }

.process-section { position: relative; overflow: hidden; }
.process-section::before { content: ""; position: absolute; top: 0; right: 0; width: 220px; height: 6px; background: var(--orange); }
.process-grid { --route-gap: 58px; display: grid; grid-template-columns: repeat(3,1fr); gap: var(--route-gap); margin: 54px 0 0; padding: 0; list-style: none; counter-reset: route; }
.process-grid li { position: relative; min-height: 210px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-content: center; padding: 30px 28px; border: 1px solid var(--border); border-radius: 6px; background: linear-gradient(145deg,var(--white),#f7fafb); box-shadow: 0 13px 30px rgba(12,34,51,.07); transition: border-color .22s ease,box-shadow .22s ease,transform .22s ease; }
.process-grid li:hover { z-index: 3; border-color: rgba(245,158,11,.8); box-shadow: 0 18px 38px rgba(12,34,51,.13); transform: translateY(-3px); }
.process-grid li:nth-child(4) { grid-column: 3; }
.process-grid li:nth-child(5) { grid-column: 2; grid-row: 2; }
.process-grid li:nth-child(6) { grid-column: 1; grid-row: 2; }
.process-grid li::after { content: ""; position: absolute; top: 50%; left: calc(100% + 1px); width: var(--route-gap); height: 2px; background: var(--navy); transform: translateY(-50%); }
.process-grid li::before { content: ""; position: absolute; z-index: 2; top: 50%; left: calc(100% + var(--route-gap) - 7px); width: 10px; height: 10px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); transform: translateY(-50%) rotate(45deg); }
.process-grid li:nth-child(3)::after { top: 100%; left: 50%; width: 2px; height: var(--route-gap); transform: translateX(-50%); }
.process-grid li:nth-child(3)::before { top: calc(100% + var(--route-gap) - 7px); left: 50%; transform: translateX(-50%) rotate(135deg); }
.process-grid li:nth-child(4)::after,.process-grid li:nth-child(5)::after { right: calc(100% + 1px); left: auto; }
.process-grid li:nth-child(4)::before,.process-grid li:nth-child(5)::before { right: calc(100% + var(--route-gap) - 7px); left: auto; transform: translateY(-50%) rotate(225deg); }
.process-grid li:nth-child(6)::after,.process-grid li:nth-child(6)::before { display: none; }
.process-number { position: absolute; top: -20px; left: 25px; z-index: 2; display: grid; place-items: center; min-width: 55px; height: 39px; padding: 0 10px; color: #151b21; background: var(--orange); font-size: 15px; font-weight: 950; box-shadow: 0 8px 18px rgba(245,158,11,.2); }
.process-icon { display: grid; place-items: center; width: 54px; height: 54px; color: var(--navy); border: 1px solid #cad6de; background: var(--white); transition: color .22s ease,border-color .22s ease,background-color .22s ease; }
.process-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-grid li:hover .process-icon { color: var(--white); border-color: var(--navy); background: var(--navy); }
.process-copy h3 { font-size: 18px; }

.application-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.application-card { position: relative; min-height: 290px; display: flex; align-items: end; overflow: hidden; border-radius: 6px; color: var(--white); background-position: center; background-size: cover; }
.application-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(8,31,49,.04),rgba(8,31,49,.9)); }
.application-card div { position: relative; z-index: 2; padding: 24px; }
.application-card h3 { color: var(--white); }
.application-card p { margin: 0; color: #e0eaf0; font-size: 14px; }
.application-card:nth-child(1),.application-card:nth-child(2) { grid-column: span 6; }
.application-card:nth-child(n+3) { grid-column: span 4; }
.app-construction { background-image: url("assets/scenario-construction-projects.webp"); }
.app-mining { background-image: url("assets/scenario-mining-transportation.webp"); }
.app-logistics { background-image: url("assets/scenario-logistics-cargo.webp"); }
.app-road { background-image: url("assets/scenario-road-construction.webp"); }
.app-agriculture { background-image: url("assets/scenario-agriculture-material.webp"); }

.mid-cta { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 48px clamp(18px,5vw,74px); color: var(--white); background: var(--navy); }
.mid-cta h2 { color: var(--white); }
.mid-cta p:not(.section-kicker) { margin: 0; color: #d6e3eb; max-width: 780px; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.vehicle-body { padding: 22px; }
.vehicle-body > span { display: inline-flex; margin-bottom: 9px; padding: 4px 7px; color: var(--navy); background: #e8edf1; font-size: 11px; font-weight: 900; text-transform: uppercase; }
dl { display: grid; gap: 7px; margin: 18px 0; }
dl div { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 7px; border-bottom: 1px solid var(--border); font-size: 13px; }
dt { color: var(--muted); } dd { margin: 0; font-weight: 850; text-align: right; }
.vehicle-body a { color: var(--navy); font-weight: 900; border-bottom: 2px solid var(--orange); }

.about-section { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(32px,6vw,80px); align-items: center; color: var(--white); background: var(--navy-dark); }
.about-section h2 { color: var(--white); }
.about-section > div > p { margin-bottom: 15px; color: #d6e3eb; }
.about-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.about-metrics div { min-height: 130px; padding: 20px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.about-metrics strong,.about-metrics span { display: block; }
.about-metrics strong { color: var(--orange); font-size: 28px; }
.about-metrics span { margin-top: 6px; font-weight: 800; }

.inquiry-section { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(420px,1.2fr); gap: clamp(32px,6vw,78px); align-items: start; background: var(--steel); }
.inquiry-copy ul { display: grid; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.inquiry-copy li { padding-left: 18px; border-left: 4px solid var(--orange); color: var(--navy); font-weight: 800; }
.inquiry-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; padding: 28px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); box-shadow: var(--shadow); }
.inquiry-form label { display: grid; gap: 6px; color: var(--charcoal); font-size: 13px; font-weight: 850; }
.inquiry-form .full { grid-column: 1 / -1; }
input,select,textarea { width: 100%; border: 1px solid var(--border); border-radius: 4px; padding: 11px 12px; color: var(--charcoal); background: #f8fafb; }
textarea { resize: vertical; }
.form-honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.form-status { min-height: 20px; margin: 0; color: var(--navy); font-size: 12px; font-weight: 800; }
.privacy-note { margin: 0; color: var(--muted); font-size: 11px; }

.bottom-cta { min-height: 480px; display: flex; align-items: center; padding: 70px clamp(18px,6vw,90px); color: var(--white); background: linear-gradient(90deg,rgba(8,31,49,.95),rgba(8,31,49,.35)),url("assets/greenfleet-hero-promo-banner-v3-global.webp") center / cover no-repeat; }
.bottom-cta > div { max-width: 710px; }
.bottom-cta h2 { color: var(--white); }
.bottom-cta p { color: #e1eaf0; font-size: 17px; }
.bottom-cta > div > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.site-footer { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 28px; padding: 46px clamp(18px,5vw,74px) 24px; color: #cbd8e1; background: #071a29; }
.footer-brand { color: var(--white); }
.site-footer p { margin: 13px 0 0; }
.site-footer strong { display: block; margin-bottom: 11px; color: var(--white); }
.site-footer a:not(.brand) { display: block; margin: 7px 0; }
.legal { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9eb1bf; font-size: 13px; }

@media (max-width:1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; border-top: 1px solid var(--border); }
  .main-nav > a,.nav-products > a { padding: 13px 0; white-space: nowrap; }
  .mega-menu { right: 18px; left: 18px; max-height: calc(100vh - 150px); overflow-y: auto; }
  .mega-menu-inner { grid-template-columns: repeat(2,1fr); }
  .mega-category { border-bottom: 1px solid var(--border); }
  .hero { min-height: 650px; }
  .hero-copy { width: min(820px,78vw); padding-bottom: 125px; }
  .hero-image { min-height: 100%; }
  .confidence-bar { grid-template-columns: repeat(3,1fr); }
  .category-grid,.benefit-grid,.vehicle-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { --route-gap: 38px; grid-template-columns: repeat(2,1fr); }
  .process-grid li:nth-child(3) { grid-column: 2; }
  .process-grid li:nth-child(4) { grid-column: 1; grid-row: 2; }
  .process-grid li:nth-child(5) { grid-column: 1; grid-row: 3; }
  .process-grid li:nth-child(6) { grid-column: 2; grid-row: 3; }
  .process-grid li:nth-child(2)::after,.process-grid li:nth-child(4)::after { top: 100%; left: 50%; width: 2px; height: var(--route-gap); transform: translateX(-50%); }
  .process-grid li:nth-child(2)::before,.process-grid li:nth-child(4)::before { top: calc(100% + var(--route-gap) - 7px); right: auto; left: 50%; transform: translateX(-50%) rotate(135deg); }
  .process-grid li:nth-child(3)::after { top: 50%; right: calc(100% + 1px); left: auto; width: var(--route-gap); height: 2px; transform: translateY(-50%); }
  .process-grid li:nth-child(3)::before { top: 50%; right: calc(100% + var(--route-gap) - 7px); left: auto; transform: translateY(-50%) rotate(225deg); }
  .process-grid li:nth-child(4)::after { top: 100%; right: auto; left: 50%; }
  .process-grid li:nth-child(5)::after { right: auto; left: calc(100% + 1px); }
  .process-grid li:nth-child(5)::before { right: auto; left: calc(100% + var(--route-gap) - 7px); transform: translateY(-50%) rotate(45deg); }
  .why-us-section { grid-template-columns: 1fr; }
  .why-us-intro { max-width: 680px; }
  .inspection-section,.about-section,.inquiry-section { grid-template-columns: 1fr; }
  .inspection-image { min-height: 430px; }
}

@media (max-width:720px) {
  .top-bar { display: none; }
  .site-header { min-height: auto; padding: 13px 16px 0; gap: 11px; }
  .brand { font-size: 18px; }
  .brand-logo { width: 48px; height: 40px; }
  .header-cta { min-height: 39px; padding: 0 12px; font-size: 12px; }
  .main-nav { flex-wrap: wrap; gap: 4px 15px; padding: 8px 0 10px; overflow: visible; }
  .main-nav { gap: 7px 20px; }
  .main-nav > a,.nav-products > a { padding: 5px 0; font-size: 14px; }
  .products-toggle { width: 25px; height: 30px; }
  .mega-menu { position: fixed; top: 103px; right: 10px; left: 10px; max-height: calc(100vh - 115px); }
  .mega-menu-inner { grid-template-columns: 1fr; }
  .mega-category { padding: 15px; border-right: 0; }
  .mega-category-head { display: grid; grid-template-columns: 90px 1fr; gap: 13px; align-items: center; }
  .mega-category-image { height: 62px; margin: 0; }
  .mega-models { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 12px; }
  .mega-menu-footer { display: block; }
  .mega-menu-footer a { display: block; margin-top: 5px; }
  .hero { min-height: 690px; align-items: flex-start; }
  .hero-copy { width: 100%; padding: 62px 18px 110px; }
  h1 { font-size: 39px; }
  .hero-actions .btn { width: 100%; }
  .hero-image { min-height: 100%; }
  .hero-image::after { background: linear-gradient(90deg,rgba(8,31,49,.88),rgba(8,31,49,.48)),linear-gradient(180deg,rgba(8,31,49,.14),rgba(8,31,49,.82)); }
  .carousel-arrow { width: 24px; height: 88px; font-size: 27px; }
  .carousel-prev { right: auto; left: 0; }
  .carousel-next { right: 0; }
  .carousel-dots { right: 14px; bottom: 18px; }
  .hero-image-note { display: none; }
  .confidence-bar,.category-grid,.benefit-grid,.vehicle-grid,.check-steps,.about-metrics,.inquiry-form,.site-footer { grid-template-columns: 1fr; }
  .process-grid { --route-gap: 28px; grid-template-columns: 1fr; gap: var(--route-gap); margin-top: 45px; padding-left: 24px; }
  .process-grid li,.process-grid li:nth-child(3),.process-grid li:nth-child(4),.process-grid li:nth-child(5),.process-grid li:nth-child(6) { grid-column: 1; grid-row: auto; min-height: 175px; }
  .process-grid li::after,.process-grid li:nth-child(2)::after,.process-grid li:nth-child(3)::after,.process-grid li:nth-child(4)::after,.process-grid li:nth-child(5)::after { top: 100%; right: auto; left: 28px; width: 2px; height: var(--route-gap); transform: none; }
  .process-grid li::before,.process-grid li:nth-child(2)::before,.process-grid li:nth-child(3)::before,.process-grid li:nth-child(4)::before,.process-grid li:nth-child(5)::before { top: calc(100% + var(--route-gap) - 7px); right: auto; left: 23px; transform: rotate(135deg); }
  .process-number { top: 20px; left: -25px; min-width: 48px; height: 34px; }
  .process-grid li { grid-template-columns: 46px 1fr; gap: 14px; padding: 26px 20px 24px 36px; }
  .process-icon { width: 46px; height: 46px; }
  .why-us-section { gap: 34px; }
  .why-us-intro { padding-left: 18px; }
  .why-us-intro h2 { font-size: 40px; }
  .benefit-grid article { min-height: 170px; grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 20px; }
  .benefit-icon { width: 42px; height: 42px; }
  .benefit-number { right: 8px; bottom: -17px; font-size: 78px; }
  .confidence-bar div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--border); }
  .section-head-row,.mid-cta { display: block; }
  .section-head-row .btn,.mid-cta .btn { margin-top: 18px; }
  .application-card,.application-card:nth-child(1),.application-card:nth-child(2),.application-card:nth-child(n+3) { grid-column: span 12; }
  .application-card { min-height: 250px; }
  .card-image,.vehicle-photo { min-height: 210px; }
  .inquiry-form .full { grid-column: 1; }
  .bottom-cta { min-height: 560px; background-position: 64% center; }
}

/* Professional home page motion */
.home-motion-ready .hero-copy > *{opacity:0;transform:translateY(24px);transition:opacity .72s cubic-bezier(.22,1,.36,1),transform .72s cubic-bezier(.22,1,.36,1)}
.home-motion-ready .hero.hero-entered .hero-copy > *{opacity:1;transform:none}
.home-motion-ready .hero.hero-entered .hero-copy > *:nth-child(1){transition-delay:.08s}.home-motion-ready .hero.hero-entered .hero-copy > *:nth-child(2){transition-delay:.16s}.home-motion-ready .hero.hero-entered .hero-copy > *:nth-child(3){transition-delay:.25s}.home-motion-ready .hero.hero-entered .hero-copy > *:nth-child(4){transition-delay:.34s}.home-motion-ready .hero.hero-entered .hero-copy > *:nth-child(5){transition-delay:.43s}
.home-motion-ready .hero-image{transform:translate3d(0,var(--hero-parallax,0),0) scale(1.025);transition:transform .18s linear}
.home-motion-ready .home-motion{opacity:0;transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);transition-delay:var(--motion-delay,0ms);will-change:opacity,transform}
.home-motion-ready .motion-up{transform:translateY(38px)}.home-motion-ready .motion-left{transform:translateX(-48px)}.home-motion-ready .motion-right{transform:translateX(48px)}
.home-motion-ready .home-motion.motion-visible{opacity:1;transform:none}
.image-card,.vehicle-card,.application-card{transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,border-color .3s ease}
.image-card:hover,.vehicle-card:hover{border-color:rgba(245,158,11,.7);box-shadow:0 22px 46px rgba(12,34,51,.15);transform:translateY(-7px)}
.card-image,.vehicle-photo{transition:transform .55s cubic-bezier(.22,1,.36,1),filter .4s ease}.image-card:hover .card-image,.vehicle-card:hover .vehicle-photo{transform:scale(1.035);filter:saturate(1.06)}
.application-card{transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s ease,background-size .7s ease}.application-card:hover{z-index:2;box-shadow:0 22px 45px rgba(8,31,49,.2);transform:translateY(-5px)}
.application-card div{transition:transform .35s cubic-bezier(.22,1,.36,1)}.application-card:hover div{transform:translateY(-7px)}
.section-kicker{position:relative;display:inline-block}.section-kicker::after{content:"";display:block;width:32px;height:2px;margin-top:7px;background:var(--orange);transform-origin:left;transition:width .35s ease}.section-head:hover .section-kicker::after,.inspection-copy:hover .section-kicker::after,.inquiry-copy:hover .section-kicker::after{width:58px}
.confidence-bar div{position:relative;overflow:hidden;transition:background-color .25s ease,transform .25s ease}.confidence-bar div::after{content:"";position:absolute;bottom:0;left:0;width:100%;height:3px;background:var(--orange);transform:scaleX(0);transform-origin:left;transition:transform .35s ease}.confidence-bar div:hover{background:#f7fafb;transform:translateY(-2px)}.confidence-bar div:hover::after{transform:scaleX(1)}
.btn,.header-cta{position:relative;overflow:hidden}.btn::after,.header-cta::after{content:"";position:absolute;top:-60%;left:-45%;width:28%;height:220%;background:rgba(255,255,255,.35);transform:rotate(20deg) translateX(-240%);transition:transform .55s ease}.btn:hover::after,.header-cta:hover::after{transform:rotate(20deg) translateX(600%)}
.home-motion-reduced .home-motion-ready .home-motion,.home-motion-reduced .home-motion{transform:none!important;transition-duration:.38s}.home-motion-reduced .hero-copy>*{transform:none!important;transition-duration:.38s}.home-motion-reduced .hero-image{transform:none!important}

/* Real customer visit trust section */
.customer-trust-section{background:#f2f6f8;overflow:hidden}
.customer-trust-head{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.75fr);gap:clamp(35px,7vw,110px);align-items:end;margin-bottom:42px;padding-bottom:28px;border-bottom:1px solid #ccd8df}
.customer-trust-head h2{max-width:720px;margin:8px 0 0;font-size:clamp(38px,4.8vw,68px);line-height:1}
.customer-trust-head>div:last-child{padding-left:22px;border-left:3px solid var(--orange)}
.customer-trust-head p{margin:0;color:var(--muted);line-height:1.75}
.customer-trust-head a{display:inline-flex;gap:10px;align-items:center;margin-top:18px;color:var(--navy);font-size:13px;font-weight:900;text-decoration:none;text-transform:uppercase}
.customer-trust-head a span{color:var(--orange);font-size:20px;transition:transform .25s ease}
.customer-trust-head a:hover span{transform:translateX(5px)}
.customer-trust-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:210px;gap:16px}
.trust-visit{position:relative;grid-column:span 5;min-width:0;margin:0;overflow:hidden;background:var(--navy)}
.trust-visit-feature{grid-column:span 7;grid-row:span 3}
.trust-visit img{width:100%;height:100%;object-fit:cover;transition:transform .65s cubic-bezier(.22,1,.36,1),filter .4s ease}
.trust-visit::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(8,31,49,.92))}
.trust-visit figcaption{position:absolute;right:22px;bottom:20px;left:22px;z-index:2;color:#fff}
.trust-visit figcaption strong,.trust-visit figcaption span{display:block}
.trust-visit figcaption strong{font-size:17px}
.trust-visit figcaption span{max-width:430px;margin-top:5px;color:#d0dee6;font-size:12px;line-height:1.5}
.trust-visit:hover img{filter:saturate(1.05);transform:scale(1.035)}
.trust-visit:nth-child(2){--motion-delay:80ms}.trust-visit:nth-child(3){--motion-delay:150ms}.trust-visit:nth-child(4){--motion-delay:220ms}
@media(max-width:900px){.customer-trust-head{grid-template-columns:1fr;gap:22px}.customer-trust-head>div:last-child{max-width:680px}.customer-trust-grid{grid-auto-rows:230px}.trust-visit-feature{grid-column:span 12;grid-row:span 2}.trust-visit{grid-column:span 6}}
@media(max-width:600px){.customer-trust-head{margin-bottom:25px;padding-bottom:22px}.customer-trust-head h2{font-size:40px}.customer-trust-head>div:last-child{padding-left:16px}.customer-trust-grid{grid-template-columns:1fr;grid-auto-rows:260px;gap:12px}.trust-visit,.trust-visit-feature{grid-column:1;grid-row:auto}.trust-visit-feature{height:360px}.trust-visit figcaption{right:16px;bottom:15px;left:16px}}
