/* ============================================
   VALUMO DIGITAL — Services Page Styles
   ============================================ */

/* --- HERO --- */
.services-hero {
  background: #111;
  padding: calc(var(--nav-h) + 80px) 0 100px;
}

.services-headline {
  font-family: var(--font-main);
  font-size: var(--size-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #f5f5f0;
  margin-bottom: 32px;
  max-width: 700px;
}

.services-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,245,240,0.55);
  max-width: 520px;
}

/* --- SERVICE SECTIONS --- */
.service-section {
  padding: var(--section-pad) 0;
}

.service-section--light {
  background: #fafaf8;
  color: #1a1a1a;
}

.service-section--dark {
  background: #111;
  color: #f5f5f0;
}

.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.service-header {
  padding-top: 6px;
}

.service-section--light .service-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 16px;
}

.service-section--dark .service-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-main);
  font-size: var(--size-h2);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.service-lead {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-section--light .service-lead {
  color: #1a1a1a;
}

.service-section--dark .service-lead {
  color: #f5f5f0;
}

.service-body p {
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-section--light .service-body p {
  color: #1a1a1a;
}

.service-section--dark .service-body p {
  color: #f5f5f0;
}

.service-body strong {
  font-weight: 600;
}

.service-section--light .service-body strong {
  color: #1a1a1a;
}

.service-section--dark .service-body strong {
  color: #f5f5f0;
}

/* --- TAGS --- */
.service-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.service-tag {
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 18px 18px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border: 1px solid;
  border-radius: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.service-tag.tag-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-section--light .service-tag {
  background: linear-gradient(180deg, #ffffff 0%, #f4f2ee 100%);
  border-color: rgba(26, 26, 26, 0.12);
  color: #1a1a1a;
}

.service-section--dark .service-tag {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96) 0%, rgba(17, 17, 17, 0.98) 100%);
  border-color: rgba(245,245,240,0.18);
  color: #f5f5f0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
} 

/* --- CTA --- */
.services-cta {
  background: #111;
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(245,245,240,0.08);
}

.cta-inner {
  max-width: 560px;
}

.cta-headline {
  font-family: var(--font-main);
  font-size: var(--size-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #f5f5f0;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,245,240,0.5);
  margin-bottom: 48px;
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 860px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .service-tags {
    grid-template-columns: 1fr;
  }

  .service-tag {
    width: 100%;
    box-sizing: border-box;
    min-height: 90px;
  }
}
