/* ============================================
   VELCITI — interior.css
   Service pages
   Premium restrained palette
   No gold/navy overload
   ============================================ */

/* ── BODY ── */
.sp-body {
  background: #ffffff;
  color: #0A0F1E;
}

/* ── CONTAINER ── */
.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ── TYPOGRAPHY SYSTEM ── */
.sp-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 12px;
}

.sp-label--light { color: rgba(255,255,255,0.45); }

.sp-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.sp-h2--light { color: #ffffff; }

.sp-body-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 540px;
}

.sp-body-light { color: rgba(255,255,255,0.55); }

.sp-section-head {
  margin-bottom: 48px;
}

.sp-section-head--light .sp-h2 { color: #ffffff; }


/* ══════════════════════════════════
   HERO — Full width rounded image
   ══════════════════════════════════ */
.sp-hero-full {
  padding: calc(72px + 24px) 24px 0;
  background: #f5f5f5;
}

.sp-hero-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
}

.sp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sp-hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,15,30,0.3) 0%,
    rgba(10,15,30,0.65) 100%
  );
}

.sp-hero-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  animation: heroCenterIn 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  opacity: 0;
}

@keyframes heroCenterIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.sp-hero-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-hero-tag::before,
.sp-hero-tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  display: block;
}

.sp-hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.sp-hero-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

@media (max-width: 768px) {
  .sp-hero-wrap { height: 320px; border-radius: 12px; }
  .sp-hero-h1 { letter-spacing: -1px; }
}


/* ══════════════════════════════════
   OVERVIEW
   Text left, image right
   ══════════════════════════════════ */
.sp-overview {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #F7F7F7;
}

.sp-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sp-ov-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.sp-ov-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid #eee;
  margin-right: 24px;
}

.sp-ov-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.sp-ov-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0A0F1E;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.sp-ov-lbl {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-ov-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .sp-overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-ov-img { height: 280px; }
}


/* ══════════════════════════════════
   WHY CHOOSE US
   Clean numbered cards
   ══════════════════════════════════ */
.sp-why {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #F5F7FA;
}

.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-why-card {
  background: #ffffff;
  border: 1px solid #E8ECF4;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,21,35,0.10);
  border-color: rgba(201,168,76,0.4);
}

.sp-why-icon {
  width: 44px;
  height: 44px;
  background: #0F1D3D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sp-why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 8px;
  letter-spacing: 2px;
  display: block;
}

.sp-why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0A0F1E;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 900px) { .sp-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sp-why-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════
   PROCESS
   Cards floating on dark image bg
   ══════════════════════════════════ */
.sp-process {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  overflow: hidden;
}

.sp-process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp-process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.35);
}

.sp-process-dim {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.6);
}

.sp-process-inner {
  position: relative;
  z-index: 2;
}

.sp-process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
  position: relative;
}

.sp-process-line {
  position: absolute;
  top: 50px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: rgba(255,255,255,0.18);
  z-index: 0;
}

.sp-process-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
  border-color: rgba(201,168,76,0.5);
}

.sp-process-num {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: #C9A84C;
  color: #0A0F1E;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  line-height: 1;
}

.sp-process-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0A0F1E;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sp-process-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 900px) { .sp-process-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sp-process-cards { grid-template-columns: 1fr; } }


/* ══════════════════════════════════
   TESTS / SERVICES GRID
   Clean list with SVG icons
   ══════════════════════════════════ */
.sp-tests {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #ffffff;
}

.sp-tests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  overflow: hidden;
}

.sp-test-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  border-bottom: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
  transition: background 0.18s ease;
}

.sp-test-item:nth-child(even) { border-right: none; }
.sp-test-item:nth-last-child(-n+2) { border-bottom: none; }

.sp-test-item:hover { background: #F9F9F9; }

.sp-test-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}

.sp-test-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0A0F1E;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sp-test-item p {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .sp-tests-grid { grid-template-columns: 1fr; }
  .sp-test-item { border-right: none; }
  .sp-test-item:last-child { border-bottom: none; }
}


/* ══════════════════════════════════
   CTA
   ══════════════════════════════════ */
.sp-cta {
  background: #F0F4FA;
  padding: clamp(48px, 6vw, 80px) 0;
}

.sp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sp-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1C3172;
  display: block;
  margin-bottom: 12px;
}

