:root{
  --bg:#0b0d10;
  --panel:#12161b;
  --panel2:#171c22;
  --text:#f6f7f8;
  --muted:#aab2bd;
  --line:#28313b;
  --accent:#f2a900;
  --accent2:#ffc23d;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max),calc(100% - 36px));margin:auto}
.topbar{
  background:#050607;
  color:#d7dde4;
  font-size:.9rem;
  border-bottom:1px solid #171b20;
}
.topbar .container{
  display:flex;justify-content:space-between;gap:16px;align-items:center;
  padding:9px 0;
}
.topbar a{color:#fff;font-weight:700}
header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,13,16,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.01em}
.brand-mark{
  width:42px;height:42px;border:2px solid var(--accent);border-radius:8px;
  display:grid;place-items:center;color:var(--accent);font-weight:1000;
}
.brand span small{display:block;color:var(--muted);font-size:.7rem;letter-spacing:.14em;text-transform:uppercase}
nav{display:flex;align-items:center;gap:26px}
nav a{color:#d8dde3;font-weight:700;font-size:.95rem}
nav a:hover{color:#fff}
.nav-cta,.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:8px;padding:13px 18px;font-weight:900;border:1px solid transparent;
  transition:.18s ease;
}
.nav-cta,.btn-primary{background:var(--accent);color:#111}
.nav-cta:hover,.btn-primary:hover{background:var(--accent2);transform:translateY(-1px)}
.btn-secondary{border-color:#4a5562;background:#171c22;color:#fff}
.btn-secondary:hover{border-color:#7c8998;background:#1d242b}
.mobile-toggle{display:none;background:none;border:0;color:#fff;font-size:1.6rem}
.hero{
  position:relative;overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 88% 10%,rgba(242,169,0,.16),transparent 26%),
    linear-gradient(135deg,#10141a 0%,#0b0d10 58%,#15191f 100%);
}
.hero:after{
  content:"";position:absolute;right:-120px;bottom:-180px;width:520px;height:520px;
  border:70px solid rgba(255,255,255,.025);border-radius:50%;
}
.hero-grid{
  min-height:670px;display:grid;grid-template-columns:1.2fr .8fr;gap:56px;align-items:center;
  padding:78px 0;position:relative;z-index:1;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;color:var(--accent2);font-size:.85rem;
  text-transform:uppercase;letter-spacing:.14em;font-weight:900;margin-bottom:16px;
}
.eyebrow:before{content:"";width:30px;height:2px;background:var(--accent)}
h1,h2,h3{line-height:1.08;margin:0}
h1{font-size:clamp(3rem,6vw,5.6rem);letter-spacing:-.055em;max-width:820px}
h1 strong{color:var(--accent)}
.hero p{font-size:1.18rem;color:#c0c7cf;max-width:720px;margin:24px 0 30px}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.trust-row{display:flex;gap:28px;flex-wrap:wrap;margin-top:34px;color:#dbe0e5;font-weight:700;font-size:.92rem}
.trust-row span:before{content:"✓";color:var(--accent);margin-right:8px}
.hero-card{
  border:1px solid #343c46;background:linear-gradient(180deg,#171c22,#101419);
  border-radius:18px;padding:26px;box-shadow:0 26px 80px rgba(0,0,0,.28)
}
.hero-card h3{font-size:1.4rem;margin-bottom:18px}
.quick-service{padding:16px 0;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:18px}
.quick-service:first-of-type{border-top:0}
.quick-service b{display:block}
.quick-service small{color:var(--muted)}
.quick-service em{font-style:normal;color:var(--accent2);font-weight:900;white-space:nowrap}
section{padding:88px 0}
.section-head{max-width:760px;margin-bottom:36px}
.section-head h2{font-size:clamp(2.2rem,4vw,3.6rem);letter-spacing:-.04em;margin-bottom:14px}
.section-head p{color:var(--muted);font-size:1.07rem;margin:0}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  border:1px solid var(--line);background:var(--panel);border-radius:14px;padding:26px;
}
.card .icon{
  width:48px;height:48px;border-radius:10px;background:rgba(242,169,0,.1);
  color:var(--accent2);display:grid;place-items:center;font-weight:1000;margin-bottom:20px
}
.card h3{font-size:1.28rem;margin-bottom:10px}
.card p{color:var(--muted);margin:0}
.card a.more{display:inline-block;margin-top:18px;color:var(--accent2);font-weight:900}
.split{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:center}
.dark-panel{
  background:var(--panel);border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.stat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.stat{background:#0e1216;border:1px solid var(--line);border-radius:12px;padding:24px}
.stat strong{display:block;font-size:2rem;color:var(--accent2)}
.stat span{color:var(--muted)}
.checks{display:grid;gap:12px;margin:24px 0}
.checks div{display:flex;gap:12px;color:#d9dee3}
.checks div:before{content:"✓";color:var(--accent);font-weight:1000}
.cta{
  background:linear-gradient(110deg,#f2a900,#ffc23d);color:#111;
  border-radius:18px;padding:44px;display:flex;justify-content:space-between;gap:30px;align-items:center
}
.cta h2{font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-.04em}
.cta p{margin:10px 0 0;max-width:700px;color:#2b2414;font-weight:650}
.cta .btn{background:#111;color:#fff}
.page-hero{padding:72px 0 58px;border-bottom:1px solid var(--line);background:linear-gradient(135deg,#131820,#0b0d10)}
.page-hero h1{font-size:clamp(2.8rem,5vw,4.5rem)}
.page-hero p{color:var(--muted);font-size:1.1rem;max-width:760px}
.pricing{font-size:1.8rem;color:var(--accent2);font-weight:1000;margin:16px 0 0}
form{display:grid;gap:14px}
label{font-weight:800;font-size:.92rem}
input,textarea,select{
  width:100%;background:#0c1014;color:#fff;border:1px solid #36404b;border-radius:8px;
  padding:14px 15px;font:inherit;outline:none
}
input:focus,textarea:focus,select:focus{border-color:var(--accent)}
textarea{min-height:140px;resize:vertical}
.contact-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:34px}
.contact-list{display:grid;gap:16px;margin-top:24px}
.contact-item{border-top:1px solid var(--line);padding-top:16px}
.contact-item small{display:block;color:var(--muted);text-transform:uppercase;letter-spacing:.1em}
.contact-item b{font-size:1.08rem}
footer{border-top:1px solid var(--line);padding:46px 0 28px;background:#080a0c}
.footer-grid{display:grid;grid-template-columns:1.1fr .7fr .8fr;gap:30px}
footer p,footer a{color:var(--muted)}
footer h3{font-size:1rem;margin-bottom:12px}
.footer-links{display:grid;gap:8px}
.copyright{border-top:1px solid var(--line);margin-top:34px;padding-top:22px;color:#7f8994;font-size:.88rem}
.notice{font-size:.82rem;color:#838d98;margin-top:10px}
@media(max-width:900px){
  .hero-grid,.split,.contact-grid,.footer-grid{grid-template-columns:1fr}
  .hero-grid{min-height:auto;padding:58px 0}
  .hero-card{max-width:620px}
  .grid-3{grid-template-columns:1fr 1fr}
  nav{display:none;position:absolute;left:0;right:0;top:76px;background:#0b0d10;border-bottom:1px solid var(--line);padding:18px;flex-direction:column;align-items:stretch}
  nav.open{display:flex}
  .mobile-toggle{display:block}
  .nav-cta.desktop{display:none}
}
@media(max-width:620px){
  .topbar .container{font-size:.78rem}
  .grid-3,.stat-grid{grid-template-columns:1fr}
  section{padding:64px 0}
  .cta{padding:30px;align-items:flex-start;flex-direction:column}
  h1{font-size:3.2rem}
}

/* Refined real-work photography */
.brand-logo{
  height:52px;width:auto;max-width:210px;object-fit:contain;
  background:#fff;border-radius:7px;padding:4px 7px;
}
.hero-photo{
  min-height:700px;
  background:
    linear-gradient(90deg,rgba(7,9,12,.96) 0%,rgba(7,9,12,.88) 38%,rgba(7,9,12,.42) 68%,rgba(7,9,12,.12) 100%),
    url('assets/hero-trucks.jpg') center 58%/cover no-repeat;
}
.hero-photo .hero-grid{grid-template-columns:1.02fr .98fr}
.hero-photo .hero-card{background:rgba(12,15,19,.91);backdrop-filter:blur(7px)}
.feature-photo{
  width:100%;height:100%;min-height:440px;object-fit:cover;border-radius:16px;border:1px solid var(--line)
}
.work-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.work-card{
  overflow:hidden;border:1px solid var(--line);background:var(--panel);border-radius:14px
}
.work-card img{width:100%;height:240px;object-fit:cover}
.work-card .body{padding:20px}
.work-card h3{font-size:1.18rem;margin-bottom:8px}
.work-card p{color:var(--muted);margin:0;font-size:.95rem}
.mosaic{
  display:grid;grid-template-columns:1.2fr .8fr .8fr;grid-auto-rows:250px;gap:14px
}
.mosaic figure{margin:0;position:relative;overflow:hidden;border-radius:14px;border:1px solid var(--line)}
.mosaic figure:first-child{grid-row:span 2}
.mosaic img{width:100%;height:100%;object-fit:cover}
.mosaic figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:28px 16px 14px;
  background:linear-gradient(transparent,rgba(0,0,0,.82));
  font-weight:800;font-size:.9rem
}
.callout-strip{
  display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:18px
}
.callout-strip .card{padding:22px}
@media(max-width:900px){
  .hero-photo{background-position:60% center}
  .hero-photo .hero-grid{grid-template-columns:1fr}
  .work-grid{grid-template-columns:1fr 1fr}
  .mosaic{grid-template-columns:1fr 1fr}
  .mosaic figure:first-child{grid-column:1/-1;grid-row:auto;height:340px}
}
@media(max-width:620px){
  .brand-logo{height:42px;max-width:150px}
  .hero-photo{
    min-height:auto;
    background:
      linear-gradient(180deg,rgba(7,9,12,.9) 0%,rgba(7,9,12,.82) 54%,rgba(7,9,12,.58) 100%),
      url('assets/hero-trucks.jpg') 60% center/cover no-repeat;
  }
  .work-grid,.mosaic,.callout-strip{grid-template-columns:1fr}
  .mosaic figure:first-child{grid-column:auto;height:auto}
  .mosaic figure{height:280px}
  .work-card img{height:240px}
}
