.home-hero{
  min-height:70vh;
  padding:72px 0;
  position:relative;
  background: linear-gradient(90deg, rgba(11,18,32,.72), rgba(11,18,32,.25)),
              url('/assets/images/hero-ceiling.jpg') center/cover no-repeat;
  color:#fff;
}
.home-hero p{ color:rgba(255,255,255,.85); }
.home-hero .btn-ghost{ border-color:rgba(255,255,255,.35); color:#fff; background:transparent; }

.trust-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.trust-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  font-weight:800;
}

@media (max-width: 900px){
  .trust-strip{ grid-template-columns: repeat(2, 1fr); }
}

/* ===== HOME HERO BACKGROUND ===== */
.home-hero{
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;

  background:
    linear-gradient(
      to right,
      rgba(15,23,42,.78) 0%,
      rgba(15,23,42,.62) 35%,
      rgba(15,23,42,.35) 55%,
      rgba(15,23,42,.12) 70%,
      rgba(15,23,42,0) 100%
    ),
    url("/assets/img/hero.jpg") center right / cover no-repeat;
}

.home-hero h1{ color:#fff; }
.home-hero p{ color: rgba(255,255,255,.9); max-width: 720px; }

/* ===== Services Grid ===== */
.services-grid{
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card{
  overflow: hidden;
}

.service-media{
  height: 160px;
  background: #e5e7eb;
  overflow: hidden;
}

.service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 768px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== WHY SECTION ===== */
.why-grid{
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 32px;
}

.why-points{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.why-media{
  padding: 0;
  overflow: hidden;
}

.why-media img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 768px){
  .why-grid{
    grid-template-columns: 1fr;
  }
  .why-media img{
    height: 220px;
  }
}

/* ===== Skyline Timeline / Milestones ===== */
.sc-timeline{
  margin-top: 8px;
}

.sc-timeline__track{
  display: flex;
  gap: 14px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.sc-timeline__item{
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 14px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 8px 22px rgba(15,23,42,.06);
}

.sc-timeline__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: var(--brand);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(239,68,68,.14);
}

.sc-timeline__title{
  font-weight: 900;
  font-size: 16px;
  line-height: 1.15;
  margin: 0 0 6px;
}

.sc-timeline__desc{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

/* Highlight last item */
.sc-timeline__item.is-highlight{
  border-color: rgba(239,68,68,.35);
  box-shadow: 0 10px 26px rgba(239,68,68,.12);
}

/* Mobile: horizontal scroll + hide scrollbar */
@media (max-width: 768px){
  .sc-timeline__track{
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .sc-timeline__item{
    min-width: 240px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .sc-timeline__track::-webkit-scrollbar{ height: 0; }
  .sc-timeline__track{ scrollbar-width: none; }
}