.sp-cta-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sp-cta-accent { color: #1C3172; }

.sp-cta-sub {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}

.sp-cta-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.sp-cta-contact a:hover { color: #1C3172; }

.sp-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-cta-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #1C3172;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  animation: btnPulse 2.5s ease-in-out 2s infinite;
}

.sp-cta-btn-primary:hover {
  background: #0A0F1E;
  transform: translateY(-2px);
  animation: none;
}

.sp-cta-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #1C3172;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid #1C3172;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sp-cta-btn-outline:hover {
  background: #1C3172;
  color: #ffffff;
}

@media (max-width: 768px) {
  .sp-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-cta-contact { gap: 16px; }
}


/* ══════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════ */

/* ── REVEAL BASE ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MERGE ANIMATION — left meets right ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right { transition-delay: 0.15s; }

/* ── STAGGER for grid children ── */
.sp-why-grid .sp-why-card:nth-child(1) { transition-delay: 0.05s; }
.sp-why-grid .sp-why-card:nth-child(2) { transition-delay: 0.12s; }
.sp-why-grid .sp-why-card:nth-child(3) { transition-delay: 0.19s; }
.sp-why-grid .sp-why-card:nth-child(4) { transition-delay: 0.26s; }
.sp-why-grid .sp-why-card:nth-child(5) { transition-delay: 0.33s; }
.sp-why-grid .sp-why-card:nth-child(6) { transition-delay: 0.40s; }

.sp-cs-grid .sp-cs-card:nth-child(1) { transition-delay: 0.05s; }
.sp-cs-grid .sp-cs-card:nth-child(2) { transition-delay: 0.15s; }
.sp-cs-grid .sp-cs-card:nth-child(3) { transition-delay: 0.25s; }

.sp-process-cards .sp-process-card:nth-child(1) { transition-delay: 0.05s; }
.sp-process-cards .sp-process-card:nth-child(2) { transition-delay: 0.15s; }
.sp-process-cards .sp-process-card:nth-child(3) { transition-delay: 0.25s; }
.sp-process-cards .sp-process-card:nth-child(4) { transition-delay: 0.35s; }

.sp-del-grid .sp-del-card:nth-child(1) { transition-delay: 0.04s; }
.sp-del-grid .sp-del-card:nth-child(2) { transition-delay: 0.08s; }
.sp-del-grid .sp-del-card:nth-child(3) { transition-delay: 0.12s; }
.sp-del-grid .sp-del-card:nth-child(4) { transition-delay: 0.16s; }
.sp-del-grid .sp-del-card:nth-child(5) { transition-delay: 0.20s; }
.sp-del-grid .sp-del-card:nth-child(6) { transition-delay: 0.24s; }
.sp-del-grid .sp-del-card:nth-child(7) { transition-delay: 0.28s; }
.sp-del-grid .sp-del-card:nth-child(8) { transition-delay: 0.32s; }

.sp-app-grid .sp-app-card:nth-child(1) { transition-delay: 0.04s; }
.sp-app-grid .sp-app-card:nth-child(2) { transition-delay: 0.08s; }
.sp-app-grid .sp-app-card:nth-child(3) { transition-delay: 0.12s; }
.sp-app-grid .sp-app-card:nth-child(4) { transition-delay: 0.16s; }
.sp-app-grid .sp-app-card:nth-child(5) { transition-delay: 0.20s; }
.sp-app-grid .sp-app-card:nth-child(6) { transition-delay: 0.24s; }
.sp-app-grid .sp-app-card:nth-child(7) { transition-delay: 0.28s; }
.sp-app-grid .sp-app-card:nth-child(8) { transition-delay: 0.32s; }

