/* =========================================
   SERVICES PAGE — Full Redesign
   ========================================= */

/* ---- NAV ACTIVE STATE ---- */
nav ul a.active {
  color: var(--accent);
}

/* =========================================
   HERO — Full viewport, ambient glows, gradient text
   ========================================= */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
  min-height: 100vh; /* Fallback */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
  background: var(--bg-primary);
  max-width: none;
}

.services-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  top: 15%;
  left: -10%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.services-hero-glow--2 {
  background: radial-gradient(circle, rgba(0, 180, 217, 0.06) 0%, transparent 70%);
  top: auto;
  left: auto;
  bottom: 10%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes heroGlow {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.15); }
}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.services-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 60%, #0088cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero-sub {
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* Hero nav pills */
.services-hero-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-nav-link {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-nav-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: hintBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   OVERVIEW GRID — At-a-glance service cards
   ========================================= */
.services-overview {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  max-width: 100%;
}

.services-overview .overview-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.overview-pillar {
  display: block;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.overview-pillar:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.08);
}

.overview-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 0.75rem;
  transition: opacity 0.3s ease;
}

.overview-pillar:hover .overview-number {
  opacity: 0.7;
}

.overview-pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.overview-pillar p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.overview-spec {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

/* =========================================
   SERVICE TAG (shared)
   ========================================= */
.service-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* =========================================
   SERVICE BLOCK — Full-width alternating sections
   ========================================= */
.service-block {
  width: 100%;
  max-width: none;
}

.service-block--dark {
  background: var(--bg-secondary);
}

.service-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

/* Accent left stripe on each block */
.service-block-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5rem;
  bottom: 5rem;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.2;
  border-radius: 2px;
}

.service-block--video .service-block-inner {
  grid-template-columns: 1fr 1.2fr;
}

/* ---- Left content ---- */
.service-block-left {
  position: relative;
}

.service-number {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: -1.5rem;
  letter-spacing: -2px;
  user-select: none;
}

.service-block-left h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.service-block-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Specs mini */
.service-specs-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.spec-block-mini {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.service-block--dark .spec-block-mini {
  background: rgba(0, 0, 0, 0.2);
}

.spec-block-mini h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.spec-block-mini p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-cards--stacked {
  grid-template-columns: 1fr;
}

.service-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  border-left-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 212, 255, 0.06);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Right visual area */
.service-block-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Visual wrapper — unified container for all service visuals */
.service-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.service-visual-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* =========================================
   SERVICE TAG PILLS
   ========================================= */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: default;
}

.service-tag-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}

/* =========================================
   WAVEFORM (Mastering)
   ========================================= */
.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  padding: 2rem;
  width: 100%;
}

.waveform span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: waveform 1.2s ease-in-out infinite;
  opacity: 0.6;
}

.waveform span:nth-child(1)  { height: 20px;  animation-delay: 0.00s; }
.waveform span:nth-child(2)  { height: 35px;  animation-delay: 0.05s; }
.waveform span:nth-child(3)  { height: 55px;  animation-delay: 0.10s; }
.waveform span:nth-child(4)  { height: 40px;  animation-delay: 0.15s; }
.waveform span:nth-child(5)  { height: 70px;  animation-delay: 0.20s; }
.waveform span:nth-child(6)  { height: 90px;  animation-delay: 0.25s; }
.waveform span:nth-child(7)  { height: 60px;  animation-delay: 0.30s; }
.waveform span:nth-child(8)  { height: 100px; animation-delay: 0.35s; }
.waveform span:nth-child(9)  { height: 75px;  animation-delay: 0.40s; }
.waveform span:nth-child(10) { height: 115px; animation-delay: 0.45s; }
.waveform span:nth-child(11) { height: 95px;  animation-delay: 0.50s; }
.waveform span:nth-child(12) { height: 130px; animation-delay: 0.55s; }
.waveform span:nth-child(13) { height: 110px; animation-delay: 0.60s; }
.waveform span:nth-child(14) { height: 80px;  animation-delay: 0.65s; }
.waveform span:nth-child(15) { height: 120px; animation-delay: 0.70s; }
.waveform span:nth-child(16) { height: 65px;  animation-delay: 0.75s; }
.waveform span:nth-child(17) { height: 100px; animation-delay: 0.80s; }
.waveform span:nth-child(18) { height: 50px;  animation-delay: 0.85s; }
.waveform span:nth-child(19) { height: 85px;  animation-delay: 0.90s; }
.waveform span:nth-child(20) { height: 35px;  animation-delay: 0.95s; }
.waveform span:nth-child(21) { height: 70px;  animation-delay: 1.00s; }
.waveform span:nth-child(22) { height: 25px;  animation-delay: 1.05s; }
.waveform span:nth-child(23) { height: 55px;  animation-delay: 1.10s; }
.waveform span:nth-child(24) { height: 30px;  animation-delay: 1.15s; }
.waveform span:nth-child(25) { height: 15px;  animation-delay: 1.20s; }

