* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.service-container {
  padding: 60px 0;
  background: var(--bg-100);
}

.service-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.service-title p {
  font-size: 16px;
  font-weight: normal;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e0e0e0;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
}

.icon-wrapper span {
  font-size: 36px;
}

.service-name {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 18px;
}

.service-description {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  word-break: keep-all;
  min-height: 50px;
}

.benefit-section {
  background: #f8f9ff;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #4a5fc1;
  margin-bottom: 15px;
  text-align: left;
}

.benefit-list {
  list-style: none;
}

.benefit-item {
  font-size: 14px;
  color: #495057;
  margin-bottom: 3px;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.benefit-item:before {
  content: "•";
  position: absolute;
  top: -3px;
  left: 0;
  color: #4a5fc1;
  font-weight: bold;
  font-size: 16px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .package-card {
    position: relative;
  }

  .package-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    font-size: 11px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-name {
    font-size: 22px;
  }
}

.package-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}

.package-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 60px;
}

.package-title p {
  font-size: 16px;
  font-weight: normal;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(50% - 20px), 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.package-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
}

.package-card .package-title {
  text-align: center;
  color: #444;
  letter-spacing: -0.06em;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.package-card .package-title p {
  font-size: 16px;
  font-weight: normal;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.product-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.product-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.product-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.product-name {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.product-note {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

.arrow {
  color: #fff;
  width: 20px;
  height: 20px;
  background: #333;
  font-size: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.price-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.price-label {
  font-size: 17px;
  color: #222;
  text-align: center;
  font-weight: 600;
}

.price-wrapper {
  font-family: "Montserrat", "Noto Sans KR", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.original-price {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.arrow-icon {
  color: #222;
  font-size: 18px;
}

.final-price {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 700;
}

.cta-button {
  width: 100%;
  background: linear-gradient(135deg, #5b65ff 0%, #3c48ff 100%);

  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 101, 255, 0.3);
}

.full-width-card {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .full-width-card {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .package-card {
    padding: 25px;
  }

  .package-title {
    font-size: 22px;
  }

  .product-flow {
    row-gap: 10px;
    margin-bottom: 20px;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .final-price {
    font-size: 18px;
  }

  .package-card .package-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .cta-button {
    font-size: 14px;
  }
}
