/* =========================================================
assets/services-landing.css
Simple Intertek-style services landing (RIS branded)
========================================================= */

:root{
  --ris-yellow:#ffb018;
  --ink:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --radius:16px;
}

.svcLandingBody{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}

.srOnly{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ============ HERO ============ */
.svcHero{
  background: var(--ris-yellow);
  padding: 34px 0 26px;
}

.svcHero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:start;
}

/* breadcrumb */
.svcCrumb{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  font-size: 12px;
  color: rgba(15,23,42,.80);
  margin-bottom: 10px;
}
.svcCrumb a{
  color: inherit;
  text-decoration:none;
}
.svcCrumb a:hover{ text-decoration: underline; }

.svcHero__h1{
  margin: 0 0 14px;
  font-family:"Poppins",system-ui;
  font-weight:600;
  letter-spacing:-.02em;
  font-size: clamp(36px, 4vw, 56px);
  line-height:1.05;
}

.svcHero__highlight{
  background:#fff;
  border-left: 6px solid rgba(15,23,42,.90);
  padding: 12px 14px;
  max-width: 520px;
  font-size: 13.6px;
  line-height:1.6;
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  margin-bottom: 14px;
}

.svcHero__p{
  margin: 0 0 10px;
  max-width: 560px;
  color: rgba(15,23,42,.85);
  line-height:1.8;
  font-size: 13.8px;
}

/* Right side */
.svcHero__right{
  display:grid;
  gap: 12px;
  justify-items:end;
}

.svcHero__mark{
  width: min(360px, 100%);
  aspect-ratio: 1/1;
  display:grid;
  place-items:center;
}
.svcHero__mark svg{
  width: 100%;
  height: 100%;
}

/* mini responsibility card */
.svcMiniCard{
  width: min(320px, 100%);
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  background:#fff;
  text-decoration:none;
  color:inherit;
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

.svcMiniCard__img{
  height: 100%;
  min-height: 96px;
  background:#e5e7eb;
}
.svcMiniCard__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.svcMiniCard__body{
  padding: 10px 10px 10px 0;
}
.svcMiniCard__k{
  font-size: 12px;
  font-weight:600;
  color: rgba(15,23,42,.85);
  margin-bottom: 6px;
}
.svcMiniCard__body p{
  margin:0;
  font-size: 12.8px;
  line-height:1.55;
  color: rgba(15,23,42,.72);
}

/* ============ SERVICE TILES ============ */
.svcMain{
  padding: 18px 0 60px;
  background:#fff;
}

.svcTiles{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 10px;
}

.svcTile{
  background:#fff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 0; /* reference style is sharper */
  padding: 14px;
  text-decoration:none;
  color:inherit;
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 190px;
}

.svcTile:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
}

.svcTile__icon{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(15,23,42,.16);
  border-radius: 999px;
  margin-bottom: 12px;
}

.svcTile__icon svg{
  width: 22px;
  height: 22px;
  color: rgba(15,23,42,.90);
}

.svcTile h3{
  margin: 0 0 8px;
  font-family:"Poppins",system-ui;
  font-size: 15px;
  font-weight:600;
}

.svcTile p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.70);
  line-height: 1.65;
  font-size: 13.4px;
}

.svcTile__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ris-yellow);
  color:#111;
  font-weight:700;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .svcHero__grid{ grid-template-columns: 1fr; }
  .svcHero__right{ justify-items:start; }
  .svcTiles{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px){
  .svcTiles{ grid-template-columns: 1fr; }
  .svcMiniCard{ grid-template-columns: 110px 1fr; }
}
