/* =====================================
   SERVICES
===================================== */


/* ========= HERO ========= */

.services-hero {
  text-align: center;
  max-width: 620px;
  margin: 160px auto 120px;
  padding: 0 30px;
}

.services-hero h1 {
  font-family: var(--font-secondary);
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}


/* ========= INTRO ========= */

.services-intro {
  max-width: 620px;
  margin: 0 auto 80px;
  padding: 0 30px;
}

.services-intro p {
  margin-bottom: 40px;
  line-height: 1.9;
  color: #444;
}


/* ========= BLOCK ========= */

.services-block {
  max-width: 620px;
  margin: 90px auto;
  padding: 0 30px;
}

.services-block h2 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.stage-number {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}


/* ========= LIST ========= */

.services-block ul {
  list-style: none;
  padding: 0;
}

.services-block li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.services-block li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ccc;
}


/* ========= CLOSURE ========= */

.services-closure {
  max-width: 620px;
  margin: 200px auto 180px;
  padding: 0 30px;
  text-align: center;
}

.services-closure p {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  line-height: 1.5;
}


/* ========= UPDATE ========= */

.services-update {
  text-align: center;
  margin: 0 auto 60px;
}


/* =====================================
   SERVICES NAV
===================================== */

.services-nav {
  text-align: center;
  margin: 60px auto 100px;
}

.services-nav a {
  display: inline-block;
  text-decoration: none;
  color: #777;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 18px;
  position: relative;
  transition: color 0.3s ease;
}

.services-nav a:hover {
  color: #111;
}

.services-nav a.active {
  color: #111;
}

.services-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #111;
}


/* ========= MOBILE ========= */

@media (max-width: 600px) {

  .services-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .services-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  .services-nav a.active::after{
width:40px;
left:50%;
transform:translateX(-50%);
}

}

