
.services-page .services-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 98px;
}
.services-page .services-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -210px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,124,255,.20), rgba(89,215,209,.07) 48%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}
.services-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 38px;
  color: var(--text-muted);
  font-size: .8rem;
}
.services-breadcrumb a:hover { color: var(--text); }
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
  gap: 72px;
  align-items: center;
}
.services-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 6.5vw, 6.4rem);
}
.services-hero h1 span {
  color: transparent;
  background: linear-gradient(110deg,#c6bdff 0%,#8b7cff 42%,#65ded9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.services-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}
.services-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.services-meta li {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255,255,255,.022);
  font-size: .73rem;
  font-weight: 650;
}
.services-hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.services-hero-card {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  background: #121620;
  box-shadow: var(--shadow);
}
.services-hero-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  opacity: .72;
}
.services-hero-overlay {
  padding: 26px;
  background: linear-gradient(180deg,rgba(9,11,16,.75),rgba(9,11,16,.97));
}
.services-hero-overlay strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.services-hero-overlay p { margin: 0; color: var(--text-soft); }
.services-floating-card {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 250px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(14,17,24,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 54px rgba(0,0,0,.30);
}
.services-floating-card span {
  display: block;
  margin-bottom: 6px;
  color: #c7c1ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.services-floating-card strong { font-size: .95rem; }

.services-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 68px;
  align-items: start;
}
.services-intro-copy p { margin: 0; color: var(--text-soft); font-size: 1.02rem; }
.services-intro-copy p + p { margin-top: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.services-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.services-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.services-card-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: #c9c2ff;
  font-size: .72rem;
  font-weight: 800;
}
.services-card h3 { margin-bottom: 13px; }
.services-card p { margin: 0; color: var(--text-soft); }
.services-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--text-muted);
  font-size: .88rem;
}
.services-card li::marker { color: var(--accent-2); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 12px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 28px;
  color: #c7c1ff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.15rem; letter-spacing: -.025em; }
.process-step p { margin: 0; color: var(--text-soft); font-size: .9rem; }

.services-feature-stack { display: grid; gap: 18px; }
.services-feature {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr);
  gap: 42px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
}
.services-feature.is-reverse { grid-template-columns: minmax(300px,.95fr) minmax(0,1.05fr); }
.services-feature.is-reverse .services-feature-media { order: -1; }
.services-feature h3 { margin-bottom: 14px; font-size: clamp(1.6rem,2.4vw,2.35rem); }
.services-feature p { margin: 0; color: var(--text-soft); }
.services-feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.services-feature-pills span {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
}
.services-feature-media {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #11151e;
}
.services-feature-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform .4s ease;
}
.services-feature:hover .services-feature-media img { transform: scale(1.025); }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}
.stack-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.025);
}
.stack-card h3 { margin-bottom: 16px; }
.stack-list { display: flex; flex-wrap: wrap; gap: 9px; }
.stack-list span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.022);
  color: var(--text-soft);
  font-size: .8rem;
  font-weight: 650;
}

.services-contact {
  padding: 72px clamp(24px,6vw,76px);
  border: 1px solid var(--border-strong);
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 5%, rgba(89,215,209,.1), transparent 25rem),
    radial-gradient(circle at 12% 100%, rgba(139,124,255,.14), transparent 28rem),
    rgba(255,255,255,.025);
  display: grid;
  grid-template-columns: minmax(0,1fr) 260px;
  gap: 44px;
  align-items: center;
}
.services-contact h2 { max-width: 760px; margin-bottom: 18px; }
.services-contact p:not(.eyebrow) { max-width: 650px; margin: 0; color: var(--text-soft); }
.services-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.services-contact img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

@media(max-width:1050px){
  .services-hero-grid,.services-intro-grid,.services-feature,.services-feature.is-reverse,.services-contact{grid-template-columns:1fr}
  .services-hero-visual{min-height:auto;width:min(100%,650px);margin-inline:auto}
  .services-floating-card{right:12px}
  .services-feature.is-reverse .services-feature-media{order:0}
  .process-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .services-contact img{width:min(100%,360px)}
}
@media(max-width:820px){
  .services-page .services-hero{padding:58px 0 78px}
  .services-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stack-grid{grid-template-columns:1fr}
  .services-contact{border-radius:28px}
}
@media(max-width:580px){
  .services-floating-card{position:static;width:100%;margin-top:14px}
  .process-grid{grid-template-columns:1fr}
  .services-card,.services-feature{padding:24px}
  .services-contact{padding:34px 24px}
  .services-contact-actions .button{width:100%}
}