@keyframes waveform {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(0.35); opacity: 1; }
}

/* =========================================
   CAMERA VIEWFINDER (Video Production)
   ========================================= */
.camera-viewfinder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.viewfinder-frame {
  position: relative;
  width: 240px;
  height: 150px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: visible;
}

.vf-bracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.8;
}

.vf-bracket--tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.vf-bracket--tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.vf-bracket--bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.vf-bracket--br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }

.vf-focus-sq {
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 2px;
}

.vf-focus-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  animation: focus-breathe 3s ease-in-out infinite;
}

@keyframes focus-breathe {
  0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.85; transform: translate(-50%, -50%) scale(1.5); }
}

.vf-rec {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: 1.5px;
  color: #ff3b30;
}

.vf-rec-dot {
  width: 6px; height: 6px;
  background: #ff3b30;
  border-radius: 50%;
  animation: rec-blink 1s ease-in-out infinite;
}

@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.15; }
}

.vf-timecode {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 0.55rem;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
}

.vf-grid-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

.vf-grid--h1 { top: 33.33%; left: 0; right: 0; height: 1px; }
.vf-grid--h2 { top: 66.66%; left: 0; right: 0; height: 1px; }
.vf-grid--v1 { left: 33.33%; top: 0; bottom: 0; width: 1px; }
.vf-grid--v2 { left: 66.66%; top: 0; bottom: 0; width: 1px; }

/* =========================================
   MIC VISUAL (Podcast)
   ========================================= */