/* ── HERO animations ── */
.sp-hero-left {
  animation: heroLeftIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.sp-hero-right {
  animation: heroRightIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

@keyframes heroLeftIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroRightIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── CTA button pulse ── */
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(28,49,114,0.3); }
  50%  { box-shadow: 0 0 0 10px rgba(28,49,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(28,49,114,0); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .sp-hero-left,
  .sp-hero-right { animation: none; opacity: 1; transform: none; }
}

/* ══════════════════════════════════
   RESPONSIVE — Interior Pages
   ══════════════════════════════════ */

@media (max-width: 1024px) {
  .sp-overview-grid { gap: 40px; }
}

@media (max-width: 768px) {

  /* Hero */
  .sp-hero-full { padding: calc(60px + 16px) 12px 0; }
  .sp-hero-wrap { height: 280px; border-radius: 12px; }
  .sp-hero-h1 { font-size: 28px; letter-spacing: -0.5px; }
  .sp-hero-p { font-size: 14px; }
  .sp-hero-tag { font-size: 10px; }

  /* Overview */
  .sp-overview-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-ov-img { height: 240px; border-radius: 10px; }
  .sp-ov-stats { flex-direction: column; gap: 16px; }
  .sp-ov-stat { border-right: none; border-bottom: 1px solid #eee; padding-right: 0; padding-bottom: 16px; margin-right: 0; }
  .sp-ov-stat:last-child { border-bottom: none; padding-bottom: 0; }

  /* Vision Mission */
  .sp-vision-mission { grid-template-columns: 1fr; gap: 12px; }

  /* Why Choose */
  .sp-why-grid { grid-template-columns: 1fr 1fr; }
  .sp-why-card { padding: 24px 20px; }

  /* Process */
  .sp-process { padding: 48px 0; }
  .sp-process-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sp-process-card { padding: 24px 20px; border-radius: 14px; }
  .sp-process-line { display: none; }

  /* Services grid */
  .sp-tests-grid { grid-template-columns: 1fr; }
  .sp-test-item { border-right: none; }
  .sp-test-item:last-child { border-bottom: none; }

  /* Section headings */
  .sp-h2 { font-size: 26px; letter-spacing: -0.5px; }
  .sp-section-head { margin-bottom: 32px; }
}

@media (max-width: 480px) {

  /* Hero */
  .sp-hero-wrap { height: 240px; }
  .sp-hero-h1 { font-size: 24px; }

  /* Why Choose */
  .sp-why-grid { grid-template-columns: 1fr; }

  /* Process */
  .sp-process-cards { grid-template-columns: 1fr; }

  /* Certs */
  .sp-cert-row { flex-direction: column; }
  .sp-cert-badge { width: fit-content; }
}

/* Survey */
/* ── VISION MISSION ── */
.sp-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
}

.sp-vm-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1C3172;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sp-vm-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
}

/* ── CERTIFICATIONS ── */
.sp-certs {
  margin-top: 16px;
  padding: 20px;
  background: #F7F7F7;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
}

.sp-certs-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
  display: block;
}

.sp-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-cert-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1C3172;
  background: #ffffff;
  border: 1px solid #D0D8E8;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
}



/* ── services symbol ── */
.sp-test-item svg {
  transition: stroke 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.sp-test-item:hover svg {
  stroke: #1C3172;
  opacity: 1;
  transform: scale(1.2);
}

.sp-hero-full {
  padding: 72px 24px 0;
  background: #0A0F1E;
}

.sp-hero-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 580px;
}

.sp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sp-hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.70) 50%, rgba(10,15,30,0.50) 100%);
  z-index: 1;
}

.sp-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 56px;
  min-height: 520px;
}

.sp-hero-left {
  display: flex;
  flex-direction: column;
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

.sp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A84C;
  display: block;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.sp-hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.sp-hero-accent {
  color: #C9A84C;
  display: block;
}

.sp-hero-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.sp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: #1C3172;
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.sp-hero-btn-primary:hover {
  background: #C9A84C;
  color: #0A0F1E;
  transform: translateY(-2px);
}

.sp-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.sp-hero-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.sp-hero-right {
  display: flex;
  justify-content: flex-end;
}

.sp-hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
}

.sp-hero-photo-card {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.sp-hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-hero-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: block;
}

.sp-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.sp-hero-stat {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.sp-hero-stat:hover { background: rgba(255,255,255,0.08); }

.sp-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
}

.sp-hero-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sp-hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 50px;
}

