#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999; /* 모달보다 위에 뜨도록 아주 높은 값 */
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* 알림 박스 기본 스타일 */
  .custom-toast {
    min-width: 300px;
    max-width: 400px;
    padding: 26px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    animation: slideInRight 0.3s ease-out forwards;
    opacity: 0;
    transform: translateX(100%);
    cursor: pointer;
  }

  /* 알림 타입별 색상 */
  .custom-toast.error {
    background-color: #f73535; /* 보여주신 이미지와 비슷한 빨간색 */
    border-left: 5px solid #f73535;
  }
  .custom-toast.success {
    background-color: #2e7d32; /* 성공 시 초록색 */
    border-left: 5px solid #2e7d32;
  }
  .custom-toast.info {
    background-color: #333; /* 일반 알림 */
    border-left: 5px solid #000;
  }

  /* 닫기 버튼 */
  .toast-close {
    margin-left: 15px;
    font-size: 18px;
    font-weight: bold;
    opacity: 0.7;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
  }
  .toast-close:hover { opacity: 1; }

  /* 애니메이션 */
  @keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  @keyframes fadeOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
  }
.photo_tip_wrap {
  border: 1px solid #eee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
}

.photo_tip_wrap_p{
  display: block !important;
}

.photo_tip {
  font-size: 13px;
  font-family: 'Noto_L';
  color: #747474;
  line-height: 20px;
  margin: 20px 0;
}

.crop_tip_btn {
  color: #2f2f2f;
  background: #fffcf4;
  border: 1px solid #ffe28a;
  font-size: 12px;
  font-family: 'Noto_L';
  padding: 5px 15px;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}

.photo_tip_crop {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  margin: 0 auto;
  gap: 10px;
}

.photo_tip_crop li {
  overflow: hidden;
  position: relative;
}

.photo_tip_crop li img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.photo_tip_crop li span {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fffcf4;
  border: 1px solid #ffe28a;
  padding: 5px;
  font-size: 11px;
  font-family: 'Noto_R';
  border-radius: 5px;
}

.group_content {
  width: 100%;
  padding-bottom: 0;
  border-bottom: 1px solid #e4e4e4;
}

.group_content .inner {
  width: 100%;
  margin: 0 auto;
}

/* HERO */
.group_content .top {
  display: block;
  width: 1480px;
  height: 760px;
  margin: 0 auto;
  background: #303030;
  background-image: url('/img/newAI.png');
  background-position: left;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  border-radius: 10px;
}

.group_content .top .inner {
  height: 100%;
  position: relative;
  border-radius: 70px;
}

.group_content .top .text_box {
  position: absolute;
  right: 0;
  top: 90px;
  text-align: left;
  width: 480px;
  color: #fff;
  z-index: 2;
}

.group_content .top .text_box h2 {
  font-size: 35px;
  margin: 0;
  color: #fff;
  font-family: 'Pre-R';
}

.group_content .top .text_box p {
  font-size: 17px;
  font-family: 'Pre-R';
  margin: 28px 0 0;
  color: #fff;
}

.group_content .top .text_box .desc {
  display: block;
  font-size: 14px;
  line-height: 25px;
  margin-top: 16px;
  color: #fff;
}

.group_content .top .text_box .desc b {
  color: #fff;
  font-size: 17px;
}

.group_content .top .text_box .import {
  background: #ffe28a;
  color: #2f2f2f;
  padding: 3px 6px;
  border-radius: 2px;
  display: inline-block;
  font-size: 13px;
}

.group_content .top .text_box .import font:nth-child(1) {
  font-family: 'Pre-B';
  font-size: 14px;
}

.group_content .top .text_box .import font:nth-child(3) {
  font-family: 'Pre-B';
  font-size: 11px;
}

.group_content .top .text_box .import font:nth-child(5) {
  font-family: 'Pre-B';
}

.hero_btns {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.btn_primary, .btn_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Noto_M';
  text-decoration: none;
}

.btn_primary {
  background: #ffe28a;
  color: #2f2f2f;
}

.btn_ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero-video {
  position: absolute;
  width: 340px;
  height: auto;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  bottom: 10px;
  right: 140px;
  border-radius: 10px;
}

.h2_1 {
  font-size: 25px;
  color: #333;
  font-family: 'Noto_B';
  margin: 110px 0;
  text-align: center;
}

.h1_1 {
  font-size: 25px;
  color: #333;
  font-family: 'Pre-R';
}

.info_ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  gap: 30px;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.info_ul>li.media_li {
  position: relative;
  width: 540px;
  height: 340px;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.info_ul>li.media_li .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.info_ul>li.media_li .cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity .85s ease;
}

.info_ul>li.media_li:hover .cover-img {
  opacity: 0;
}

.media_badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  background: rgba(48, 48, 48, .75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Noto_M';
}

.info_ul .text_li {
  width: 540px;
}

.info_ai {
  width: 540px;
  margin: 0 auto;
  padding-left: 50px;
}

.info_ul h2 {
  font-size: 18px;
  font-family: 'Pre-R';
  text-align: left;
  margin: 0;
}

.info_ul p {
  font-size: 15px;
  font-family: 'Pre-R';
  text-align: left;
  line-height: 26px;
  color: #565656;
  margin-top: 14px;
}

.ai_make {
  padding: 0;
  background: #fff;
}

.ai_make_p {
  padding: 0px 0 0;
}

