/* 메인배너 */
.main_banner {
  overflow: hidden;
}

.main_visual {
  position: relative;
  min-height: 820px;
}

.main_visual_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.main_visual_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_visual_inner {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  min-height: 720px;
  margin: 0 auto;
  padding: 110px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.main_visual_text {
  flex: 0 1 560px;
  color: #fff;
  animation: heroTextIn 0.8s ease-out both;
}

.main_visual_text h2 {
  margin: 0;
  font-size: 60px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
}

.main_visual_text h2 span {
  color: #ffcb52;
}

.main_visual_desc {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 200;
  word-break: keep-all;
}

.main_visual_panel {
  flex: 0 1 820px;
  animation: heroPanelIn 0.95s ease-out 0.08s both;
}

.main_visual_window {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(248, 250, 255, 0.94);
  box-shadow: 0 30px 60px rgba(8, 23, 94, 0.3);
  backdrop-filter: blur(18px);
  animation: heroWindowFloat 5.2s ease-in-out 1.1s infinite;
}

.window_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: linear-gradient(90deg, rgba(175, 190, 242, 0.88), rgba(233, 236, 249, 0.9));
}

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

.window_dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window_dots span:nth-child(1) {
  background: #ff7d6b;
}

.window_dots span:nth-child(2) {
  background: #ffc529;
}

.window_dots span:nth-child(3) {
  background: #58d46f;
}

.window_bar p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.window_body {
  padding: 34px 45px 38px;
}

.window_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.window_heading h3 {
  margin: 0;
  color: #161616;
  font-size: 26px;
  font-weight: 600;
}

.window_heading span {
  color: #757575;
  font-size: 16px;
}

.feedback_card {
  padding: 18px 24px 18px 28px;
  border: 1px solid;
  border-left-width: 5px;
  border-radius: 16px;
  opacity: 0;
  animation: heroCardIn 0.6s ease-out both;
}

.feedback_card + .feedback_card {
  margin-top: 16px;
}

.feedback_card.type_green {
  animation-delay: 0.42s;
}

.feedback_card.type_blue {
  animation-delay: 0.54s;
}

.feedback_card.type_orange {
  animation-delay: 0.66s;
}

.feedback_card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 800;
}

.feedback_card p {
  margin: 0;
  color: #222;
  font-size: 17px;
  line-height: 1.55;
  word-break: keep-all;
}

.feedback_card.type_green {
  border-color: #9bd8c2;
  border-left-color: #54bf95;
  background: rgba(231, 247, 240, 0.74);
}

.feedback_card.type_green strong {
  color: #30a06f;
}

.feedback_card.type_blue {
  border-color: #a8c9ff;
  border-left-color: #5192ff;
  background: rgba(236, 243, 255, 0.78);
}

.feedback_card.type_blue strong {
  color: #357fff;
}

.feedback_card.type_orange {
  border-color: #ffd094;
  border-left-color: #ffb73c;
  background: rgba(255, 247, 238, 0.82);
}

.feedback_card.type_orange strong {
  color: #f2a037;
}

/* 교육과정 */
.course_section {
  background: #f7f8fa;
  padding: 110px 0 120px;
}

.course_inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.course_header {
  text-align: center;
}

.section_title_motion h3,
.section_title_motion p {
  opacity: 0;
  transform: translateY(18px);
}

.section_title_motion.in-view h3 {
  animation: sectionTitleIn 0.7s ease-out both;
}

.section_title_motion.in-view p {
  animation: sectionTitleIn 0.7s ease-out 0.12s both;
}

.course_header h3 {
  margin: 0;
  color: #1b1f23;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.course_header p {
  display: inline-block;
  margin: 10px 0 0;
  color: #7a7f87;
  font-size: 20px;
  line-height: 1.5;
}

.course_matrix {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.65fr 2.1fr;
  gap: 22px;
  align-items: start;
}

.course_column {
  background: #fff;
  border-top: 3px solid;
}

