
/* Services Pages Styles - Premium 21st.dev Concept */
.pg-hero {
  padding: 8rem 0 5rem;
  background: var(--n950);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(29,158,117,0.4), transparent);
}
.pg-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.pg-hero__h {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.035em; word-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.pg-hero__sub {
  font-family: var(--fb);
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0 auto;
  font-weight: 400;
}
.title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--t300) 0%, var(--t400) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bento Services Layout */
.svc-bento-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--g100);
  background: var(--wh);
}
.svc-bento-section:nth-of-type(even) {
  background: var(--cream);
}
.svc-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-bento-section:nth-of-type(even) .svc-bento-text {
  order: 2;
}
.svc-bento-section:nth-of-type(even) .svc-bento-visual {
  order: 1;
}

.svc-bento-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.svc-bento-text h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--n900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.svc-bento-text p {
  font-family: var(--fb);
  font-size: 1.1rem;
  color: var(--g600);
  line-height: 1.75;
}
.svc-bento-acts {
  margin-top: 1rem;
}

/* Placeholder for Images */
.svc-bento-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r2xl);
  overflow: hidden;
  box-shadow: var(--shlg);
  border: 1px solid rgba(0,0,0,0.05);
  background: linear-gradient(135deg, var(--g100) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--spring), box-shadow var(--ease);
}
.svc-bento-visual:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(29,158,117,0.15);
}

.svc-placeholder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.sp-icon {
  width: 64px;
  height: 64px;
  background: var(--wh);
  border-radius: var(--rful);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shsm);
  color: var(--t400);
}
.sp-text {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--g400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Glassmorphism accents on placeholder */
.svc-bento-visual::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(29,158,117,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.svc-bento-visual::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(29,158,117,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

@media (max-width: 960px) {
  .svc-bento-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .svc-bento-section:nth-of-type(even) .svc-bento-text {
    order: 1;
  }
  .svc-bento-section:nth-of-type(even) .svc-bento-visual {
    order: 2;
  }
  .svc-bento-section {
    padding: 4rem 0;
  }
}
