:root {
  --orange:#FF6B00;
  --orange2:#FF8A33;
  --black:#090909;
  --ink:#111;
  --muted:#6c7075;
  --line:#e8e8e8;
  --bg:#f8f8f7
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:#fff;
  color:var(--ink);
  font-family:Inter,Arial,sans-serif
}
a {
  color:inherit;
  text-decoration:none
}
img {
  max-width:100%
}
.top {
  height:92px;
  background:#090909;
  color:#fff;
  border-bottom:2px solid var(--orange);
  position:sticky;
  top:0;
  z-index:20
}
.top-in {
  max-width:1420px;
  height:100%;
  margin:auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:35px
}
.brand {
  display:flex;
  align-items:center;
  gap:13px;
  min-width:360px
}
.brand img {
  width:64px;
  height:64px;
  object-fit:contain
}
.brand strong {
  display:block;
  font:700 31px 'Bebas Neue';
  letter-spacing:.04em;
  color:var(--orange)
}
.brand span {
  font:700 13px 'Barlow Condensed';
  letter-spacing:.18em;
  color:#eee
}
nav {
  margin-left:auto
}
nav a {
  font:700 16px 'Barlow Condensed';
  letter-spacing:.08em;
  margin:0 18px;
  color:#eee
}
nav a:hover,nav a.active {
  color:#fff;
  border-bottom:3px solid var(--orange);
  padding-bottom:11px
}
.top-cta {
  background:var(--orange);
  padding:16px 25px;
  border-radius:30px;
  font-weight:800;
  white-space:nowrap;
  box-shadow:0 6px 24px #FF6B0055
}
.crumb {
  max-width:1420px;
  margin:auto;
  padding:14px 24px;
  color:#7c7c7c;
  font-size:13px
}
.crumb b {
  color:#222
}
.hero-wrap {
  max-width:1420px;
  margin:auto;
  padding:0 24px 25px
}
.hero {
  min-height:465px;
  border-radius:0 0 16px 16px;
  overflow:hidden;
  position:relative;
  background:#111 url('assets/van-dragon.jpg') center/cover no-repeat;
  display:flex;
  align-items:stretch
}
.hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.93) 0%,rgba(0,0,0,.77) 37%,rgba(0,0,0,.22) 70%,rgba(0,0,0,.16) 100%)
}
.hero-copy {
  position:relative;
  z-index:1;
  width:58%;
  padding:62px 54px 45px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center
}
.eyebrow,.kicker {
  font:700 16px 'Barlow Condensed';
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--orange)
}
h1 {
  font:700 clamp(58px,6vw,92px) 'Bebas Neue';
  line-height:.9;
  margin:10px 0 18px;
  letter-spacing:.01em
}
.hero-copy p {
  font-size:17px;
  line-height:1.65;
  color:#f0f0f0;
  max-width:610px;
  margin:0 0 25px
}
.buttons {
  display:flex;
  gap:12px;
  flex-wrap:wrap
}
.btn {
  padding:14px 21px;
  border-radius:9px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase
}
.btn.orange {
  background:var(--orange);
  color:#fff
}
.btn.green {
  background:#10be68;
  color:#fff
}
.stats {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:27px
}
.stat {
  display:flex;
  align-items:center;
  gap:8px;
  text-transform:uppercase;
  font:700 14px 'Barlow Condensed'
}
.stat i {
  font-style:normal;
  width:34px;
  height:34px;
  border:2px solid var(--orange);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--orange)
}
.content-wrap {
  max-width:1420px;
  margin:auto;
  padding:0 24px
}
.grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:28px;
  align-items:start
}
.sidebar {
  display:flex;
  flex-direction:column;
  gap:18px
}
.side-card {
  background:#fff;
  border:1px solid var(--line);
  border-top:3px solid var(--orange);
  border-radius:15px;
  padding:23px;
  box-shadow:0 8px 28px rgba(0,0,0,.07)
}
.side-card h3 {
  font:700 25px 'Bebas Neue';
  margin:0 0 17px
}
.side-link {
  display:flex;
  gap:12px;
  align-items:center;
  background:#f7f7f7;
  border-radius:10px;
  padding:14px;
  margin-bottom:9px;
  font-weight:800;
  font-size:14px
}
.side-link:last-child {
  margin-bottom:0
}
.side-icon {
  color:var(--orange);
  font-size:21px;
  width:25px;
  text-align:center
}
.side-link small {
  display:block;
  color:#888;
  font-weight:500;
  font-size:11px;
  margin-top:3px
}
.intro {
  padding:10px 0 12px
}
.title {
  font:700 clamp(36px,3.5vw,50px) 'Bebas Neue';
  line-height:1;
  margin:7px 0 13px
}
.intro p,.section-text {
  color:#5d6166;
  line-height:1.75;
  font-size:16px
}
.services {
  padding:25px 0
}
.section-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:25px;
  margin-bottom:20px
}
.section-head .section-text {
  max-width:600px;
  margin:0
}
.services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px
}
.service-card {
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition:.2s
}
.service-card:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.1)
}
.service-image {
  height:195px;
  background:#151515;
  position:relative;
  overflow:hidden
}
.service-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.service-image:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.38))
}
.service-num {
  position:absolute;
  left:14px;
  bottom:13px;
  z-index:2;
  background:var(--orange);
  color:#fff;
  width:43px;
  height:43px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font:700 17px 'Barlow Condensed'
}
.service-body {
  padding:17px 18px 19px
}
.service-body h3 {
  font:700 25px 'Bebas Neue';
  line-height:1.03;
  margin:0 0 8px
}
.service-body p {
  font-size:13.5px;
  line-height:1.58;
  color:#666;
  min-height:86px;
  margin:0 0 12px
}
.service-body a {
  font:700 16px 'Barlow Condensed';
  color:var(--orange);
  text-transform:uppercase
}
.service-body a b {
  font-size:19px
}
.dark-band {
  margin:24px 0 30px;
  border-radius:16px;
  background:linear-gradient(100deg,#0b0b0b,#171717);
  color:#fff;
  padding:32px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px
}
.dark-band h2 {
  font:700 44px 'Bebas Neue';
  line-height:1;
  margin:8px 0 12px
}
.dark-band h2 span {
  color:var(--orange)
}
.dark-band p {
  color:#ccc;
  line-height:1.7
}
.checks {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:20px
}
.check {
  font-size:14px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px
}
.check i {
  font-style:normal;
  width:23px;
  height:23px;
  background:var(--orange);
  border-radius:50%;
  display:grid;
  place-items:center
}
.call-box {
  background:#161616;
  border:1px solid #2c2c2c;
  border-radius:14px;
  padding:25px;
  align-self:center
}
.call-box strong {
  display:block;
  font:700 38px 'Bebas Neue'
}
.call-box span {
  color:#aaa;
  font-size:13px
}
.call-box a {
  display:block;
  background:var(--orange);
  color:#fff;
  text-align:center;
  padding:14px;
  border-radius:9px;
  margin-top:18px;
  font-weight:800
}
.two {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:0 0 28px
}
.box {
  border:1px solid var(--line);
  border-radius:15px;
  padding:25px
}
.box h2 {
  font:700 32px 'Bebas Neue';
  margin:0 0 10px
}
.box p,.box li {
  color:#5e6267;
  line-height:1.75;
  font-size:15px
}
.map {
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  margin-bottom:28px
}
.map-head {
  padding:24px
}
.map-head h2,.faq h2 {
  font:700 35px 'Bebas Neue';
  margin:6px 0 8px
}
.map-head p {
  margin:0;
  color:#666
}
.map iframe {
  display:block;
  width:100%;
  height:390px;
  border:0
}
.faq {
  margin-bottom:28px
}
.faq details {
  border-bottom:1px solid var(--line);
  padding:16px 0
}
.faq summary {
  cursor:pointer;
  font-weight:800;
  list-style:none
}
.faq summary::-webkit-details-marker {
  display:none
}
.faq details p {
  color:#666;
  line-height:1.7;
  margin:10px 0 0
}
.final {
  margin:0 0 42px;
  background:#0b0b0b;
  border-radius:16px;
  padding:32px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.final h2 {
  font:700 42px 'Bebas Neue';
  margin:0 0 5px
}
.final p {
  margin:0;
  color:#ccc
}
footer {
  background:#090909;
  color:#ddd;
  padding:38px 24px 20px;
  border-top:2px solid #222
}
.foot {
  max-width:1420px;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:35px
}
footer h3 {
  font:700 24px 'Bebas Neue';
  color:#fff;
  margin:0 0 10px
}
footer p,footer a {
  color:#aaa;
  line-height:1.7;
  font-size:14px
}
.foot-bottom {
  max-width:1420px;
  margin:25px auto 0;
  padding-top:18px;
  border-top:1px solid #252525;
  color:#777;
  font-size:12px
}
@media(max-width:1050px) {
  nav {
    display:none
  }
  .brand {
    min-width:0
  }
  .grid {
    grid-template-columns:1fr
  }
  .sidebar {
    display:grid;
    grid-template-columns:repeat(2,1fr)
  }
  .services-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .hero-copy {
    width:72%
  }
}
@media(max-width:700px) {
  .top {
    height:74px
  }
  .top-in {
    padding:0 14px
  }
  .brand img {
    width:48px;
    height:48px
  }
  .brand strong {
    font-size:25px
  }
  .brand span {
    font-size:10px
  }
  .top-cta {
    padding:11px 14px;
    font-size:12px
  }
  .crumb,.hero-wrap,.content-wrap {
    padding-left:14px;
    padding-right:14px
  }
  .hero {
    min-height:560px;
    background-position:62% center
  }
  .hero-copy {
    width:100%;
    padding:30px 23px 25px;
    justify-content:flex-end
  }
  h1 {
    font-size:58px
  }
  .hero-copy p {
    font-size:15px
  }
  .stats {
    gap:11px
  }
  .stat {
    font-size:11px
  }
  .sidebar,.services-grid,.two {
    grid-template-columns:1fr
  }
  .section-head {
    display:block
  }
  .dark-band {
    grid-template-columns:1fr;
    padding:25px
  }
  .checks {
    grid-template-columns:1fr
  }
  .dark-band h2,.final h2 {
    font-size:36px
  }
  .final {
    display:block
  }
  .final .buttons {
    margin-top:20px
  }
  .map iframe {
    height:320px
  }
  .foot {
    grid-template-columns:1fr
  }
}
