/* ================================
   SERVICES PAGE
================================ */

.services-page .section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ---------- HERO ---------- */

.hero-services {
  min-height: 70vh; 
  display: flex; 
  align-items: center;
}

.hero-services .hero-inner {
  max-width: 900px;
}

.hero-services .hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-services .hero-subtitle {
  font-size: 1.25rem;
  max-width: 720px;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ---------- SERVICES CARDS ---------- */

.services-cards .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.25rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.service-card h3 {
  margin-bottom: .75rem;
}

.service-card p {
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.service-card a {
  font-weight: 600;
  text-decoration: none;
}

/* ---------- PROCESS ---------- */

.services-process .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.15;
  display: block;
  margin-bottom: .5rem;
}

/* ---------- FIT SECTION ---------- */

.services-fit .fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.fit-good,
.fit-bad {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 1.6rem;
}

.services-fit h3 {
  margin-bottom: 1rem;
}

.services-fit ul {
  list-style: none;
  padding: 0;
}

.services-fit li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .75rem;
  opacity: .85;
}

.services-fit li::before {
  content: "—";
  position: absolute;
  left: 0;
}

/* ---------- WORK GRID ---------- */

.services-work-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 760px) {
  .services-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .services-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.portfolio-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
}

.portfolio-card img {
  border-radius: 12px;
  margin-bottom: .75rem;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.portfolio-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- CTA ---------- */

.cta-primary {
  text-align: center;
}

.cta-primary h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-primary p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* ---------- BUTTONS (if not global) ---------- */

.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all .25s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.center {
  text-align: center;
  margin-top: 2rem;
}