.course_column_head {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.course_column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.course_column ul li {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #474b52;
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
  border-bottom: 1px solid;
}

.course_column.type_blue {
  border-color: #004DFF;
}

.course_column.type_blue .course_column_head {
  color: #004DFF;
  background: #dbe8fb;
}

.course_column.type_blue ul li {
  border-color: #c7dafb;
}

.course_column.type_green {
  border-color: #16a765;
}

.course_column.type_green .course_column_head {
  color: #16a765;
  background: #e1efe9;
}

.course_column.type_green ul li {
  border-color: #cfe4db;
}

.course_column.type_red {
  border-color: #e3352f;
}

.course_column.type_red .course_column_head {
  color: #e3352f;
  background: #f8e5e4;
}

.course_column.type_red ul li {
  border-color: #f0d4d2;
}

.course_column ul.split_two {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.course_column ul.split_two li {
  border-right: 1px solid;
}

.course_column.type_green ul.split_two li {
  border-right-color: #cfe4db;
}

.course_column.type_red ul.split_two li {
  border-right-color: #f0d4d2;
}

.course_column ul.split_two li:nth-child(2n) {
  border-right: 0;
}

.course_cards {
  margin: 60px auto 0;
  max-width: 1188px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.course_card {
  min-height: 176px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px;
  text-decoration: none;
  background: #fff;
  border-right: 1px solid #d8dde5;
  border-bottom: 1px solid #d8dde5;
}

.course_card:nth-child(3n) {
  border-right: 0;
}

.course_card:nth-last-child(-n+3) {
  border-bottom: 0;
}

.course_card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.course_card p {
  margin: 0;
  color: #6f747c;
  font-size: 18px;
  line-height: 1.9;
  word-break: keep-all;
}

.course_arrow {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  background: url("../common/img/caret-right-bold-grey.png") no-repeat center / 18px 18px;
}

.course_card.accent_blue strong {
  color: #004DFF;
}

.course_card.accent_green strong {
  color: #16a765;
}

.course_card.accent_red strong {
  color: #e3352f;
}

.course_card.accent_teal strong {
  color: #1f96c7;
}

.text_gradient_ai {
  background: linear-gradient(90deg, #11af8b 0%, #256ef4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* AI ZONE */
.ai_zone_section {
  background: #f7f8fa;
  padding: 12px 0 120px;
}

.ai_zone_inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.ai_zone_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 48px;
  margin-bottom: 28px;
  padding: 0 24px;
  border: 2px solid #1d9ae1;
  border-radius: 999px;
  color: #1d9ae1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.ai_zone_showcase {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 550px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ai_feature_list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.ai_feature_card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 28px 24px;
  border: 1px solid #cfd5dc;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 31, 56, 0.04);
}

.ai_feature_card.is_active {
  border: 2px solid #004DFF;
}

.ai_feature_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #bcbec3;
}

.ai_feature_card.is_active .ai_feature_icon {
  background: #004DFF;
}

.ai_feature_icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: none;
}

.ai_feature_text strong {
  display: block;
  color: #7b7f86;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.ai_feature_card.is_active .ai_feature_text strong {
  color: #004DFF;
}

.ai_feature_text p {
  margin: 8px 0 0;
  color: #7b7f86;
  font-size: 17px;
  line-height: 1.55;
  word-break: keep-all;
}

.ai_coach_panel {
  min-width: 0;
}

.ai_coach_window {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 32, 88, 0.12);
  border: 1px solid #e7ebf2;
}

.ai_coach_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 32px;
  background: linear-gradient(90deg, #1b4ae9 0%, #1d58f0 100%);
}

.ai_coach_bar h4 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.ai_coach_bar span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #1d9ae1;
  font-size: 14px;
  font-weight: 600;
}

.ai_chat_area {
  padding: 25px 34px 25px;
  background: #fbfcff;
}

.ai_chat_row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.ai_chat_row + .ai_chat_bubble.user,
.ai_chat_bubble.user + .ai_chat_row {
  margin-top: 20px;
}

.ai_chat_avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.ai_chat_avatar img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: none;
}

.ai_chat_bubble {
  max-width: fit-content;
  padding: 18px 26px;
  border-radius: 22px;
  color: #424852;
  font-size: 17px;
  line-height: 1.4;
  word-break: keep-all;
}

.ai_chat_bubble.user {
  margin-left: auto;
  border: 1px solid #d0d5dd;
  background: #fff;
}

.ai_chat_bubble.user.small {
  max-width: 340px;
}

