/* ══════════════════════════════════════
   BRAYMONT — SERVICES PAGE CSS
══════════════════════════════════════ */

/* ── FORCE VISIBILITY (override reveal animation) ── */
.page-services .svc-left,
.page-services .svc-right,
.page-services .reveal-left,
.page-services .reveal-right,
.page-services .reveal,
.page-services .svc-deliverable,
.page-services .svc-why-item {
  opacity: 1 !important;
  transform: none !important;
}

/* ── PAGE HERO ── */
.svc-hero {
  position: relative;
  padding: 10rem 5% 5rem;
  text-align: center;
  overflow: hidden;
}
.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.svc-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.svc-hero-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* Quick nav pills */
.svc-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  max-width: 580px;
}
.svc-pill {
  padding: 0.5rem 1.2rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.svc-pill:hover,
.svc-pill.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
}

/* ── SERVICE SECTIONS ── */
.svc-section {
  position: relative;
  z-index: 1;
  padding: 7rem 5%;
  border-top: 1px solid var(--border);
}
.svc-section-alt {
  background: rgba(43,53,255,0.015);
}
.svc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.svc-reverse {
  grid-template-columns: 1.4fr 1fr;
}

/* Left: text side */
.svc-left {
  position: sticky;
  top: 100px;
}
.svc-number {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(43,53,255,0.08);
  line-height: 1;
  margin-bottom: -1rem;
  letter-spacing: -0.04em;
}
.svc-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 0.6rem;
}
.svc-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Right: deliverables grid */
.svc-right {}
.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Deliverable card */
.svc-deliverable {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-deliverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43,53,255,0.1);
}
.svc-del-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.15);
  border-radius: 10px;
  color: var(--blue-primary);
  flex-shrink: 0;
}
.svc-del-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
}
.svc-del-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHY STRIP ── */
.svc-why {
  padding: 3.5rem 5%;
  background: rgba(43,53,255,0.02);
}
.svc-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.svc-why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 0 2rem;
}
.svc-why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.15);
  border-radius: 10px;
  color: var(--blue-primary);
  flex-shrink: 0;
}
.svc-why-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.2rem;
}
.svc-why-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.svc-why-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── CTA BAND (reuse from home) ── */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 7rem 5%;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(43,53,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-band-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-band-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
  .svc-container,
  .svc-reverse { grid-template-columns: 1fr; gap: 3rem; }
  .svc-left { position: static; }
  .svc-number { font-size: 3.5rem; }
  .svc-why-inner { flex-wrap: wrap; gap: 1.5rem; }
  .svc-why-divider { display: none; }
  .svc-why-item { flex: 0 0 calc(50% - 0.75rem); padding: 0; }
}
@media(max-width:700px) {
  .svc-hero { padding: 8rem 5% 3.5rem; }
  .svc-section { padding: 5rem 5%; }
  .svc-card-grid { grid-template-columns: 1fr; }
  .svc-pills { gap: 0.4rem; }
  .svc-pill { font-size: 0.72rem; padding: 0.4rem 0.9rem; }
  .svc-why-item { flex: 0 0 100%; }
}