/* static/css/services.css */

.svc-bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255,138,0,.13), transparent 60%),
    radial-gradient(780px 460px at 85% 18%, rgba(255,255,255,.08), transparent 58%),
    radial-gradient(900px 620px at 50% 90%, rgba(0,0,0,.45), transparent 60%);
  z-index: 0;
}

.svc-page{
  position: relative;
  z-index: 1;
  padding: 28px 0 56px;
}

.svc-hero{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow2);
  padding: 22px 20px;
  margin-bottom: 14px;
}

.svc-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
}
.svc-pill-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,138,0,.95);
  box-shadow: 0 0 0 4px rgba(255,138,0,.14);
}
.svc-pill-txt{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.svc-h1{
  margin: 12px 0 6px;
  font-size: clamp(26px, 3.3vw, 38px);
  font-weight: 1000;
  letter-spacing: -.7px;
  color: rgba(255,255,255,.96);
}

.svc-sub{
  margin: 0;
  max-width: 72ch;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

.svc-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* buttons (same vibe as other pages) */
.btn-primary, .btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s var(--ease), border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
  white-space: nowrap;
}

.btn-primary{
  color: rgba(0,0,0,.92);
  background: linear-gradient(180deg, rgba(255,138,0,.95), rgba(255,138,0,.82));
  border: 1px solid rgba(255,138,0,.25);
  box-shadow: 0 10px 24px rgba(255,138,0,.18);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,138,0,.22) inset, 0 14px 34px rgba(255,138,0,.20);
}

.btn-outline{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-outline:hover{
  transform: translateY(-2px);
  border-color: var(--accentLine);
  box-shadow: 0 0 0 1px var(--accentIn) inset;
}

/* grid */
.svc-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.svc-card{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.svc-card:hover{
  transform: translateY(-3px);
  border-color: var(--accentLine);
  background: rgba(255,255,255,.060);
  box-shadow: 0 0 0 1px var(--accentIn) inset, var(--shadow2);
}
.svc-card-accent{
  border-color: rgba(255,138,0,.30);
}

.svc-card-head{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.svc-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}

.svc-meta{ min-width: 0; }
.svc-kicker{
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.svc-title{
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: -.2px;
  color: rgba(255,255,255,.96);
  line-height: 1.2;
}

.svc-text{
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.svc-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.svc-list li{ margin: 6px 0; }

.svc-foot{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: flex-end;
}

.svc-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  transition: transform .16s var(--ease), border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.svc-link:hover{
  transform: translateY(-2px);
  border-color: var(--accentLine);
  box-shadow: 0 0 0 1px var(--accentIn) inset;
}

/* CTA */
.svc-cta{ margin-top: 14px; }
.svc-cta-card{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow2);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.svc-cta-title{
  font-weight: 1000;
  color: rgba(255,255,255,.96);
  letter-spacing: -.2px;
}
.svc-cta-sub{
  margin-top: 6px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}
.svc-cta-right{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* responsive */
@media(max-width: 1100px){
  .svc-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media(max-width: 680px){
  .svc-grid{ grid-template-columns: 1fr; }
  .svc-cta-card{ flex-direction: column; align-items: flex-start; }
}