.ai_make_head {
  padding: 0 20px;
  margin: 80px 0;
  text-align: center;
}

.ai_make_head_p {
  margin: 40px 0;
}

.ai_make_head h2 {
  font-size: 26px;
  font-family: 'Pre-R';
  color: #2f2f2f;
  margin: 0 0 10px;
}

.ai_make_head p {
  font-size: 15px;
  font-family: 'Pre-R';
  color: #565656;
  margin: 0;
  margin-top: 15px;
  line-height: 25px;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  color: #2f2f2f;
  font-size: 13px;
  margin-left: 8px;
  background: #fffcf4;
  border: 1px solid #ffe28a;
}

.pill_dark {
  background: #303030;
  color: #fff;
}

.ai_make_grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 20px;
  width: 1500px;
  margin: 0 auto;
}

.ai_card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.ai_card h3 {
  text-align: center;
  font-size: 18px;
  font-family: 'Pre-R';
  color: #2f2f2f;
  margin: 0 0 30px;
}

.ai_card .desc {
  font-size: 14px;
  font-family: 'Pre-R';
  color: #6a6a6a;
  margin: 0 0 16px;
  line-height: 22px;
  display: none;
}

.upload_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px dashed #cfcfcf;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
}

.upload_left .big {
  font-size: 15px;
  font-family: 'Noto_M';
  color: #2f2f2f;
  margin: 0 0 6px;
}

.upload_left .small {
  font-size: 13px;
  font-family: 'Noto_R';
  color: #7a7a7a;
  margin: 0;
}

.upload_right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn_upload, .btn_go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Noto_M';
  cursor: pointer;
  text-decoration: none;
}

.btn_upload {
  background: #303030;
  color: #fff;
}

.btn_upload input {
  display: none;
}

.btn_go {
  background: #ffe28a;
  color: #2f2f2f;
}

.ai_tip {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f2f3f7;
}

.ai_tip p {
  margin: 0;
  font-size: 13.5px;
  color: #565656;
  font-family: 'Noto_R';
}

.ai_tip b {
  font-family: 'Noto_B';
  color: #2f2f2f;
}

.preset_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preset_btn {
  text-align: left;
  border: 1px solid #e4e4e4;
  background: #fafafa;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
}

.preset_btn .t {
  display: block;
  font-family: 'Noto_B';
  font-size: 14px;
  color: #2f2f2f;
}

.preset_btn .s {
  display: block;
  font-family: 'Noto_R';
  font-size: 12.5px;
  color: #777;
  margin-top: 4px;
}

.preset_btn.on {
  border-color: #303030;
  background: #303030;
}

.preset_btn.on .t, .preset_btn.on .s {
  color: #fff;
}

.preset_note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f2f3f7;
}

.preset_note p {
  margin: 0;
  font-size: 13.5px;
  font-family: 'Noto_R';
  color: #565656;
}

.preset_note b {
  font-family: 'Noto_B';
  color: #2f2f2f;
}

.queue_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.q_item {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.q_item .k {
  display: block;
  font-size: 12.5px;
  color: #7a7a7a;
  font-family: 'Pre-R';
  margin-bottom: 6px;
}

.q_item .v {
  display: block;
  font-size: 14px;
  color: #2f2f2f;
  font-family: 'Pre-R';
}

.ai_warn {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fffcf4;
  border: 1px solid #ffe28a;
  width: 95%;
  margin: 10px auto;
}

.ai_warn p {
  margin: 0;
  font-size: 13.5px;
  font-family: 'Noto_R';
  color: #5b4a16;
}

.ai_warn b {
  font-family: 'Noto_B';
}

.sample_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.sample_box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eee;
  overflow: hidden;
  border-radius: 8px;
}

.sample_box img, .sample_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.muted {
  margin-top: 12px;
  font-size: 13px;
  color: #7a7a7a;
  font-family: 'Noto_R';
}

.final_cta {
  padding: 70px 0 90px;
  background: #f2f3f7;
  margin-top: 70px;
}

.cta_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  width: 1500px;
  margin: 0 auto;
}

.cta_box h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-family: 'Noto_B';
  color: #2f2f2f;
}

.cta_box p {
  margin: 0;
  font-size: 15px;
  font-family: 'Noto_R';
  color: #565656;
  line-height: 24px;
}

.btn_primary.big {
  height: 48px;
  padding: 0 18px;
  font-size: 15px;
}

.ai_upload_section {
  padding: 0;
  background: #fff;
  text-align: center;
}

.ai_upload_section .inner {
  width: 780px;
  margin: 0 auto;
}

.tip_m_btn {
  display: none;
}

.ai_upload_title {
  font-size: 20px;
  font-family: 'Pre-R';
  color: #303030;
  margin: 30px 0;
}

.ai_upload_title span {
  color: #ffe28a;
  font-size: 20px;
  font-family: 'Pre-Semib';
}

.upload_editor_box {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 2px dashed #ccc;
  transition: all 0.3s;
}

.upload_editor_box.dragover {
  border-color: #ffe28a;
  background: #fffbf5;
}