@media (max-width: 900px) {
  .sp-hero-split { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
  .sp-hero-right { justify-content: flex-start; }
  .sp-hero-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .sp-hero-full { padding: 60px 12px 0; }
  .sp-hero-split { padding: 36px 20px; }
  .sp-hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .sp-hero-actions { flex-direction: column; }
  .sp-hero-btn-primary, .sp-hero-btn-outline { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════
   SURVEY WORKFLOW SECTION
   ══════════════════════════════════ */
.sp-workflow { background: #0A0F1E; }

.sp-workflow-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 220px;
}

.sp-workflow-photo {
  position: relative;
  overflow: hidden;
}

.sp-workflow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sp-workflow-photo:hover img { transform: scale(1.05); }

.sp-workflow-photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 4px;
}

.sp-workflow-dark {
  background: #0A0F1E;
  padding: clamp(48px, 6vw, 80px) 0;
}

.sp-workflow-head {
  text-align: center;
  margin-bottom: 56px;
}

.sp-label--gold { color: #C9A84C; }

.sp-workflow-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Steps with horizontal line */
.sp-workflow-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

.sp-workflow-line {
  position: absolute;
  top: 28px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 1px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}

.sp-workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.sp-ws-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.sp-ws-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: #C9A84C;
  color: #0A0F1E;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  line-height: 1;
}

.sp-ws-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
}

.sp-workflow-step:hover .sp-ws-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: #C9A84C;
}

.sp-workflow-step h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.sp-workflow-step p {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .sp-workflow-photos { grid-template-columns: repeat(2, 1fr); height: auto; }
  .sp-workflow-photo { height: 160px; }
  .sp-workflow-steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .sp-workflow-line { display: none; }
}

@media (max-width: 540px) {
  .sp-workflow-photos { grid-template-columns: 1fr 1fr; }
  .sp-workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ══════════════════════════════════════════
   ABOUT THIS SERVICE — Reference design
   White left, dark navy right card
   ══════════════════════════════════════════ */
.sp-about-service {
  background: #ffffff;
  padding: clamp(48px, 7vw, 96px) 0;
}

.sp-about-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Badge */
.sp-as-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #1C3172;
  background: #EBF3FB;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Heading */
.sp-as-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.sp-as-accent {
  color: #1565C0;
}

/* Gold underline */
.sp-as-underline {
  width: 48px;
  height: 3px;
  background: #e9b72f;
  border-radius: 2px;
  margin-bottom: 24px;
  display: block;
}

.sp-as-body {
  font-size: 14px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Checklist */
.sp-as-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.sp-as-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.sp-as-check {
  width: 22px;
  height: 22px;
  background: #1C3172;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Right dark card */
.sp-cap-card {
  background: #0F1D3D;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}

.sp-cap-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sp-cap-card-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #C9A84C;
}

.sp-cap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-cap-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-cap-item:last-child { border-bottom: none; }

.sp-cap-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-cap-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.sp-cap-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sp-about-service-grid { grid-template-columns: 1fr; gap: 32px; }
}



/* ══════════════════════════════════════════
   COMPREHENSIVE SERVICES — 3 cards
   Light grey bg, icon + title + desc + tags
   ══════════════════════════════════════════ */
.sp-comp-services {
  background: #F5F7FA;
  padding: clamp(48px, 7vw, 96px) 0;
}

.sp-cs-head {
  text-align: center;
  margin-bottom: 48px;
}

.sp-cs-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #1C3172;
  background: #EBF3FB;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.sp-cs-badge--dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.sp-cs-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.sp-cs-heading--light { color: #ffffff; }

.sp-cs-heading .sp-cs-accent {
 color: #1565C0;
}

.sp-cs-heading--light .sp-cs-accent {
  color: #C9A84C;
}

.sp-cs-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.sp-cs-sub--light { color: rgba(255,255,255,0.55); }

.sp-cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-cs-card {
  background: #ffffff;
  border: 1px solid #E8ECF4;
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sp-cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,21,35,0.10);
}

.sp-cs-card-img {
  margin: -28px -24px 20px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  height: 180px;
}

.sp-cs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sp-cs-card:hover .sp-cs-card-img img {
  transform: scale(1.05);
}

.sp-cs-icon {
  width: 48px;
  height: 48px;
  background: #0F1D3D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sp-cs-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sp-cs-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sp-cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sp-cs-tags span {
  font-size: 11px;
  font-weight: 500;
  color: #1C3172;
  background: #EBF3FB;
  border: 1px solid #D0DCF0;
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 768px) { .sp-cs-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════
   KEY DELIVERABLES — 4x2 grid
   Dark navy icon box
   ══════════════════════════════════════════ */
.sp-deliverables {
  background: #F5F7FA;
  padding: clamp(48px, 7vw, 96px) 0;
}

.sp-del-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sp-del-card {
  background: #ffffff;
  border: 1px solid #E8ECF4;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sp-del-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,21,35,0.08);
}

.sp-del-icon {
  width: 44px;
  height: 44px;
  background: #0F1D3D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-del-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 5px;
  line-height: 1.3;
}

.sp-del-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 900px) { .sp-del-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sp-del-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════
   WHERE WE APPLY IT — dark navy
   ══════════════════════════════════════════ */
.sp-applications {
  background: #162454;
  padding: clamp(48px, 7vw, 96px) 0;
}

.sp-app-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 0;
}

.sp-app-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.sp-app-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: #C9A84C;
  transform: translateY(-4px);
}