.mic-visual-inline {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mic-icon {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.wave-ring {
  position: absolute;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  animation: wave-expand 2.5s ease-out infinite;
  opacity: 0;
}

.wave-ring--1 { width: 45px; height: 45px; animation-delay: 0s; }
.wave-ring--2 { width: 65px; height: 65px; animation-delay: 0.5s; }
.wave-ring--3 { width: 85px; height: 85px; animation-delay: 1s; }

@keyframes wave-expand {
  0%   { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

/* =========================================
   SURROUND VISUAL (Mixing — Dolby Atmos 9.1.4)
   ========================================= */
.surround-visual {
  position: relative;
  width: 280px;
  height: 280px;
  perspective: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(25deg);
}

.surround-speaker {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.surround-speaker:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(255, 215, 80, 0.2);
  transform: translate(-50%, -50%) scale(1.15);
}

.surround-floor .s-fl { top: 76%; left: 36%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.0s; }
.surround-floor .s-c  { top: 76%; left: 50%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.1s; }
.surround-floor .s-fr { top: 76%; left: 64%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.2s; }
.surround-floor .s-lw { top: 84%; left: 14%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.05s; }
.surround-floor .s-rw { top: 84%; left: 86%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.15s; }
.surround-floor .s-ls { top: 54%; left: 14%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.3s; }
.surround-floor .s-rs { top: 54%; left: 86%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.4s; }
.surround-floor .s-rl { top: 16%; left: 26%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.5s; }
.surround-floor .s-rr { top: 16%; left: 74%; animation: speaker-pulse-floor 5s ease-in-out infinite 0.6s; }

.surround-height .surround-speaker {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-secondary);
  box-shadow: 0 0 12px rgba(255, 215, 80, 0.1);
}

.surround-height .s-tfl { top: 58%; left: 30%; animation: speaker-pulse-height 5s ease-in-out infinite 0.2s; }
.surround-height .s-tfr { top: 58%; left: 70%; animation: speaker-pulse-height 5s ease-in-out infinite 0.3s; }
.surround-height .s-trl { top: 34%; left: 30%; animation: speaker-pulse-height 5s ease-in-out infinite 0.5s; }
.surround-height .s-trr { top: 34%; left: 70%; animation: speaker-pulse-height 5s ease-in-out infinite 0.6s; }

.surround-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

.s-line {
  stroke: var(--accent);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}

.surround-waves {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.surround-wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: wave-expand-visual 5s ease-out infinite;
}

.surround-wave:nth-child(1) { animation-delay: 0s; }
.surround-wave:nth-child(2) { animation-delay: 1.25s; }
.surround-wave:nth-child(3) { animation-delay: 2.5s; }
.surround-wave:nth-child(4) { animation-delay: 3.75s; }

@keyframes wave-expand-visual {
  0%   { transform: scale(0.2); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

.surround-center-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 4;
  box-shadow: 0 0 25px rgba(255, 215, 80, 0.08), 0 0 50px rgba(255, 215, 80, 0.04);
  animation: orb-breathe 4s ease-in-out infinite;
}

.surround-center-orb span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent);
}

@keyframes orb-breathe {
  0%, 100% { box-shadow: 0 0 25px rgba(255, 215, 80, 0.08), 0 0 50px rgba(255, 215, 80, 0.04); }
  50%      { box-shadow: 0 0 40px rgba(255, 215, 80, 0.15), 0 0 80px rgba(255, 215, 80, 0.08); }
}

@keyframes speaker-pulse-floor {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes speaker-pulse-height {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.12); }
}

/* =========================================
   CTA
   ========================================= */
.service-cta {
  text-align: center;
  padding: 7rem 2rem 10rem;
  max-width: 100%;
  position: relative;
}

.service-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.service-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-cta h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -1px;
  line-height: 1.1;
}

.service-cta h2::after {
  display: none;
}

.service-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .service-block-inner,
  .service-block--video .service-block-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .service-block-inner::before {
    display: none;
  }

  .service-specs-mini {
    grid-template-columns: 1fr;
  }

  .service-block-right {
    order: -1;
  }

  .service-visual-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .surround-visual {
    width: 260px;
    height: 260px;
  }

  .services-overview .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero h1 {
    letter-spacing: -2px;
  }

  .service-number {
    font-size: 3.5rem;
    margin-bottom: -1rem;
  }

  .service-block-left h2 {
    font-size: 2.25rem;
  }

  .service-cta h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 600px) {
  .services-hero-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-nav-link {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .services-overview .overview-grid {
    grid-template-columns: 1fr;
  }

  .service-block-inner {
    padding: 4rem 1.5rem;
  }

  .service-number {
    font-size: 3rem;
  }

  .service-block-left h2 {
    font-size: 1.85rem;
  }

  .service-cards,
  .service-cards--stacked {
    grid-template-columns: 1fr;
  }

  .service-visual-wrap {
    max-width: 260px;
  }

  .surround-visual {
    width: 220px;
    height: 220px;
  }

  .scroll-indicator {
    display: none;
  }

  .service-cta {
    padding: 5rem 1.5rem 7rem;
  }

  .service-cta h2 {
    font-size: 1.85rem;
  }
}