.ai_chat_bubble.reply {
  border: 2px solid transparent;
  background:
    linear-gradient(#f3f7ff, #f3f7ff) padding-box,
    linear-gradient(90deg, #11af8b 0%, #256ef4 100%) border-box;
  border-radius: 15px 15px 15px 0px;
  font-weight: 600;
}

.ai_chat_input {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 34px 18px;
  background: #f3f5fa;
}

.ai_chat_input p {
  flex: 1;
  margin: 0;
  padding: 16px 22px;
  border: 1px solid #d9deea;
  border-radius: 999px;
  background: #fff;
  color: #8c919a;
  font-size: 16px;
}

.ai_chat_input button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #18b29c, #256ef4);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.ai_zone_curriculum {
  margin-top: 74px;
}

.ai_zone_tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}

.ai_zone_tabs button {
  padding: 25px 16px;
  border: 0;
  background: transparent;
  color: #585d66;
  font-size: 23px;
  font-weight: 500;
  cursor: pointer;
}

.ai_zone_tabs button.is_active {
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #18b29c 0%, #256ef4 100%);
  color: #fff;
}

.ai_zone_panel {
  padding: 42px 52px 36px;
border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #11af8b 0%, #256ef4 100%) border-box;
  border-radius: 0 0 24px 24px;
}

.ai_zone_panel h4 {
  margin: 0;
  color: #1f2328;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.ai_zone_panel > p {
  margin: 5px 0 0;
  color: #6e747d;
  font-size: 20px;
  line-height: 1.55;
}

.ai_zone_panel ul {
  margin: 30px 0 32px;
  padding: 0;
  list-style: none;
}

.ai_zone_panel li {
  position: relative;
  padding: 20px 28px 20px 54px;
  border-radius: 16px;
  background: #eaf5ff;
  color: #004DFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.ai_zone_panel li + li {
  margin-top: 14px;
}

.ai_zone_panel li::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #004DFF;
}

.ai_zone_panel strong {
  display: block;
  color: #222;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.ai_zone_panel strong span {
  color: #004DFF;
}

.ai_zone_cta {
  margin-top: 64px;
  text-align: center;
}

.ai_zone_cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  height: 84px;
  padding: 0 40px;
  border-radius: 5px;
  background: linear-gradient(90deg, #1b4ae9 0%, #215af0 100%);
  box-shadow: 0 12px 28px rgba(33, 90, 240, 0.22);
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
}

/* WHY AINEX */
.why_ainex_section {
  background: #fff;
}

.why_ainex_top {
  background:
    url("../common/img/main/main_card_bg.png") no-repeat center top / cover,
    linear-gradient(180deg, #1c83ef 0%, #1877ea 100%);
  padding: 96px 0 0;
}

.why_ainex_inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.why_ainex_title {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.why_ainex_title h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.why_ainex_title h3 span {
  font-weight: 800;
}

.why_ainex_cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 45px;
  margin-top: 22px;
  transform: translateY(78px);
}

.why_ainex_card {
  position: relative;
  z-index: 2;
  min-height: 320px;
  padding: 52px 46px 38px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(28, 58, 138, 0.14), 0 10px 60px rgba(28, 58, 138, 0.12);
}

.why_ainex_card strong {
  display: block;
  color: #3d3d3d;
  font-size: 35px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.why_ainex_card em {
  display: block;
  margin-top: 10px;
  color: #1f67ff;
  font-size: 20px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 700;
}

.why_ainex_card span {
  display: block;
  width: 40px;
  height: 3px;
  margin: 10px 0;
  border-radius: 999px;
  background: #2f3135;
}

.why_ainex_card p {
  margin: 0;
  color: #757575;
  font-size: 15px;
  line-height: 1.5;
  word-break: keep-all;
}

.why_ainex_bottom {
  padding: 130px 0 96px;
  background: #fff;
}

.why_ainex_badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.why_ainex_badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border: 1px solid #d6dceb;
  border-radius: 999px;
  background: #fff;
  color: #1f67ff;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

/* SUPPORT */
.support_section {
  padding: 110px 0 140px;
  background: #fff;
}

.support_inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}

.support_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.support_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 25px;
  border-bottom: 2px solid #2f3135;
}

.support_head h3 {
  margin: 0;
  color: #3a3a3a;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.support_tabs {
  display: flex;
  align-items: center;
  gap: 36px;
}

.support_tab {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b1b1b1;
  font-size: 30px;
  font-weight: 500;
  cursor: pointer;
}

.support_tab.is_active {
  color: #2f3135;
  font-weight: 700;
}

.support_panel {
  display: none;
}

.support_panel.is_active {
  display: block;
}

