/* ============================================================
   EnaLisis — Services Page Styles
   ============================================================ */

/* Hero */
.services-hero {
  background: var(--gray-900);
  padding: 120px 24px 80px;
  text-align: center;
}
.services-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -1px;
  line-height: .95;
  margin-bottom: 20px;
}
.services-hero h1 span { color: var(--blue); }
.services-hero p { font-size: 18px; color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto 32px; font-weight: 300; }

/* Services Grid */
#services-sec { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card { background: #fff; padding: 40px 32px; transition: all .2s; cursor: pointer; }
.service-card:hover { background: var(--blue); color: #fff; }
.service-card:hover .sc-icon { background: rgba(255,255,255,.2); }
.service-card:hover .sc-icon svg { stroke: #fff; }
.service-card:hover .sc-title { color: #fff; }
.service-card:hover .sc-desc { color: rgba(255,255,255,.75); }
.service-card:hover .sc-link { color: rgba(255,255,255,.8); }
.sc-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: .2s;
}
.sc-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: .2s; }
.sc-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--gray-900); margin-bottom: 12px; transition: .2s; }
.sc-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; transition: .2s; }
.sc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 20px; text-decoration: none; transition: .2s; }
.sc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* Cyber Strip */
.cyber-strip {
  background: var(--gray-900);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cyber-strip::before {
  content: 'SECURE';
  font-family: var(--font-head);
  font-size: 200px;
  font-weight: 800;
  color: rgba(255,255,255,.03);
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
}
.cyber-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cyber-left h2 { font-family: var(--font-head); font-size: clamp(36px,4vw,56px); font-weight: 800; text-transform: uppercase; color: #fff; line-height: .95; letter-spacing: -1px; margin-bottom: 20px; }
.cyber-left h2 span { color: var(--blue); }
.cyber-left p { font-size: 16px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.8; margin-bottom: 32px; }
.cyber-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.cm-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 24px; }
.cm-num { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--blue); line-height: 1; }
.cm-label { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }
.cyber-right img { width: 100%; border-radius: var(--radius-lg); opacity: .7; filter: saturate(.4); }

@media (max-width: 768px) { .cyber-inner { grid-template-columns: 1fr; } .cyber-right { display: none; } }