.drop_zone {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.drop_zone i {
  font-size: 60px;
  color: #ccc;
  margin-bottom: 20px;
  transition: 0.3s;
}

.upload_editor_box:hover .drop_zone i, .upload_editor_box.dragover .drop_zone i {
  color: #ffe28a;
}

.drop_zone .msg_main {
  font-size: 15px;
  font-family: 'noto_b';
  color: #333;
  margin-bottom: 10px;
}

.drop_zone .msg_sub {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

.btn_select_file {
  background: #303030;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Noto_M';
  transition: 0.3s;
}

.btn_select_file:hover {
  background: #ffe28a;
}

.upload_submit_area {
  margin-top: 40px;
}

.btn_submit_ai {
  background: #ccc;
  color: #fff;
  border: none;
  padding: 18px 50px;
  font-size: 20px;
  border-radius: 10px;
  cursor: not-allowed;
  font-family: 'noto_b';
  transition: 0.3s;
}

.btn_submit_ai.active {
  background: #ffe28a;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 145, 0, 0.3);
}

.btn_submit_ai.active:hover {
  background: #2f2f2f;
  transform: translateY(-2px);
}

.loading_box {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.queue_badge {
  background: #ffc107;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid #e0a800;
}

.ai-progress-container {
  width: 80%;
  background-color: #e9ecef;
  border-radius: 10px;
  height: 25px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  display: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ai-progress-bar {
  height: 100%;
  background-color: #0d6efd;
  transition: width 0.3s ease;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.ai-progress-bar.striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }

  100% {
    background-position: 0 0;
  }
}

.history_area {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.history_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.history_item {
  text-align: center;
  cursor: pointer;
  display: inline-block;
  float: left;
  margin: 5px;
}

.ing_item {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.history_thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.history_date {
  font-size: 10px;
  color: #888;
  display: block;
  margin-top: 3px;
}

.ai_fact_box {
  width: 1460px;
  margin: 100px auto 0;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  margin-bottom: 100px;
}

.ai_fact_head {
  margin-bottom: 14px;
}

.ai_fact_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #303030;
  color: #fff;
  font-size: 12px;
  font-family: 'Noto_M';
  margin-bottom: 12px;
}

.ai_fact_head h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: 'Pre-R';
  color: #2f2f2f;
}

.ai_fact_head p {
  margin: 0;
  font-size: 14px;
  font-family: 'Pre-R';
  color: #565656;
  line-height: 22px;
}

.ai_fact_head b {
  font-family: 'Noto_B';
  color: #2f2f2f;
}

.ai_fact_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.ai_fact_card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fafafa;
  padding: 14px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ai_fact_icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(48, 48, 48, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 36px;
}

.ai_fact_text {
  width: 100%;
  height: 128px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.ai_fact_text b {
  display: inline;
  font-family: 'Pre-B';
  color: #2f2f2f;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.ai_fact_text span {
  display: block;
  font-family: 'Pre-R';
  color: #565656;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.7px;
}

.ai_fact_note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f2f3f7;
  font-size: 13px;
  font-family: 'Noto_R';
  color: #565656;
}

.ai_fact_note b {
  font-family: 'Noto_B';
  color: #2f2f2f;
}

.ai_usecase_wrap {
  width: 100%;
  margin-top: 60px;
  padding: 0 0 10px;
}

.ai_usecase_inner {
  width: 1500px;
  margin: 0 auto;
}

.ai_usecase_head {
  text-align: left;
  margin: 0;
  line-height: 30px;
}

.ai_usecase_head h2 {
  font-size: 22px;
  font-family: 'Pre-R';
  color: #2f2f2f;
  width: 1460px;
  margin: 0 auto 10px;
  text-align: center;
}

.ai_usecase_head p {
  margin: 0;
  font-size: 15px;
  font-family: 'Noto_L';
  color: #565656;
  display: none;
}

.ai_usecase_head b {
  font-family: 'Pre-R';
  color: #2f2f2f;
}

.ai_usecase_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 1460px;
  margin: 0 auto;
}

.ai_usecase_card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.ai_usecase_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Noto_M';
  background: #ffe28a;
  color: #2f2f2f;
  margin-bottom: 12px;
}

.ai_usecase_badge.dark {
  background: #303030;
  color: #fff;
}

.ai_usecase_card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-family: 'Pre-R';
  color: #2f2f2f;
  line-height: 24px;
}

.ai_usecase_card p {
  margin: 0;
  font-size: 14px;
  font-family: 'Pre-R';
  line-height: 24px;
}

.ai_usecase_card p b {
  font-family: 'Noto_B';
  color: #2f2f2f;
}

.ai_usecase_tip {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f2f3f7;
  font-size: 13px;
  font-family: 'Noto_R';
  color: #565656;
}

.ai_usecase_tip b {
  font-family: 'Noto_B';
  color: #2f2f2f;
  margin-right: 6px;
}

