/* ============================================================
   services.css — Dedicated stylesheet for services.html
   Companion to styles.css (global baseline)
   Design tokens (:root) are defined in styles.css
   ============================================================ */

/* ── Page Root Wrapper ──────────────────────────────────── */
.services-page-root {
  font-family: var(--font-manrope);
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Accent Bars ────────────────────────────────────────── */
.services-accent-bar {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: #FF7A33;
  border-radius: 2px;
  margin-right: 16px;
  vertical-align: -0.14em;
}

.services-accent-bar--amber {
  background: var(--amber);
}

/* ── Hero Section ───────────────────────────────────────── */
.services-hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  padding: 56px 40px 60px;
}

.services-hero-watermark {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 18, 32, 0.07);
  letter-spacing: -5px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-tag {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--slate);
  margin-bottom: 14px;
}

.services-hero-title {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  text-transform: uppercase;
}

.services-hero-title-light {
  font-weight: 300;
  color: var(--slate);
}

.services-hero-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 100%;
  margin: 0 auto;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(255, 59, 84, 0.45);
}

.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255, 59, 84, 0.6);
  color: var(--white);
}

/* ── Beyond Institution Management ── */
.services-ecosystem-section {
  padding: clamp(52px, 3vw, 88px) clamp(16px, 4vw, 48px);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.services-ecosystem-container {
  max-width: 980px;
  margin: 0 auto;
}

.services-ecosystem-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D8451F;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  /* background: rgba(232, 88, 67, 0.08); */
  /* padding: 6px 16px; */
  border-radius: 999px;
  /* border: 1px solid rgba(232, 88, 67, 0.18); */
  text-transform: uppercase;
}

.services-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  /* box-shadow: 0 0 8px rgba(232, 88, 67, 0.6); */
}

.services-ecosystem-title {
  font-family: var(--font-sora);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.services-ecosystem-title-light {
  font-weight: 300;
  color: var(--slate);
}

.services-ecosystem-lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 6px;
}

.services-ecosystem-sublead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
}

.services-needs-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px clamp(20px, 3vw, 36px);
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.02);
}

.services-needs-prompt {
  font-family: var(--font-sora);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-needs-prompt::after {
  content: '';
  display: inline-block;
  flex: 1;
  height: 1px;
  background: var(--border);
}

.services-needs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.services-needs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-needs-list li:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 0 6px 16px -4px rgba(11, 18, 32, 0.08);
}

.services-needs-list li::before {
  content: '•';
  font-size: 22px;
  line-height: 1;
  color: #FF7A33;
  flex-shrink: 0;
}

.services-ecosystem-conclusion {
  background: linear-gradient(135deg, #0A1128 0%, #1E1A38 60%, #112347 100%);
  border-radius: 20px;
  padding: 32px clamp(20px, 3.5vw, 36px);
  color: var(--white);
  box-shadow: 0 16px 36px -10px rgba(10, 17, 40, 0.3);
}

.services-ecosystem-conclusion-title {
  font-family: var(--font-sora);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.3;
}

.services-ecosystem-conclusion-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #C8D1E0;
  margin: 0;
}

/* ── 4 Key Pillars / Technology Domains ── */
.services-pillars-section {
  background: var(--bg-card);
  padding: clamp(48px, 3vw, 84px) clamp(16px, 2vw, 48px);
}

.services-pillars-container {
  max-width: 1180px;
  margin: 0 auto;
}

.services-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 30px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.03);
}

/* .services-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: transparent;
  transition: background 0.25s ease;
} */

.services-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(11, 18, 32, 0.09);
  /* border-color: #CBD5E1; */
}

.services-pillar-card:hover::before {
  background: linear-gradient(90deg, #FF7A33, #FF3B54);
}

.services-pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.services-pillar-tag {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
}

.services-pillar-tag--blue {
  background: #EEF2FF;
  color: #3B4CCA;
}

.services-pillar-tag--coral {
  background: #FFF4EE;
  color: #E85843;
}

.services-pillar-tag--green {
  background: #F0FDF4;
  color: #16A34A;
}

.services-pillar-tag--purple {
  background: #F5EEFF;
  color: #8B5CF6;
}

.services-pillar-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: all 0.25s ease;
}

.services-pillar-card:hover .services-pillar-arrow {
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  transform: translate(2px, -2px);
}

.services-pillar-title {
  font-family: var(--font-sora);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 12px;
}

