/* ✅ 섹션 전체 */
.service-section {
  width: 100%;
  padding: 120px 16px;
  background: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

/* ✅ 텍스트 */
.service-section h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1900ff, #180e50);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.service-section p {
  color: #5a6781;
  font-size: 1.4rem;
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ✅ 카드 그리드 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ✅ 공통 카드 스타일 */
.service-card {
  border-radius: 20px;
  min-height: 220px;
  padding: 40px 30px;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 40px rgba(0, 16, 114, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 16, 114, 0.15);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover::after {
  opacity: 0.2;
}

/* ✅ 텍스트 정리 */
.service-card .label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 6px;
  display: block;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ✅ 카드별 배경색 */
.card-resume {
  background: linear-gradient(135deg, #2d3bf0, #0a1691);
}
.card-interview {
  background: linear-gradient(135deg, #2b79e4, #0a4ca6);
}
.card-package {
  background: linear-gradient(135deg, #5734db, #2c1278);
}

/* ✅ 도형 공통 */
.shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.service-card:hover .shape {
  transform: scale(1.1) rotate(5deg);
}

.service-card span,
.service-card h3 {
  position: relative;
  z-index: 1;
}

/* ✅ 자소서 원형 2개 */
.circle-1 {
  top: 30px;
  right: 30px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(0deg);
}

.circle-2 {
  bottom: 40px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

/* ✅ 면접 - 사각형 2개 */
.square-1 {
  bottom: 40px;
  left: -10px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  border-radius: 12px;
}
.square-2 {
  top: 20px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-15deg);
  border-radius: 8px;
}

/* ✅ 패키지 - 삼각형 2개 */
.triangle-1 {
  top: 25px;
  right: 40px;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 120px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-15deg);
}

.triangle-2 {
  bottom: 30px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
}

/* 반응형 */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-section h2 {
    font-size: 2.6rem;
  }
  
  .service-section p {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }
}
  
  
  
  
  