.sp-app-card:hover h4 {
  color: #C9A84C;
}

.sp-app-card:hover .sp-app-icon {
  background: rgba(201,168,76,0.2);
}

.sp-app-card:hover .sp-app-icon svg {
  stroke: #C9A84C;
}

.sp-app-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.sp-app-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-app-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* 5+3 layout — last 3 centered */
.sp-app-grid .sp-app-card:nth-child(6),
.sp-app-grid .sp-app-card:nth-child(7),
.sp-app-grid .sp-app-card:nth-child(8) {
  grid-column: auto;
}

@media (max-width: 900px) {
  .sp-app-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .sp-app-grid { grid-template-columns: repeat(2, 1fr); }
}

.sp-cs-grid--wide {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .sp-cs-grid--wide { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sp-cs-grid--wide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sp-cs-grid--wide { grid-template-columns: 1fr; }
}




/* ══════════════════════════════════════
   SERVICE PAGE HERO — Reusable
   Used across all 12 service pages
══════════════════════════════════════ */

.sp-hero-full {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.sp-hero-wrap {
  position: absolute;
  inset: 0;
}

.sp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,35,66,0.92) 0%,
    rgba(10,35,66,0.75) 45%,
    rgba(10,35,66,0.3) 100%
  );
}

.sp-hero-split {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(72px + 48px) 64px 48px;
  display: flex;
  align-items: flex-end;
}

.sp-hero-left {
  max-width: 580px;
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4AF37;
  animation: heroDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.sp-hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
  animation: vcFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.sp-hero-accent { color: #D4AF37; }

.sp-hero-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
  animation: vcFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}

.sp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: vcFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.sp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #D4AF37;
  color: #0A2342;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.sp-hero-btn-primary:hover {
  background: #E2C94A;
  transform: translateY(-2px);
}

.sp-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.sp-hero-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .sp-hero-full { height: 480px; }
  .sp-hero-split { padding: 100px 20px 32px; }
  .sp-hero-h1 { font-size: clamp(28px, 8vw, 44px); }
  .sp-hero-actions { flex-direction: column; }
}




/* ==========================================================================
   UNIVERSAL HERO SECTION (Velciti Standard)
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, #0A2342 0%, #1D4E89 100%);
  padding: calc(72px + 72px) 64px 72px;
  position: relative;
  overflow: hidden;
}

/* Ambient Background Lights */
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; 
  right: -200px;
  width: 600px; 
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; 
  left: 40%;
  width: 400px; 
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4AF37;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.page-hero-title span { 
  color: #D4AF37; 
}

.page-hero-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 560px;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.page-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.page-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.page-hero-stat-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .page-hero { padding: 100px 20px 48px; }
  .page-hero-stats { gap: 24px; flex-wrap: wrap; }
}



/* Card Header Container for Top Image */
.cr-card-img-header {
  position: relative;
  width: 100%;
  height: 220px;
  background: #F8FAFC;
  border-bottom: 1px solid #E8ECF4;
  overflow: hidden;
}

/* Badge overlay on top of image */
.cr-card-img-header .cr-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(10, 35, 66, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cr-card-img-header .cr-card-badge svg {
  width: 12px;
  height: 12px;
  fill: #D4AF37;
}

/* Certificate Image */
.cr-card-top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.cr-card:hover .cr-card-top-img {
  transform: scale(1.05);
}

/* Typography Adjustments Below Image */
.cr-card-cert-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 4px;
}

.cr-card-cert-sub {
  font-size: 12px;
  color: #1565C0;
  font-weight: 600;
  margin-bottom: 16px;
}