.services-pillar-desc {
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

/* ── Digital Presence Detail Page Styles ── */
.digital-presence-section {
  padding: clamp(52px, 6vw, 84px) clamp(16px, 4vw, 48px);
  background: var(--white);
}

.digital-presence-container {
  max-width: 1140px;
  margin: 0 auto;
}

.presence-block {
  margin-bottom: 56px;
}

.presence-block-title {
  font-family: var(--font-sora);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.25;
}

.presence-block-lead {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 780px;
}

.presence-features-grid {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.presence-features-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.presence-features-grid li:hover {
  background: var(--white);
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -4px rgba(11, 18, 32, 0.08);
}

.presence-features-grid li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  flex-shrink: 0;
}

.presence-connect-card {
  background: linear-gradient(135deg, #0A1128 0%, #1E1A38 60%, #112347 100%);
  border-radius: 24px;
  padding: 44px clamp(20px, 4vw, 44px);
  color: var(--white);
  box-shadow: 0 20px 48px -12px rgba(10, 17, 40, 0.35);
  margin-top: 24px;
}

.presence-connect-title {
  font-family: var(--font-sora);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.25;
}

.presence-connect-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #CBD5E1;
  margin: 0 0 14px;
  max-width: 820px;
}

.presence-connect-tagline {
  font-family: var(--font-sora);
  font-size: 17px;
  font-weight: 700;
  color: var(--amber);
  margin: 0 0 28px;
}

.presence-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(255, 59, 84, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.presence-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255, 59, 84, 0.6);
  color: var(--white);
}

/* ── Engagement Model Section ───────────────────────────── */
.engagement-section {
  margin-top: 56px;
  padding-top: 16px;
}

