/* GLOBAL */
* { box-sizing: border-box; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:#0e1a2c;
  color:#ffffff;
}

.container{
  width:92%;
  max-width:1100px;
  margin:0 auto;
}

img{
  width:100%;
  display:block;
}

/* TOP BAR */
.topbar{
  background:#d40000;
  padding:6px 0;
  font-size:14px;
  font-weight:800;
}

.topbar-inner{
  width:92%;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.topbar-left{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.topbar-phone{
  background:#ffd400;
  color:#000;
  padding:7px 12px;
  border-radius:8px;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

/* HERO */
.hero{
  position:relative;
}

.hero-bg{
  height:520px;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.60));
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:min(92%, 720px);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.hero h1{
  margin:0;
  font-size:40px;
  line-height:1.05;
  letter-spacing:.2px;
}

.subheadline{
  margin:0;
  color:#ffd400;
  font-weight:900;
  font-size:18px;
}

/* DISPATCH */
.dispatch{
  width:100%;
  max-width:560px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  padding:12px 14px;
  border-radius:12px;
}

.dispatch-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
}

.dot{
  width:14px;
  height:14px;
  background:#00ff8c;
  border-radius:50%;
  box-shadow:0 0 18px rgba(0,255,140,.45);
}

.dispatch-sub{
  display:block;
  margin-top:6px;
  opacity:.95;
}

/* STEP FUNNEL SLOT (NO SHIFT) */
.step-slot{
  width:100%;
  max-width:560px;

  /* This is the key: reserve space so nothing moves */
  height:140px;

  position:relative;
  display:block;
  margin-top:4px;
}

.step-stage{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  pointer-events:none;
}

.step-stage.is-active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.availability-btn{
  width:90%;
  max-width:360px;
  padding:18px 22px;
  border:0;
  border-radius:12px;
  background:#3b82f6;
  color:#fff;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
}

.availability-btn:active{
  transform:scale(.99);
}

.checking{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.checking-text{
  font-weight:800;
  opacity:.95;
}

.spinner{
  width:28px;
  height:28px;
  border:4px solid rgba(255,255,255,.18);
  border-top:4px solid #00ff8c;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

.available{
  margin:0 0 10px 0;
  font-weight:900;
  color:#9cffc8;
  text-shadow:0 0 16px rgba(0,255,140,.22);
}

.cta{
  display:block;
  width:90%;
  max-width:360px;
  padding:18px 22px;
  border-radius:12px;
  background:#ffd400;
  color:#000;
  text-decoration:none;
  font-weight:900;
  font-size:22px;
  text-align:center;
}

.cta span{
  display:block;
  font-size:22px;
  margin-top:4px;
}

.reviews{
  margin-top:6px;
  text-align:center;
}

.stars{
  font-size:22px;
  line-height:1;
}

.rated{
  margin-top:6px;
  font-weight:700;
  opacity:.95;
}

/* TRUST STRIP */

.trust{
background:#0b203b;
padding:24px 0;
}

.trust-grid{
width:92%;
max-width:1100px;
margin:0 auto;
display:grid;
grid-template-columns:1fr;
gap:22px;
}

/* ICON + TEXT ROW */

.trust-item{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
text-align:left;
}

/* ICON SIZE */

.trust-item img{
width:42px;
height:42px;
object-fit:contain;
}

/* TEXT */

.trust-text{
font-size:20px;
font-weight:700;
}

/* SERVICES */
.services{
  padding:44px 0;
}

.services h2{
  text-align:center;
  margin:0 0 20px 0;
  font-size:30px;
}

.services-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.service-card{
  background:#142946;
  border:1px solid rgba(255,255,255,.06);
  padding:18px;
  border-radius:12px;
  text-align:center;
}

.service-card img{
  height:140px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
}

.service-card h3{
  margin:0 0 8px 0;
}

.service-card p{
  margin:0;
  opacity:.92;
}

/* CTA SECTION */
.cta-section{
  background:#132b4c;
  padding:44px 0;
}

.cta-box{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:center;
  justify-items:center;
  text-align:center;
}

.cta-copy p{
  margin-top:8px;
  opacity:.95;
}

.cta-image{
  width:100%;
  max-width:620px;
  border-radius:14px;
}

/* FOOTER */
footer{
  background:#000;
  padding:30px 0 80px;
}

.footer-inner{
  text-align:center;
}

.footer-line{
  font-weight:900;
  margin-bottom:10px;
}

.footer-small{
  opacity:.85;
  font-size:13px;
  margin-bottom:14px;
}

.footer-disclaimer{
  opacity:.72;
  font-size:12px;
  line-height:1.35;
}

/* STICKY CALL BAR */
.sticky-call{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:#ffd400;
  color:#000;
  text-decoration:none;
  font-weight:900;
  text-align:center;
  padding:10px 12px; /* smaller */
  font-size:16px;     /* smaller */
  z-index:999;
}

/* TABLET+ */
@media (min-width:700px){
  .trust-grid{
    grid-template-columns:repeat(3, 1fr);
  }
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .hero h1{
    font-size:54px;
  }
}

/* DESKTOP */
@media (min-width:1000px){
  /* Keep hero slightly left aligned on desktop for better conversion */
  .hero-content{
    text-align:left;
    align-items:flex-start;
    left:10%;
    transform:translateY(-50%);
  }

  .dispatch-row{
    justify-content:flex-start;
  }

  .cta-box{
    grid-template-columns:1fr 1fr;
    text-align:left;
    justify-items:stretch;
  }
}