.services-section{
  background:transparent; /* use global inner-page backdrop */
  color:var(--text);
  padding:64px 18px;
  margin-top:var(--nav-height);
}
.services-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 12px;
}
.section-header{text-align:center;margin-bottom:32px}
.section-header .section-title{margin-inline:auto;text-align:center}
.section-header .section-sub{margin:.5rem auto 0;text-align:center;max-width:720px}
.section-header span{color:var(--gold-2)}
.section-header .section-title::after{left:50%;transform:translateX(-50%)}

.services-grid{
  display:grid;
  gap:26px;
  margin-top:38px;
}
.service-card{
  background:var(--surface);
  border-radius:var(--radius);
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 40px rgba(0,0,0,.38);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .25s ease, border-color .2s ease;
}
.service-media{
  flex:1 1 260px;
  min-height:220px;
  position:relative;
}
.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-content{
  flex:1 1 320px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.service-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:600;
  color:var(--gold-2);
}
.service-pill::before{
  content:"";
  width:30px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
}
.service-card h3{
  margin:0;
  font-size:1.18rem;
  font-weight:700;
}
.service-card p{
  margin:0;
  color:var(--sub);
  line-height:1.6;
}
.service-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:6px;
}
.service-points li{
  position:relative;
  padding-left:20px;
  color:var(--text);
  font-size:.92rem;
}
.service-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold-2);
}
.service-footer{
  margin-top:auto;
  display:flex;
  justify-content:flex-start;
  align-items:center;
}
.service-card .btn-link{
  padding:.45rem 1.2rem;
  border-radius:999px;
}
@media (hover:hover){
  .service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 52px rgba(0,0,0,.5);
    border-color:rgba(255,255,255,.18);
  }
}
@media (max-width:820px){
  .service-card{flex-direction:column}
  .service-media{min-height:200px}
  .service-content{padding:20px}
}
.centered{text-align:center}
#nos-services{scroll-margin-top:96px}