.engagement-title {
  font-family: var(--font-sora);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

.engagement-subtitle {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 780px;
}

.engagement-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.engagement-step-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.engagement-step-card:hover {
  background: var(--white);
  border-color: #CBD5E1;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -6px rgba(11, 18, 32, 0.08);
}

.engagement-step-num {
  font-family: var(--font-sora);
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.engagement-step-name {
  font-family: var(--font-sora);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.engagement-step-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

/* ── Why Instivera + ReTechPrime Synergy ─────────────────── */
.services-synergy-section {
  padding: clamp(52px, 3vw, 84px) clamp(16px, 2vw, 48px);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-synergy-container {
  max-width: 1180px;
  margin: 0 auto;
}

.services-synergy-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.services-synergy-title {
  font-family: var(--font-sora);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 14px;
}

.services-synergy-subtitle {
  font-family: var(--font-sora);
  font-size: 18px;
  font-weight: 700;
  color: #D8451F;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.services-synergy-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.services-synergy-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

.services-synergy-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-synergy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -6px rgba(11, 18, 32, 0.08);
  border-color: #CBD5E1;
}

.services-synergy-brand {
  font-family: var(--font-sora);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-synergy-brand-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-synergy-brand-tag--orange {
  background: #FFF4EE;
  color: #FF7A33;
}

.services-synergy-brand-tag--blue {
  background: #EEF2FF;
  color: #3B4CCA;
}

.services-synergy-desc {
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0;
}

.services-synergy-plus {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(255, 59, 84, 0.35);
  z-index: 2;
  margin: 0 auto;
}

.services-synergy-banner {
  background: linear-gradient(135deg, #0A1128 0%, #1E1A38 60%, #112347 100%);
  border-radius: 20px;
  padding: 28px 32px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 16px 36px -10px rgba(10, 17, 40, 0.3);
}

.services-synergy-banner-lead {
  font-family: var(--font-manrope);
  font-size: 15px;
  color: #CBD5E1;
  margin: 0 0 8px;
}

.services-synergy-banner-highlight {
  font-family: var(--font-sora);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.services-synergy-banner-highlight span {
  color: var(--amber);
}

/* ── You Need / We Can Help With Matrix ──────────────────── */
.services-matrix-section {
  padding: clamp(52px, 3vw, 84px) clamp(16px, 2vw, 48px);
  background: var(--white);
}

.services-matrix-container {
  max-width: 1180px;
  margin: 0 auto;
}

.services-matrix-header {
  margin-bottom: 36px;
}

.services-matrix-title {
  font-family: var(--font-sora);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

.services-matrix-subtitle {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0;
}

.services-matrix-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services-matrix-row:hover {
  background: var(--white);
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -4px rgba(11, 18, 32, 0.06);
}

.services-matrix-row--header {
  background: #0A1128;
  border-color: #0A1128;
  border-radius: 14px;
  padding: 18px 24px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 17, 40, 0.15);
}

.services-matrix-row--header:hover {
  background: #0A1128;
  border-color: #0A1128;
  transform: none;
  box-shadow: 0 4px 14px rgba(10, 17, 40, 0.15);
}

.services-matrix-col-header {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-matrix-col-header--need {
  color: var(--amber);
}

.services-matrix-need {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-matrix-need::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF7A33;
  flex-shrink: 0;
}

.services-matrix-help {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-matrix-help::before {
  content: '✓';
  font-weight: 800;
  color: #16A34A;
  margin-right: 4px;
}



/* ── Tabs Section ───────────────────────────────────────── */
.services-tabs-section {
  padding: clamp(20px, 5vw, 64px) clamp(20px, 5vw, 64px) 96px;
  background: var(--bg-card);
}

.services-pill-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.services-pill-box {
  display: inline-flex;
  padding: 5px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  gap: 4px;
}

.services-pill-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  user-select: none;
}

/* .services-tab-pane {
  display: none;
} */

.services-tab-container {
  max-width: 800px;
  margin: 0 auto;
}

.services-card {
  border-radius: 20px;
  padding: 40px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services-card--light {
  background: var(--white);
  box-shadow: 0 1px 2px rgba(11, 18, 32, 0.04), 0 16px 34px -14px rgba(11, 18, 32, 0.1);
}

.services-card--dark {
  background: #0F1830;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  color: var(--white);
  box-shadow: 0 1px 2px rgba(11, 18, 32, 0.08), 0 20px 40px -14px rgba(11, 18, 32, 0.4);
}

.services-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.services-card-icon--blue {
  background: #EEF2FF;
  color: #3B4CCA;
}

.services-card-icon--green {
  background: rgba(255, 255, 255, 0.08);
  color: #16A34A;
}

.services-card-title {
  font-family: var(--font-sora);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}

.services-card-title--dark {
  color: var(--white);
}

.services-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.services-card-desc--dark {
  color: #B8C0D0;
}

.services-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.services-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
}

.services-feature-item--dark {
  color: var(--white);
}

.services-card-btn {
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.services-card-btn--primary:hover,
.services-card-btn:hover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
}

.services-card-btn--primary {
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(255, 59, 84, 0.45);
}

.services-card-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255, 59, 84, 0.6);
}

.services-card-btn--white {
  background: var(--white);
  color: var(--ink);
}

.services-card-btn--white:hover {
  background: #F6F7FB;
  transform: translateY(-1px);
}

/* ── CTA Banner Section ─────────────────────────────────── */
.services-cta-section {
  padding: 0 clamp(16px, 4vw, 48px) 48px;
  background: var(--white);
}

.services-cta-card {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(120deg, #0A1128, #3A1330 60%, #16214A);
  padding: 44px clamp(20px, 4vw, 48px);
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-sora);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.2;
}

.services-cta-title-light {
  font-weight: 300;
  color: #8FA0C4;
}

.services-cta-lead {
  font-size: 16px;
  color: #B8C0D0;
  margin: 0 0 32px;
  line-height: 1.6;
}

.services-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta-btn-primary {
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(255, 59, 84, 0.45);
}

.services-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255, 59, 84, 0.6);
}

.services-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

/* ── Responsive Overrides (Services Page Unique) ────────── */
@media (max-width: 992px) {
  .presence-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagement-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-synergy-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-synergy-plus {
    margin: -6px auto;
  }
}

@media (max-width: 768px) {
  .services-synergy-section {
    padding: 40px 16px 52px;
  }

  .services-synergy-title {
    font-size: 24px;
  }

  .services-synergy-subtitle {
    font-size: 16px;
  }

  .services-synergy-card {
    padding: 24px 20px;
  }

  .services-synergy-banner {
    padding: 22px 20px;
  }

  .services-synergy-banner-highlight {
    font-size: 17px;
  }

  .services-matrix-section {
    padding: 40px 16px 52px;
  }

  .services-matrix-title {
    font-size: 24px;
  }

  .services-matrix-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 16px;
  }

  .services-matrix-row--header {
    display: none;
  }

  .services-matrix-need {
    font-size: 15px;
  }

  .services-matrix-help {
    font-size: 14px;
    padding-left: 20px;
  }

  /* Digital presence mobile */
  .digital-presence-section {
    padding: 40px 16px 52px;
  }

  .presence-block {
    margin-bottom: 40px;
  }

  .presence-block-title {
    font-size: 24px;
  }

  .presence-features-grid {
    grid-template-columns: 1fr;
  }

  .engagement-section {
    margin-top: 40px;
  }

  .engagement-title {
    font-size: 24px;
  }

  .engagement-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .engagement-step-card {
    padding: 20px 18px;
  }

  .presence-connect-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .presence-connect-title {
    font-size: 22px;
  }

  .services-hero-section {
    padding: 40px 20px 48px;
  }

  .services-hero-watermark {
    font-size: 70px;
    top: 18px;
  }

  .services-hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .services-hero-lead {
    font-size: 14.5px;
  }

  /* Ecosystem section mobile */
  .services-ecosystem-section {
    padding: 40px 16px 52px;
  }

  .services-ecosystem-title {
    font-size: 26px;
  }

  .services-ecosystem-lead {
    font-size: 16px;
  }

  .services-ecosystem-sublead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .services-needs-box {
    padding: 22px 16px;
    margin-bottom: 24px;
  }

  .services-needs-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-ecosystem-conclusion {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .services-ecosystem-conclusion-title {
    font-size: 20px;
  }

  .services-ecosystem-conclusion-text {
    font-size: 14.5px;
  }

  /* Pillars section mobile */
  .services-pillars-section {
    padding: 36px 16px 48px;
  }

  .services-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-pillar-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .services-pillar-title {
    font-size: 18px;
    line-height: 1.35;
  }

  .services-pillar-desc {
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* CTA section mobile */
  .services-cta-section {
    padding: 0 16px 40px;
  }

  .services-cta-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .services-cta-title {
    font-size: 26px;
  }

  .services-cta-btns {
    flex-direction: column;
  }

  .services-cta-btn-primary,
  .services-cta-btn-secondary {
    width: 100%;
    text-align: center;
  }
}