.ai_usecase_notice {
  border: 1px solid #ffe28a;
  background: #fffcf4;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 1460px;
  margin: 20px auto;
}
  .photo_tip_wrap {
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
  }



  .photo_tip {
    font-size: 13px;
    font-family: 'Noto_L';
    color: #747474;
    line-height: 20px;
    margin: 20px 0;
  }

  .crop_tip_btn {
    color: #2f2f2f;
    background: #fffcf4;
    border: 1px solid #ffe28a;
    font-size: 12px;
    font-family: 'Noto_L';
    padding: 5px 15px;
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
  }

  .photo_tip_crop {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    margin: 0 auto;
    gap: 10px;
  }

  .photo_tip_crop_p{
    width: 100%;
  }

  .photo_tip_crop li {
    overflow: hidden;
    position: relative;
  }

  .photo_tip_crop li img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .photo_tip_crop li span {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fffcf4;
    border: 1px solid #ffe28a;
    padding: 5px;
    font-size: 11px;
    font-family: 'Noto_R';
    border-radius: 5px;
  }

  .group_content {
    width: 100%;
    padding-bottom: 0;
    border-bottom: 1px solid #e4e4e4;
  }

  .group_content .inner {
    width: 100%;
    margin: 0 auto;
  }

  /* HERO */
  .group_content .top {
    display: block;
    width: 1480px;
    height: 760px;
    margin: 0 auto;
    background: #303030;
    background-image: url('/img/newAI.png');
    background-position: left;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border-radius: 10px;
  }

  .group_content .top .inner {
    height: 100%;
    position: relative;
    border-radius: 70px;
  }

  .group_content .top .text_box {
    position: absolute;
    right: 0;
    top: 90px;
    text-align: left;
    width: 480px;
    color: #fff;
    z-index: 2;
  }

  .group_content .top .text_box h2 {
    font-size: 35px;
    margin: 0;
    color: #fff;
    font-family: 'Pre-R';
  }

  .group_content .top .text_box p {
    font-size: 17px;
    font-family: 'Pre-R';
    margin: 28px 0 0;
    color: #fff;
  }

  .group_content .top .text_box .desc {
    display: block;
    font-size: 14px;
    line-height: 25px;
    margin-top: 16px;
    color: #fff;
  }

  .group_content .top .text_box .desc b {
    color: #fff;
    font-size: 17px;
  }

  .group_content .top .text_box .import {
    background: #ffe28a;
    color: #2f2f2f;
    padding: 3px 6px;
    border-radius: 2px;
    display: inline-block;
    font-size: 13px;
  }

  .group_content .top .text_box .import font:nth-child(1) {
    font-family: 'Pre-B';
    font-size: 14px;
  }

  .group_content .top .text_box .import font:nth-child(3) {
    font-family: 'Pre-B';
    font-size: 11px;
  }

  .group_content .top .text_box .import font:nth-child(5) {
    font-family: 'Pre-B';
  }

  .hero_btns {
    margin-top: 18px;
    display: flex;
    gap: 10px;
  }

  .btn_primary, .btn_ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Noto_M';
    text-decoration: none;
  }

  .btn_primary {
    background: #ffe28a;
    color: #2f2f2f;
  }

  .btn_ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
  }

  .hero-video {
    position: absolute;
    width: 340px;
    height: auto;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    bottom: 10px;
    right: 140px;
    border-radius: 10px;
  }

  .h2_1 {
    font-size: 25px;
    color: #333;
    font-family: 'Noto_B';
    margin: 110px 0;
    text-align: center;
  }

  .h1_1 {
    font-size: 25px;
    color: #333;
    font-family: 'Pre-R';
  }

  .info_ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .info_ul>li.media_li {
    position: relative;
    width: 540px;
    height: 340px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
  }

  .info_ul>li.media_li .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .info_ul>li.media_li .cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity .85s ease;
  }

  .info_ul>li.media_li:hover .cover-img {
    opacity: 0;
  }

  .media_badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    background: rgba(48, 48, 48, .75);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-family: 'Noto_M';
  }

  .info_ul .text_li {
    width: 540px;
  }

  .info_ai {
    width: 540px;
    margin: 0 auto;
    padding-left: 50px;
  }

  .info_ul h2 {
    font-size: 18px;
    font-family: 'Pre-R';
    text-align: left;
    margin: 0;
  }

  .info_ul p {
    font-size: 15px;
    font-family: 'Pre-R';
    text-align: left;
    line-height: 26px;
    color: #565656;
    margin-top: 14px;
  }

  .ai_make {
    padding: 80px 0 0;
    background: #fff;
  }

  .ai_make_p {
    padding: 0px 0 0;
  }

  .ai_make_head {
    padding: 0 20px;
    margin: 80px 0;
    text-align: center;
    display: none;
  }

  .ai_make_head_p {
    margin: 40px 0;
  }

  .ai_make_head h2 {
    font-size: 26px;
    font-family: 'Pre-R';
    color: #2f2f2f;
    margin: 0 0 10px;
  }

  .ai_make_head p {
    font-size: 15px;
    font-family: 'Pre-R';
    color: #565656;
    margin: 0;
    margin-top: 15px;
  }

  .pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    color: #2f2f2f;
    font-size: 13px;
    margin-left: 8px;
    background: #fffcf4;
    border: 1px solid #ffe28a;
  }

  .pill_dark {
    background: #303030;
    color: #fff;
  }

  .ai_make_grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 0 20px;
    width: 1500px;
    margin: 0 auto;
  }

  .ai_card {
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fff;
    padding: 22px;
  }

  .ai_card h3 {
    text-align: center;
    font-size: 18px;
    font-family: 'Pre-R';
    color: #2f2f2f;
    margin: 0 0 30px;
  }

  .ai_card .desc {
    font-size: 14px;
    font-family: 'Pre-R';
    color: #6a6a6a;
    margin: 0 0 16px;
    line-height: 22px;
    display: none;
  }

  .upload_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px dashed #cfcfcf;
    border-radius: 10px;
    padding: 16px;
    background: #fafafa;
  }

  .upload_left .big {
    font-size: 15px;
    font-family: 'Noto_M';
    color: #2f2f2f;
    margin: 0 0 6px;
  }

  .upload_left .small {
    font-size: 13px;
    font-family: 'Noto_R';
    color: #7a7a7a;
    margin: 0;
  }

  .upload_right {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .btn_upload, .btn_go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Noto_M';
    cursor: pointer;
    text-decoration: none;
  }

  .btn_upload {
    background: #303030;
    color: #fff;
  }

  .btn_upload input {
    display: none;
  }

  .btn_go {
    background: #ffe28a;
    color: #2f2f2f;
  }

  .ai_tip {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f2f3f7;
  }

  .ai_tip p {
    margin: 0;
    font-size: 13.5px;
    color: #565656;
    font-family: 'Noto_R';
  }

  .ai_tip b {
    font-family: 'Noto_B';
    color: #2f2f2f;
  }

  .preset_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .preset_btn {
    text-align: left;
    border: 1px solid #e4e4e4;
    background: #fafafa;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
  }

  .preset_btn .t {
    display: block;
    font-family: 'Noto_B';
    font-size: 14px;
    color: #2f2f2f;
  }

  .preset_btn .s {
    display: block;
    font-family: 'Noto_R';
    font-size: 12.5px;
    color: #777;
    margin-top: 4px;
  }

  .preset_btn.on {
    border-color: #303030;
    background: #303030;
  }

  .preset_btn.on .t, .preset_btn.on .s {
    color: #fff;
  }

  .preset_note {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f2f3f7;
  }

  .preset_note p {
    margin: 0;
    font-size: 13.5px;
    font-family: 'Noto_R';
    color: #565656;
  }

  .preset_note b {
    font-family: 'Noto_B';
    color: #2f2f2f;
  }

  .queue_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .q_item {
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
  }

  .q_item .k {
    display: block;
    font-size: 12.5px;
    color: #7a7a7a;
    font-family: 'Pre-R';
    margin-bottom: 6px;
  }

  .q_item .v {
    display: block;
    font-size: 14px;
    color: #2f2f2f;
    font-family: 'Pre-R';
  }

  .ai_warn {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fffcf4;
    border: 1px solid #ffe28a;
    width: 95%;
    margin: 10px auto;
  }

  .ai_warn p {
    margin: 0;
    font-size: 13.5px;
    font-family: 'Noto_R';
    color: #5b4a16;
  }

  .ai_warn b {
    font-family: 'Noto_B';
  }

  .sample_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .sample_box {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #eee;
    overflow: hidden;
    border-radius: 8px;
  }

  .sample_box img, .sample_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .muted {
    margin-top: 12px;
    font-size: 13px;
    color: #7a7a7a;
    font-family: 'Noto_R';
  }

  .final_cta {
    padding: 70px 0 90px;
    background: #f2f3f7;
    margin-top: 70px;
  }

  .cta_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 12px;
    padding: 26px;
    width: 1500px;
    margin: 0 auto;
  }

  .cta_box h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-family: 'Noto_B';
    color: #2f2f2f;
  }

  .cta_box p {
    margin: 0;
    font-size: 15px;
    font-family: 'Noto_R';
    color: #565656;
    line-height: 24px;
  }

  .btn_primary.big {
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .ai_upload_section {
    padding: 0;
    background: #fff;
    text-align: center;
  }

  .ai_upload_section .inner {
    width: 780px;
    margin: 0 auto;
  }

  .tip_m_btn {
    display: none;
  }

  .ai_upload_title {
    font-size: 20px;
    font-family: 'Pre-R';
    color: #303030;
    margin: 30px 0;
  }

  .ai_upload_title span {
    color: #ffe28a;
    font-size: 20px;
    font-family: 'Pre-Semib';
  }

  .upload_editor_box {
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    background: #f8f8f8;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px dashed #ccc;
    transition: all 0.3s;
  }

  .upload_editor_box.dragover {
    border-color: #ffe28a;
    background: #fffbf5;
  }

  .drop_zone {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .drop_zone i {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
    transition: 0.3s;
  }

  .upload_editor_box: hover .drop_zone i, .upload_editor_box.dragover .drop_zone i {
    color: #ffe28a;
  }

  .drop_zone .msg_main {
    font-size: 15px;
    font-family: 'noto_b';
    color: #333;
    margin-bottom: 10px;
  }

  .drop_zone .msg_sub {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
  }

  .btn_select_file {
    background: #303030;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Noto_M';
    transition: 0.3s;
  }

  .btn_select_file: hover {
    background: #ffe28a;
  }

  .upload_submit_area {
    margin-top: 40px;
  }

  .btn_submit_ai {
    background: #ccc;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    border-radius: 10px;
    cursor: not-allowed;
    font-family: 'noto_b';
    transition: 0.3s;
  }

  .btn_submit_ai.active {
    background: #ffe28a;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 145, 0, 0.3);
  }

  .btn_submit_ai.active: hover {
    background: #2f2f2f;
    transform: translateY(-2px);
  }

  .loading_box {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
  }

  .queue_badge {
    background: #ffc107;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #e0a800;
  }

  .ai-progress-container {
    width: 80%;
    background-color: #e9ecef;
    border-radius: 10px;
    height: 25px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    display: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .ai-progress-bar {
    height: 100%;
    background-color: #0d6efd;
    transition: width 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }

  .ai-progress-bar.striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
  }

  @keyframes progress-bar-stripes {
    0% {
      background-position: 1rem 0;
    }

    100% {
      background-position: 0 0;
    }
  }

  .history_area {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
  }

  .history_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
  }

  .history_item {
    text-align: center;
    cursor: pointer;
    display: inline-block;
    float: left;
    margin: 5px;
  }

  .ing_item {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
  }

  .history_thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
  }

  .history_date {
    font-size: 10px;
    color: #888;
    display: block;
    margin-top: 3px;
  }

  .ai_fact_box {
    width: 1460px;
    margin: 18px auto 0;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    margin-bottom: 100px;
  }

  .ai_fact_head {
    margin-bottom: 14px;
  }

  .ai_fact_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #303030;
    color: #fff;
    font-size: 12px;
    font-family: 'Noto_M';
    margin-bottom: 12px;
  }

  .ai_fact_head h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-family: 'Pre-R';
    color: #2f2f2f;
  }

  .ai_fact_head p {
    margin: 0;
    font-size: 14px;
    font-family: 'Pre-R';
    color: #565656;
    line-height: 22px;
  }

  .ai_fact_head b {
    font-family: 'Noto_B';
    color: #2f2f2f;
  }

  .ai_fact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .ai_fact_card {
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fafafa;
    padding: 14px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .ai_fact_icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(48, 48, 48, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 36px;
  }

  .ai_fact_text {
    width: 100%;
    height: 128px;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .ai_fact_text b {
    display: inline;
    font-family: 'Pre-B';
    color: #2f2f2f;
    font-size: 14.5px;
    margin-bottom: 6px;
  }

  .ai_fact_text span {
    display: block;
    font-family: 'Pre-R';
    color: #565656;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.7px;
  }

  .ai_fact_note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f2f3f7;
    font-size: 13px;
    font-family: 'Noto_R';
    color: #565656;
  }

  .ai_fact_note b {
    font-family: 'Noto_B';
    color: #2f2f2f;
  }

  .ai_usecase_wrap {
    width: 100%;
    margin-top: 60px;
    padding: 0 0 10px;
  }

  .ai_usecase_inner {
    width: 1500px;
    margin: 0 auto;
  }

  .ai_usecase_head {
    text-align: center;
    margin: 60px 0 0px;
    line-height: 30px;
  }

  .ai_usecase_head h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-family: 'Pre-R';
    color: #2f2f2f;
  }

  .ai_usecase_head p {
    margin: 0;
    font-size: 15px;
    font-family: 'Noto_L';
    color: #565656;
    display: none;
  }

  .ai_usecase_head b {
    font-family: 'Pre-R';
    color: #2f2f2f;
  }

  .ai_usecase_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 1460px;
    margin: 0 auto;
  }

  .ai_usecase_card {
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fff;
    padding: 22px;
    position: relative;
    overflow: hidden;
  }

  .ai_usecase_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-family: 'Noto_M';
    background: #ffe28a;
    color: #2f2f2f;
    margin-bottom: 12px;
  }

  .ai_usecase_badge.dark {
    background: #303030;
    color: #fff;
  }

  .ai_usecase_card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-family: 'Pre-R';
    color: #2f2f2f;
    line-height: 24px;
  }

  .ai_usecase_card p {
    margin: 0;
    font-size: 14px;
    font-family: 'Pre-R';
    line-height: 24px;
  }

  .ai_usecase_card p b {
    font-family: 'Noto_B';
    color: #2f2f2f;
  }

  .ai_usecase_tip {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f2f3f7;
    font-size: 13px;
    font-family: 'Noto_R';
    color: #565656;
  }

  .ai_usecase_tip b {
    font-family: 'Noto_B';
    color: #2f2f2f;
    margin-right: 6px;
  }

  .ai_usecase_notice {
    margin-top: 16px;
    border: 1px solid #ffe28a;
    background: #fffcf4;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .ai_usecase_notice_icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(48, 48, 48, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .ai_usecase_notice_text {
    flex: 1;
  }

  .ai_usecase_notice_text b {
    display: block;
    font-family: 'Noto_B';
    color: #5b4a16;
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  .ai_usecase_notice_text span {
    display: block;
    font-family: 'Noto_R';
    color: #5b4a16;
    font-size: 13px;
    line-height: 22px;
  }

  @media (max-width: 1500px) {
    .group_content .inner {
      width: 1180px;
    }

    .info_ul {
      width: 1180px;
    }
  }

  @media (max-width: 1200px) {
    .group_content .inner {
      width: 100%;
      padding: 0 20px;
    }

    .group_content .top {
      width: 100%;
    }

    .info_ul {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .info_ai {
      padding-left: 0;
      width: 100%;
    }

    .info_ul .text_li {
      width: 100%;
    }

    .ai_make_grid {
      grid-template-columns: 1fr;
    }

    .ai_make_grid_p {
      grid-template-columns: 1fr 1fr;
    }

    .cta_box {
      flex-direction: column;
      align-items: flex-start;
    }

    .ai_upload_section .inner {
      width: 100%;
      padding: 0 20px;
    }

    .upload_editor_box {
      height: 350px;
    }
  }

  /* ========================================= */
  /* ✅ [공통] 크롭 & 모달 관련 스타일 */
  /* ========================================= */
  /* 1. 프리뷰 존 */
  .preview_zone {
    display: none;
    /* 기본 숨김 */
    width: 100%;
    height: 100%;
    position: relative;
    /* 자식 absolute 기준점 */
    background: #000;
  }

  .preview_zone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 비율 유지하며 꽉 채우기 */
    display: block;
  }

  /* 2. 버튼 그룹 (프리뷰 하단) */
  .preview_btn_group {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 999;
    width: auto;
    align-items: center;
  }

  /* 3. 버튼들 */
  .preview_btn_group .btn_change_file {
    position: static !important;
    /* 기존 absolute 무시 */
    transform: none !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    height: 36px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }

  .preview_btn_group .btn_change_file: hover {
    background: #ffe28a;
    color: #2f2f2f;
    border-color: #ffe28a;
  }

  .btn_crop, .btn_undo {
    background: #fff;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }

  .btn_crop: hover {
    background: #f0f0f0;
  }

  .btn_undo {
    background: #333;
    color: #fff;
    border: 1px solid #333;
  }

  .btn_undo: hover {
    background: #555;
    border-color: #555;
  }

  /* 4. 모달 오버레이 */
  .crop_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
  }

  /* 5. 모달 컨텐츠 */
  .crop_modal_content {
    background-color: #121212;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
  }

  .crop_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #262626;
    background: #1a1a1a;
  }

  .crop_header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex-grow: 1;
    text-align: center;
  }

  .btn_crop_cancel, .btn_crop_apply {
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    padding: 5px;
    font-family: 'Noto_M';
  }

  .btn_crop_cancel {
    color: #fff;
  }

  .btn_crop_apply {
    color: #0095f6;
    font-weight: 600;
  }

  .crop_body {
    width: 100%;
    height: 50vh;
    max-height: 500px;
    background: #000;
    position: relative;
  }

  #cropTargetImage {
    max-width: 100%;
    display: block;
  }

  /* 6. 비율 툴바 */
  .crop_toolbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #1a1a1a;
    padding: 15px 10px;
    border-top: 1px solid #262626;
  }

  .ratio_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    width: 60px;
    position: relative;
  }

  /* 비율 아이콘 (CSS 도형) */
  .shape-box {
    border: 2px solid #777;
    border-radius: 2px;
    margin-bottom: 5px;
    box-sizing: border-box;
    transition: 0.2s;
  }

  .shape-free {
    width: 20px;
    height: 20px;
    border-style: dashed;
  }

  .shape-16-9 {
    width: 24px;
    height: 13.5px;
  }

  .shape-9-16 {
    width: 13.5px;
    height: 24px;
  }

  .shape-4-3 {
    width: 22px;
    height: 16.5px;
  }

  .ratio_btn span {
    font-size: 11px;
    font-family: 'Noto_R';
    color: #888;
  }

  .ratio_btn: hover, .ratio_btn.active {
    color: #fff;
  }

  .ratio_btn: hover .shape-box, .ratio_btn.active .shape-box {
    border-color: #fff;
  }

  .ratio_btn.active .shape-box {
    border-color: #ffe28a;
  }

  /* 뱃지 */
  .badge_crown {
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 14px;
    animation: bounce 1.5s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }

  /* Cropper.js 커스텀 */
  .cropper-view-box {
    outline: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0;
  }

  .cropper-dashed {
    border: 0 solid rgba(255, 255, 255, 0.2);
  }

  .cropper-dashed.dashed-v {
    border-right-width: 1px;
  }

  .cropper-dashed.dashed-h {
    border-bottom-width: 1px;
  }

  .cropper-point {
    width: 12px !important;
    height: 12px !important;
    opacity: 0.8 !important;
    background-color: #fff !important;
    border-radius: 50% !important;
  }

  .cropper-point.point-n, .cropper-point.point-s, .cropper-point.point-e, .cropper-point.point-w {
    display: none !important;
  }

  .cropper-center {
    display: none !important;
  }

  .cropper-line {
    background-color: transparent !important;
  }

  .cropper-modal {
    opacity: 0.6;
    background-color: #000;
  }

  .cropper-bg {
    background-image: none !important;
    background-color: #000 !important;
  }

  /* 모바일 추가 대응 */
  @media (max-width: 768px) {
    .preview_btn_group {
      bottom: 15px !important;
      gap: 6px !important;
      width: 90% !important;
      justify-content: center;
    }

    .preview_btn_group .btn_change_file, .btn_crop, .btn_undo {
      padding: 0 12px !important;
      height: 32px !important;
      font-size: 12px !important;
      line-height: 30px !important;
      white-space: nowrap !important;
      border-radius: 999px !important;
      align-items: center;
      justify-content: center;
    }

    .preview_btn_group .btn_change_file, .btn_crop {
      display: flex !important;
    }

    .btn_change_file {
      font-size: 11px !important;
    }

    .crop_body {
      height: 60vh;
    }

    .cropper-point {
      width: 20px !important;
      height: 20px !important;
    }
  }

  ;
}