/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — Interior / Service Pages
   Added for: 1920 / 1440 / 1280 / 1024 / 768 / 390 / 375
   Covers the shared sp-* service-page template
   (used across all pages/services/*.html pages)
   plus the shared .page-hero and .cr-card-* partials.
   These supplement the media queries above —
   nothing above is removed.
   ══════════════════════════════════════════ */

/* ── 1920px+ — Large Desktop ── */
@media (min-width: 1920px) {
  .sp-container,
  .page-hero-inner { max-width: 1400px; }

  .sp-hero-full,
  .sp-hero-wrap { min-height: 600px; }

  .sp-hero-h1,
  .page-hero-title { font-size: clamp(56px, 4.6vw, 96px); }

  .sp-cs-grid,
  .sp-cs-grid--wide,
  .sp-del-grid,
  .sp-app-grid,
  .sp-why-grid,
  .sp-process-cards { gap: 32px; }

  .sp-about-service-grid,
  .sp-cta-grid { gap: 80px; }
}

/* ── 1440px — Desktop (baseline reinforcement) ── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .sp-container,
  .page-hero-inner { max-width: 1200px; }

  .sp-cs-grid,
  .sp-cs-grid--wide,
  .sp-del-grid,
  .sp-app-grid,
  .sp-why-grid,
  .sp-process-cards { gap: 24px; }
}

/* ── 1280px — Laptop ── */
@media (max-width: 1280px) {
  .sp-container { max-width: 1100px; }

  .sp-hero-split { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding-left: 40px; padding-right: 40px; }

  .sp-hero-h1,
  .page-hero-title { font-size: clamp(34px, 4.5vw, 58px); }
}

/* ── 1024px — Tablet Landscape ── */
@media (max-width: 1024px) {
  .sp-cs-grid--wide { grid-template-columns: repeat(2, 1fr); }
  .sp-del-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-app-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-cards { grid-template-columns: repeat(2, 1fr); }
  .sp-about-service-grid { gap: 40px; }

  .sp-hero-split,
  .page-hero { padding-left: 32px; padding-right: 32px; }

  .sp-hero-h1,
  .page-hero-title { font-size: clamp(30px, 4vw, 50px); }

  .page-hero-stats { gap: 32px; }
}

/* ── 768px — Tablet Portrait ── */
@media (max-width: 768px) {
  .sp-cs-grid,
  .sp-cs-grid--wide,
  .sp-del-grid,
  .sp-app-grid,
  .sp-why-grid,
  .sp-process-cards,
  .sp-tests-grid { grid-template-columns: 1fr; }

  .sp-about-service-grid,
  .sp-cta-grid,
  .sp-overview-grid { grid-template-columns: 1fr; }

  .sp-hero-split,
  .page-hero { padding-left: 24px; padding-right: 24px; }

  .sp-hero-h1,
  .page-hero-title { font-size: 44px; }

  .sp-hero-p,
  .page-hero-sub,
  .sp-cs-card p,
  .sp-del-card p,
  .sp-app-card p,
  .sp-cta-sub { font-size: 14px; line-height: 1.6; }

  .sp-hero-btn-primary,
  .sp-hero-btn-outline,
  .sp-cta-btn-primary,
  .sp-cta-btn-outline { min-height: 44px; }

  .page-hero-stats { flex-wrap: wrap; gap: 24px; }
}

/* ── 390px / 375px — Mobile ── */
@media (max-width: 390px) {
  .sp-container { padding: 0 16px; }

  .sp-hero-full { padding-top: 80px; }
  .sp-hero-split { padding: 16px; padding-top: 24px; }
  .page-hero { padding: 80px 16px 40px; }

  .sp-hero-h1,
  .page-hero-title { font-size: 32px; letter-spacing: -0.5px; }

  .sp-hero-actions,
  .sp-cta-right { flex-direction: column; align-items: stretch; }

  .sp-hero-btn-primary,
  .sp-hero-btn-outline,
  .sp-cta-btn-primary,
  .sp-cta-btn-outline { width: 100%; min-height: 44px; }

  .sp-cs-grid,
  .sp-cs-grid--wide,
  .sp-del-grid,
  .sp-app-grid,
  .sp-why-grid,
  .sp-process-cards,
  .sp-workflow-photos,
  .sp-workflow-steps,
  .sp-vision-mission { grid-template-columns: 1fr; }

  .sp-cta-contact { flex-direction: column; align-items: flex-start; gap: 12px; }

  .page-hero-stats { flex-direction: column; gap: 16px; }
  .sp-cert-row { flex-direction: column; }
}