.support_item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 120px;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  border-bottom: 1px solid #dde3ec;
  text-decoration: none;
}

.support_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 5px 10px;
  height: 28px;
  border-radius: 6px;
  background: #e8f1ff;
  color: #5d7ea8;
  font-size: 14px;
  font-weight: 700;
}

.support_item strong {
  color: #1f2328;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.support_item em {
  color: #50555c;
  font-size: 18px;
  font-style: normal;
  text-align: right;
}

.support_side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top:32px;
}

.support_box {
  max-height: 220px;
  padding: 28px 24px;
  background: #eef4ff;
}

.support_box strong {
  display: block;
  color: #31353c;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.support_box span {
  display: block;
  margin-top: 8px;
  color: #8a93a1;
  font-size: 15px;
  line-height: 1.2;
}
/*  */
.support_box b {
  display: block;
  margin-top: 50px;
  color: #1f67ff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  letter-spacing: -0.04em;
}

.support_box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 48px;
  margin-top: 30px;
  border-radius: 8px;
  background: #1f67ff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-left: 83px;
  text-decoration: none;
}

.main_bottom_banner_section {
  background: #fff;
}

.main_bottom_banner_inner {
  min-height: 300px;
  margin: 0 auto;
  margin-left: calc(50% - 50vw);
  background: #2f7df4 url("/ainex/common/img/main/main_bottom_bg.png") no-repeat 50% 50%;
  background-size: cover;
}