.ai_usecase_notice_icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(48, 48, 48, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ai_usecase_notice_text {
  flex: 1;
}

.ai_usecase_notice_text b {
  display: block;
  font-family: 'Noto_B';
  color: #5b4a16;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.ai_usecase_notice_text span {
  display: block;
  font-family: 'Noto_R';
  color: #5b4a16;
  font-size: 13px;
  line-height: 22px;
}

@media (max-width: 1500px) {
  .group_content .inner {
    width: 1180px;
  }

  .info_ul {
    width: 1180px;
  }
}

@media (max-width: 1200px) {
  .group_content .inner {
    width: 100%;
    padding: 0 20px;
  }

  .group_content .top {
    width: 100%;
  }

  .info_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .info_ai {
    padding-left: 0;
    width: 100%;
  }

  .info_ul .text_li {
    width: 100%;
  }

  .ai_make_grid {
    grid-template-columns: 1fr;
  }

  .ai_make_grid_p {
    grid-template-columns: 1fr 1fr;
  }

  .cta_box {
    flex-direction: column;
    align-items: flex-start;
  }

  .ai_upload_section .inner {
    width: 100%;
    padding: 0 20px;
  }

  .upload_editor_box {
    height: 350px;
  }
}

/* ========================================= */
/* ✅ [공통] 크롭 & 모달 관련 스타일 */
/* ========================================= */
/* 1. 프리뷰 존 */
.preview_zone {
  display: none;
  /* 기본 숨김 */
  width: 100%;
  height: 100%;
  position: relative;
  /* 자식 absolute 기준점 */
  background: #000;
}

.preview_zone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 비율 유지하며 꽉 채우기 */
  display: block;
}

