:root{
  --black:#070707;
  --panel:#111;
  --panel2:#181818;
  --text:#f5f5f5;
  --muted:#aaa;
  --orange:#ff6a00;
  --orange2:#ff9a3c;
  --line:rgba(255,255,255,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#000;
}
.hero-image{
  position:absolute;
  inset:0;
  background-image:url("assets/epic-connect-hero.png");
  background-position:center 22%;
  background-repeat:no-repeat;
  background-size:cover;
  transform:scale(1.02);
}
.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.20) 0%,rgba(0,0,0,.42) 45%,rgba(0,0,0,.96) 100%),
    linear-gradient(to right,rgba(0,0,0,.28),rgba(0,0,0,.05));
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(760px,100%);
  padding:clamp(28px,6vw,72px);
  padding-bottom:max(44px,env(safe-area-inset-bottom));
}
.eyebrow{
  color:var(--orange2);
  letter-spacing:.18em;
  font-size:.76rem;
  font-weight:800;
  margin:0 0 14px;
}
h1{
  margin:0;
  font-size:clamp(2.7rem,10vw,6.2rem);
  line-height:.96;
  letter-spacing:-.045em;
}
h1 span{color:var(--orange)}
.intro{
  max-width:630px;
  color:#ddd;
  font-size:clamp(1rem,2.8vw,1.25rem);
  margin:22px 0 28px;
}
.primary-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.centered{justify-content:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#111;
  box-shadow:0 12px 30px rgba(255,106,0,.25);
}
.btn-outline{
  border-color:rgba(255,255,255,.35);
  background:rgba(0,0,0,.34);
  backdrop-filter:blur(8px);
}
.scroll-link{
  display:inline-block;
  margin-top:28px;
  color:#bbb;
  font-size:.92rem;
}
.section{
  width:min(1120px,100%);
  margin:auto;
  padding:88px 22px;
}
.section-heading{max-width:720px;margin-bottom:34px}
h2{
  margin:0;
  font-size:clamp(2rem,6vw,4rem);
  line-height:1.05;
  letter-spacing:-.035em;
}
.action-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.action-card{
  min-height:160px;
  padding:24px;
  border:1px solid var(--line);
  background:linear-gradient(145deg,var(--panel2),var(--panel));
  border-radius:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:transform .2s ease,border-color .2s ease;
}
.action-card:hover{transform:translateY(-3px);border-color:rgba(255,106,0,.55)}
.action-card.accent{background:linear-gradient(145deg,#2a1607,#121212)}
.icon{
  font-size:1.7rem;
  color:var(--orange);
  margin-bottom:auto;
}
.action-card strong{font-size:1.15rem}
.action-card small{color:var(--muted);margin-top:5px}
.services{border-top:1px solid var(--line)}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.service-grid article{
  border-top:2px solid var(--orange);
  background:#0d0d0d;
  padding:26px 22px;
}
.service-grid h3{margin:0 0 9px;font-size:1.3rem}
.service-grid p{margin:0;color:var(--muted)}
.vehicle-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.vehicle-strip span{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#d3d3d3;
  font-size:.9rem;
}
.final-cta{
  text-align:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.final-cta p:not(.eyebrow){color:var(--muted);max-width:660px;margin:18px auto 28px}
footer{
  padding:38px 22px 54px;
  text-align:center;
  color:#888;
  font-size:.88rem;
}
footer strong{color:#ddd}
footer p{margin:7px 0}

@media (max-width:780px){
  .hero-image{background-size:auto 100%;background-position:center top}
  .action-grid,.service-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:520px){
  .hero-content{padding-left:22px;padding-right:22px}
  .primary-actions .btn{flex:1}
  .section{padding:68px 18px}
  .action-grid,.service-grid{grid-template-columns:1fr}
  .action-card{min-height:132px}
}