.main_bottom_banner_frame {
  max-width: 1520px;
  min-height: 300px;
  margin: 0 auto;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.main_bottom_banner_content {
  color: #fff;
}

.main_bottom_banner_content h3 {
  margin: 0;
  font-size: 38px;
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.main_bottom_banner_content p {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}

.main_bottom_banner_actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.main_bottom_banner_actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 54px;
  padding: 0 28px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: transparent;
  white-space: nowrap;
  text-decoration: none;
}

.main_bottom_banner_actions a:first-child {
  background: #fff;
  color: #1559d6;
}

.main_bottom_banner_actions a.is_line {
  background: transparent;
  color: #fff;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWindowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes sectionTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main_visual_text,
  .main_visual_panel,
  .main_visual_window,
  .feedback_card,
  .section_title_motion h3,
  .section_title_motion p {
    animation: none !important;
    opacity: 1;
  }
}



@media (max-width: 1440px) {
  .main_visual_inner {
    padding: 90px 32px 72px;
  }

  .main_visual_text h2 {
    font-size: 58px;
  }

  .main_visual_desc {
    font-size: 23px;
  }

  .course_inner {
    padding: 0 32px;
  }

  .ai_zone_inner {
    padding: 0 32px;
  }

  .course_matrix {
    grid-template-columns: repeat(3, 1fr);
  }

  .course_column.large {
    grid-column: span 3;
  }

  .ai_zone_showcase {
    grid-template-columns: 550px minmax(0, 1fr);
  }

  .why_ainex_inner {
    padding: 0 32px;
  }

  .why_ainex_title h3 {
    font-size: 52px;
  }

  .why_ainex_cards {
    gap: 24px;
  }

  .why_ainex_card {
    min-height: 390px;
    padding: 40px 30px 30px;
  }

  .why_ainex_card strong {
    font-size: 48px;
  }

  .why_ainex_card em {
    font-size: 23px;
  }

  .why_ainex_card p {
    font-size: 18px;
  }

  .support_inner {
    padding: 0 32px;
  }

  .support_head h3 {
    font-size: 56px;
  }

  .support_tab {
    font-size: 22px;
  }
}

@media (max-width: 1080px) {
  .main_visual {
    min-height: auto;
  }

  .main_visual_inner {
    min-height: auto;
    padding: 80px 24px 64px;
    flex-direction: column;
    align-items: flex-start;
  }

  .main_visual_text,
  .main_visual_panel {
    width: 100%;
    flex-basis: auto;
  }

  .main_visual_text h2 {
    font-size: 48px;
  }

  .main_visual_desc {
    font-size: 20px;
  }

  .course_section {
    padding: 84px 0 90px;
  }

  .course_inner {
    padding: 0 24px;
  }

  .ai_zone_inner {
    padding: 0 24px;
  }

  .course_header h3 {
    font-size: 44px;
  }

  .course_matrix {
    margin-top: 48px;
    grid-template-columns: 1fr 1fr;
  }

  .course_column.small,
  .course_column.large {
    grid-column: span 1;
  }

  .course_cards {
    max-width: none;
    grid-template-columns: 1fr 1fr;
  }

  .course_card:nth-child(3n) {
    border-right: 1px solid #d8dde5;
  }

  .course_card:nth-child(2n) {
    border-right: 0;
  }

  .course_card:nth-last-child(-n+3) {
    border-bottom: 1px solid #d8dde5;
  }

  .course_card:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .ai_zone_section {
    padding: 8px 0 96px;
  }

  .ai_zone_showcase {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .ai_feature_card {
    min-height: auto;
  }

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

  .ai_zone_panel {
    padding: 36px 28px 30px;
  }

  .ai_zone_panel h4 {
    font-size: 34px;
  }

  .ai_zone_panel li {
    font-size: 18px;
  }

  .why_ainex_top {
    padding-top: 84px;
  }

  .why_ainex_inner {
    padding: 0 24px;
  }

  .why_ainex_title {
    min-height: 132px;
  }

  .why_ainex_title h3 {
    font-size: 42px;
  }

  .why_ainex_cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transform: translateY(54px);
  }

  .why_ainex_card {
    min-height: 300px;
  }

  .why_ainex_bottom {
    padding: 92px 0 80px;
  }

  .support_section {
    padding: 88px 0 100px;
  }

  .support_inner {
    padding: 0 24px;
  }

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

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

  .support_head h3 {
    font-size: 52px;
  }

  .support_side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .support_box {
    min-height: 180px;
  }

  .support_box b {
    margin-top: 34px;
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .main_visual_inner {
    padding: 64px 16px 48px;
    gap: 32px;
  }

  .main_visual_text h2 {
    font-size: 34px;
  }

  .main_visual_desc {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .window_bar {
    padding: 14px 16px;
  }

  .window_bar p {
    font-size: 14px;
  }

  .window_body {
    padding: 22px 16px 24px;
  }

  .window_heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .window_heading h3 {
    font-size: 22px;
  }

  .feedback_card {
    padding: 16px 16px 16px 18px;
    border-radius: 14px;
  }

  .feedback_card strong {
    font-size: 14px;
  }

  .feedback_card p {
    font-size: 15px;
  }

  .course_section {
    padding: 64px 0 72px;
  }

  .course_inner {
    padding: 0 16px;
  }

  .ai_zone_inner {
    padding: 0 16px;
  }

  .course_header h3 {
    font-size: 34px;
  }

  .course_header p {
    margin-top: 14px;
    font-size: 14px;
  }

  .course_matrix {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course_column_head {
    min-height: 62px;
    font-size: 20px;
  }

  .course_column ul li {
    min-height: 42px;
    font-size: 15px;
  }

  .course_cards {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .course_card {
    min-height: auto;
    padding: 24px 20px;
    border-right: 0;
  }

  .course_card:nth-child(2n) {
    border-right: 0;
  }

  .course_card:nth-last-child(-n+2) {
    border-bottom: 1px solid #d8dde5;
  }

  .course_card:last-child {
    border-bottom: 0;
  }

  .course_card strong {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .course_card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .ai_zone_section {
    padding: 0 0 72px;
  }

  .ai_zone_badge {
    min-width: 92px;
    height: 40px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .ai_zone_showcase {
    margin-top: 34px;
    gap: 20px;
  }

  .ai_feature_list {
    gap: 14px;
  }

  .ai_feature_card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .ai_feature_icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 16px;
  }

  .ai_feature_text strong {
    font-size: 18px;
  }

  .ai_feature_text p {
    font-size: 14px;
  }

  .ai_coach_bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 16px;
  }

  .ai_coach_bar h4 {
    font-size: 20px;
  }

  .ai_coach_bar span {
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .ai_chat_area {
    padding: 20px 16px 14px;
  }

  .ai_chat_bubble {
    max-width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .ai_chat_bubble.user.small {
    max-width: 100%;
  }

  .ai_chat_input {
    padding: 14px 16px 18px;
    gap: 10px;
  }

  .ai_chat_input p {
    padding: 12px 14px;
    font-size: 13px;
  }

  .ai_chat_input button {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .ai_zone_curriculum {
    margin-top: 44px;
  }

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

  .ai_zone_tabs button {
    padding: 14px 12px 16px;
    font-size: 16px;
  }

  .ai_zone_panel {
    padding: 24px 18px 22px;
    border-radius: 0 0 18px 18px;
  }

  .ai_zone_panel h4 {
    font-size: 24px;
  }

  .ai_zone_panel > p {
    font-size: 15px;
  }

  .ai_zone_panel ul {
    margin: 20px 0 22px;
  }

  .ai_zone_panel li {
    padding: 15px 16px 15px 38px;
    font-size: 15px;
    border-radius: 12px;
  }

  .ai_zone_panel li::before {
    left: 16px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }

  .ai_zone_panel strong {
    font-size: 18px;
  }

  .ai_zone_cta {
    margin-top: 36px;
  }

  .ai_zone_cta a {
    min-width: 100%;
    height: 62px;
    font-size: 20px;
  }

  .why_ainex_top {
    padding-top: 64px;
  }

  .why_ainex_inner {
    padding: 0 16px;
  }

  .why_ainex_title {
    min-height: 92px;
    padding-top: 8px;
  }

  .why_ainex_title h3 {
    font-size: 28px;
  }

  .why_ainex_cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
    transform: translateY(34px);
  }

  .why_ainex_card {
    min-height: auto;
    padding: 28px 22px 24px;
    border-radius: 8px;
  }

  .why_ainex_card strong {
    font-size: 40px;
  }

  .why_ainex_card em {
    margin-top: 10px;
    font-size: 21px;
  }

  .why_ainex_card span {
    width: 36px;
    height: 4px;
    margin: 14px 0 16px;
  }

  .why_ainex_card p {
    font-size: 16px;
  }

  .why_ainex_bottom {
    padding: 58px 0 64px;
  }

  .why_ainex_badges {
    gap: 10px;
  }

  .why_ainex_badges span {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .support_section {
    padding: 64px 0 72px;
  }

  .support_inner {
    padding: 0 16px;
  }

  .support_head {
    gap: 16px;
    padding-bottom: 14px;
  }

  .support_head h3 {
    font-size: 40px;
  }

  .support_tabs {
    gap: 22px;
  }

  .support_tab {
    font-size: 18px;
  }

  .support_item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .support_item em {
    grid-column: 2;
    text-align: left;
    font-size: 14px;
  }

  .support_label {
    width: 42px;
    height: 24px;
    font-size: 12px;
  }

  .support_item strong {
    font-size: 15px;
  }

  .support_side {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support_box {
    min-height: auto;
    padding: 22px 18px;
  }

  .support_box strong {
    font-size: 20px;
  }

  .support_box b {
    margin-top: 24px;
    font-size: 34px;
  }

  .support_box a {
    min-width: 132px;
    height: 42px;
    margin-top: 20px;
    font-size: 15px;
  }
}

.why_ainex_top {
  position: relative;
  padding: 120px 0 178px;
}

.why_ainex_inner {
  position: relative;
}

.why_ainex_cards {
  position: absolute;
  left: 40px;
  right: 40px;
  top:150px;
  margin-top: 0;
  transform: none;
}

.why_ainex_bottom {
  padding: 300px 0 96px;
}



@media (max-width: 1440px) {
  .why_ainex_top {
    padding: 88px 0 154px;
  }

  .why_ainex_cards {
    left: 32px;
    right: 32px;
    bottom: -66px;
  }

  .why_ainex_bottom {
    padding: 154px 0 88px;
  }
}

@media (max-width: 1080px) {
  .why_ainex_top {
    padding: 84px 0 0;
  }

  .why_ainex_cards {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .why_ainex_bottom {
    padding: 92px 0 80px;
  }
}

@media (max-width: 767px) {
  .why_ainex_top {
    padding: 64px 0 0;
  }

  .why_ainex_cards {
    margin-top: 10px;
  }

  .why_ainex_bottom {
    padding: 58px 0 64px;
  }

  .main_bottom_banner_section {
    padding: 0 0 72px;
  }

  .main_bottom_banner_inner {
    min-height: 0;
    margin: 0;
  }

  .main_bottom_banner_frame {
    min-height: 0;
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .main_bottom_banner_content h3 {
    font-size: 28px;
  }

  .main_bottom_banner_content p {
    margin-top: 12px;
    font-size: 15px;
  }

  .main_bottom_banner_actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .main_bottom_banner_actions a {
    width: 100%;
    min-width: 0;
    height: 50px;
    font-size: 18px;
  }
}