/* 2. 버튼 그룹 (프리뷰 하단) */
.preview_btn_group {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 999;
  width: auto;
  align-items: center;
}

/* 3. 버튼들 */
.preview_btn_group .btn_change_file {
  position: static !important;
  /* 기존 absolute 무시 */
  transform: none !important;
  margin: 0 !important;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  height: 36px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.preview_btn_group .btn_change_file:hover {
  background: #ffe28a;
  color: #2f2f2f;
  border-color: #ffe28a;
}

.btn_crop, .btn_undo {
  background: #fff;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.btn_crop:hover {
  background: #f0f0f0;
}

.btn_undo {
  background: #333;
  color: #fff;
  border: 1px solid #333;
}

.btn_undo:hover {
  background: #555;
  border-color: #555;
}

/* 4. 모달 오버레이 */
.crop_modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

/* 5. 모달 컨텐츠 */
.crop_modal_content {
  background-color: #121212;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.crop_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #262626;
  background: #1a1a1a;
}

.crop_header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex-grow: 1;
  text-align: center;
}

.btn_crop_cancel, .btn_crop_apply {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 5px;
  font-family: 'Noto_M';
}

.btn_crop_cancel {
  color: #fff;
}

.btn_crop_apply {
  color: #0095f6;
  font-weight: 600;
}

