.page-services{
  background:
    radial-gradient(1100px 560px at 12% 12%, rgba(139,92,246,.28), transparent 60%),
    radial-gradient(900px 520px at 86% 18%, rgba(34,211,238,.18), transparent 58%),
    radial-gradient(700px 500px at 58% 92%, rgba(251,113,133,.12), transparent 58%),
    linear-gradient(180deg, #05070c, #070a12);
  color:#ecf2ff;
}

.page-services{
  --services-text:#ecf2ff;
  --services-muted:rgba(236,242,255,.72);
  --services-muted-2:rgba(236,242,255,.55);
  --services-glass:rgba(255,255,255,.08);
  --services-glass-2:rgba(255,255,255,.05);
  --services-stroke:rgba(255,255,255,.14);
  --services-v:#8b5cf6;
  --services-c:#22d3ee;
  --services-p:#fb7185;
  --services-shadow:0 22px 80px rgba(0,0,0,.55);
  --services-r:22px;
  --services-container:1180px;
}

.page-services .section{
  padding:clamp(48px, 5vw, 82px) 0;
  position:relative;
}

.page-services .section--hero{
  padding:60px 0 40px;
}

.page-services .section__inner{
  width:min(var(--services-container), calc(100% - 40px));
  margin:0 auto;
}

.page-services .section-header{
  max-width:720px;
  margin:0 auto 32px;
  text-align:center;
}

.page-services .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.95rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--services-muted-2);
  margin:0 0 14px;
}

.page-services .eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--services-v), var(--services-c));
  box-shadow:0 0 18px rgba(139,92,246,.45);
}

.page-services .section-title{
  font-size:clamp(2rem, 3.4vw, 3.3rem);
  line-height:1.04;
  margin:0 0 14px;
  letter-spacing:-.02em;
  color:var(--services-text);
}

.page-services .section-subtitle{
  margin:0;
  color:var(--services-muted);
  font-size:clamp(1.02rem, 1.25vw, 1.18rem);
  line-height:1.65;
}

.page-services .services-includes{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
  color:var(--services-muted);
  font-size:1.05rem;
  line-height:1.7;
}

.page-services .services-includes strong{
  color:var(--services-text);
}

.page-services .card-glass{
  position:relative;
  border-radius:var(--services-r);
  background:linear-gradient(180deg, var(--services-glass), var(--services-glass-2));
  border:1px solid var(--services-stroke);
  box-shadow:var(--services-shadow);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  overflow:hidden;
}

.page-services .services-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.page-services .service-card{
  padding:26px;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:390px;
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.page-services .service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.20);
}

.page-services .service-card__title{
  margin:0;
  font-size:1.22rem;
  font-weight:700;
  letter-spacing:-.01em;
  color:var(--services-text);
}

.page-services .service-card__desc{
  margin:0;
  color:var(--services-muted);
  line-height:1.65;
}

.page-services .service-card__list{
  margin:6px 0 0;
  padding-left:18px;
  color:rgba(236,242,255,.78);
  line-height:1.7;
}

.page-services .service-card__list li + li{
  margin-top:4px;
}

.page-services .service-card__btn{
  margin-top:auto;
}

.page-services .highlight{
  border-color:rgba(255,255,255,.20);
  box-shadow:0 22px 90px rgba(0,0,0,.60);
}

.page-services .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.82rem;
  font-weight:700;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(236,242,255,.9);
  width:max-content;
}

.page-services .tag::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--services-v), var(--services-c));
}

.page-services .services-cta-final{
  margin-top:48px;
  text-align:center;
}

.page-services .services-cta-final p{
  margin:0 0 14px;
  color:var(--services-muted);
  font-size:1rem;
  line-height:1.65;
}

@media (max-width:1020px){
  .page-services .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:560px){
  .page-services .section__inner{
    width:calc(100% - 26px);
  }

  .page-services .services-grid{
    grid-template-columns:1fr;
  }
}