.crop_body {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  background: #000;
  position: relative;
}

#cropTargetImage {
  max-width: 100%;
  display: block;
}

/* 6. 비율 툴바 */
.crop_toolbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #1a1a1a;
  padding: 15px 10px;
  border-top: 1px solid #262626;
}

.ratio_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  cursor: pointer;
  width: 60px;
  position: relative;
}

/* 비율 아이콘 (CSS 도형) */
.shape-box {
  border: 2px solid #777;
  border-radius: 2px;
  margin-bottom: 5px;
  box-sizing: border-box;
  transition: 0.2s;
}

.shape-free {
  width: 20px;
  height: 20px;
  border-style: dashed;
}

.shape-16-9 {
  width: 24px;
  height: 13.5px;
}

.shape-9-16 {
  width: 13.5px;
  height: 24px;
}

.shape-4-3 {
  width: 22px;
  height: 16.5px;
}

.ratio_btn span {
  font-size: 11px;
  font-family: 'Noto_R';
  color: #888;
}

.ratio_btn:hover, .ratio_btn.active {
  color: #fff;
}

.ratio_btn:hover .shape-box, .ratio_btn.active .shape-box {
  border-color: #fff;
}

.ratio_btn.active .shape-box {
  border-color: #ffe28a;
}

/* 뱃지 */
.badge_crown {
  position: absolute;
  top: -15px;
  right: 5px;
  font-size: 14px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Cropper.js 커스텀 */
.cropper-view-box {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
}

.cropper-dashed {
  border: 0 solid rgba(255, 255, 255, 0.2);
}

.cropper-dashed.dashed-v {
  border-right-width: 1px;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
}

.cropper-point {
  width: 12px !important;
  height: 12px !important;
  opacity: 0.8 !important;
  background-color: #fff !important;
  border-radius: 50% !important;
}

.cropper-point.point-n, .cropper-point.point-s, .cropper-point.point-e, .cropper-point.point-w {
  display: none !important;
}

.cropper-center {
  display: none !important;
}

.cropper-line {
  background-color: transparent !important;
}

.cropper-modal {
  opacity: 0.6;
  background-color: #000;
}

.cropper-bg {
  background-image: none !important;
  background-color: #000 !important;
}

/* 모바일 추가 대응 */
@media (max-width: 768px) {
  .preview_btn_group {
    bottom: 15px !important;
    gap: 6px !important;
    width: 90% !important;
    justify-content: center;
  }

  .preview_btn_group .btn_change_file, .btn_crop, .btn_undo {
    padding: 0 12px !important;
    height: 32px !important;
    font-size: 12px !important;
    line-height: 30px !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
    align-items: center;
    justify-content: center;
  }

  .preview_btn_group .btn_change_file, .btn_crop {
    display: flex !important;
  }

  .btn_change_file {
    font-size: 11px !important;
  }

  .crop_body {
    height: 60vh;
  }

  .cropper-point {
    width: 20px !important;
    height: 20px !important;
  }
}
