@charset "utf-8";
:root {
  --navy: #07101F;
  --navy2: #0D1A2D;
  --blue: #1A56DB;
  --blue-bright: #4B7BF5;
  --cyan: #06B6D4;
  --cyan-dim: rgba(6, 182, 212, 0.12);
  --white: #FFFFFF;
  --off-white: #E8EFF7;
  --gray: #7A90A8;
  --gray2: #CBD5E1;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --gold: #F5A623;
  --data-c: #06B6D4;
  --data-d: #0E7490;
  --svc-c: #8B5CF6;
  --svc-d: #6D28D9;
}

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

html {
  scroll-behavior: smooth;
}
body * {
  font-family: "Wanted Sans Variable";
}

.common_promotion_counsel {
  display: none !important;
}
.wrap.ai_career_boost {
  background: #050C18;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* noise */
.wrap.ai_career_boost::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
/* 공통사항 */
section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 4px 20px;
  border-radius: 100px;
  margin-bottom: 25px;
  background: rgba(6, 182, 212, .12);
  border: 1px solid rgba(6, 182, 212, .3);
  color: var(--cyan);
  max-width: calc(100% - 0px);
  box-sizing: border-box;
}

.sec-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.sec-desc {
  font-size: 18px;
  color: var(--gray2);
  line-height: 1.3;
  word-break: keep-all;
  letter-spacing: -0.5px;
}

/* Sticky Floating Banner */
.floating-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 750px;
  z-index: 1000;
  background: linear-gradient(rgba(7, 16, 31, 0.95), rgba(7, 16, 31, 0.95)) padding-box, 
              linear-gradient(90deg, rgba(0, 240, 255, 0.7) 0%, rgba(231, 0, 255, 0.7) 100%) border-box;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 18px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.fb-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 28px;
  height: 28px;
  background: #FF0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
  z-index: 10;
}

.floating-banner.hidden {
  transform: translate(-50%, 150%);
}

.fb-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.fb-btns {
  display: flex;
  gap: 10px;
}

.fb-btn{
  position: relative;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: 0.2s;
}
.fb-btn::before{
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50px;
  z-index: -1;
  transition: background 0.2s;
}
.fb-btn::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: conic-gradient(from 0deg, transparent 0%, transparent 60%, rgba(255, 255, 255, 0.6) 90%, #ffffff 100%);
  animation: spinGlow 2.5s linear infinite;
  z-index: -2;
  border-radius: 50%;
}
@keyframes spinGlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.fb-btn.data::before {
  background: linear-gradient(135deg, #0e9037, #06d480);
}

.fb-btn.svc::before {
  background: linear-gradient(135deg, var(--svc-d), var(--svc-c));
}
.fb-btn.data {
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.fb-btn.svc {
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.fb-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.fb-btns .fb-btn {
  border: none;
}


/* HERO - Center Aligned */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 5% 60px;
  position: relative;
  overflow: hidden;
  background: url('https://img.megastudyacademy.co.kr/campusdev/iws_html_img/event/20260318/MEGASTUDY-3760/top_bg.png') no-repeat center center / cover;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
      radial-gradient(ellipse 90% 55% at 50% -5%, rgba(26, 86, 219, .28) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 50% 75%, rgba(6, 182, 212, .1) 0%, transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
      linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .28);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fd .6s ease both;
}

.hero-live .dot-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
      opacity: 1
  }

  50% {
      opacity: .2
  }
}

.hero h1 {
  font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  animation: fd .6s .1s ease both;
}

.hero h1 span {
  display: block;
  font-size: 50px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -1.0px;
}



.hero-main-title em {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  color: #00F0FF;
  letter-spacing: -1.0px;
  display: block;
  margin-top: 10px;
}

.hero-sub {
  font-size: 22px;
  color: var(--gray2);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fd .6s .2s ease both;
}
.hero-sub img{
  display: block; 
  margin: 50px auto 50px; 
  width: 420px; 
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-sub strong {
  color: #fff;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 46px;
  animation: fd .6s .3s ease both;
}
/* 선착순 모집 Card area style */
.sp-deadline-section {
  padding: 60px 0;
  position: relative;
}

.sp-deadline-box::before {
  display: none;
}

.sp-deadline-box {
  background-color: #091E2F;
  background-image: linear-gradient(rgba(6, 182, 212, 0.05), rgba(6, 182, 212, 0.05)), url('https://img.megastudyacademy.co.kr/campusdev/iws_html_img/event/20260318/MEGASTUDY-3760/bg02.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 15px;
  padding: 25px 50px 25px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sp-deadline-content {
  text-align: left;
  flex: 1;
}

.sp-deadline-visual {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  justify-content: flex-start;
}

.sp-deadline-visual img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 20px 50px rgba(6, 182, 212, 0.4));
  animation: wobble 4s ease-in-out infinite;
}

.sp-notice-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 5px;
  display: block;
}

.sp-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.sp-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  margin-bottom: 0;
}

.sp-deadline-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Benefits Grid */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ben-card {
  background: linear-gradient(#080416 0%, #0C2539 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 50px;
  transition: border-color .3s, transform .3s;
}

.ben-card:hover {
  border-color: rgba(6, 182, 212, .28);
  transform: translateY(-4px);
}

.ben-icon {
  font-size: 32px;
  margin-bottom: 5px;
  display: block;
}

.mo-br {
  display: none;
}

@keyframes scroll-l {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(-50%);
  }
}

@keyframes scroll-r {
  0% {
      transform: translateX(-50%);
  }

  100% {
      transform: translateX(0);
  }
}



@keyframes wobble {

  0%,
  100% {
      transform: perspective(1200px) rotateZ(-10deg);
      filter: brightness(1);
  }

  50% {
      transform: perspective(1200px) rotateZ(10deg);
      filter: brightness(1.2);
  }
}

.ben-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.ben-card p {
  font-size: 16px;
  color: var(--gray2);
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.chip {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .04);
  color: var(--gray2);
}

.chip.hl {
  border-color: rgba(245, 166, 35, .5);
  color: var(--gold);
  background: rgba(245, 166, 35, .07);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  animation: fd .6s .4s ease both;
  gap: 40px; 
  margin-top: 80px;
}

.btn-primary {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(26, 86, 219, .4);
  transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 86, 219, .5);
}

.btn-ghost {
  font-size: 16px;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: background .2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
}

@keyframes fd {
  from {
      opacity: 0;
      transform: translateY(-18px)
  }

  to {
      opacity: 1;
      transform: translateY(0)
  }
}
/* SECTIONS - Base Styles from landing.html */
.why-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 50px;
  align-items: center;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card {
  padding: 20px 35px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border2);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: border-color .3s;
}

.why-card:hover {
  border-color: rgba(6, 182, 212, .3);
}

.why-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan);
  min-width: 70px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.3;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.crisis-section {
  background: var(--navy2);
  overflow: hidden;
}

.crisis-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-end;
}

.crisis-text p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray2);
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.crisis-text p strong {
  color: #FFF;
}

.crisis-text .highlight {
  color: var(--cyan);
  font-weight: 700;
}

.crisis-cards {
  display: flex;
  flex-direction: column;
}

.crisis-card {
  display: flex; 
  gap: 30px; 
  align-items: center;
  padding: 28px 32px;
  border-radius: 14px;
  border: 1px solid;
}

.crisis-card.bad {
  background: rgba(248, 113, 113, 0.05);
  border-color: rgba(248, 113, 113, 0.2);
  margin-bottom: 3px;
  padding: 20px 25px;
}

.crisis-card.good {
  background: rgb(26 86 219 / 14%);
  border-color: rgb(26 86 219 / 38%);
  margin-bottom: 3px;
  padding: 20px 25px;
}

.crisis-card span{
  font-size: 32px; 
  flex-shrink: 0;
}

.crisis-card-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.crisis-card.bad .crisis-card-label {
  color: #F87171;
}

.crisis-card.good .crisis-card-label {
  color: #93C5FD;
}

.crisis-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.crisis-card .card-body-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray2);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.crisis-arrow {
  text-align: center;
  font-size: 22px;
  color: var(--gray);
  padding: 4px 0;
}

.jobs-section {
  background: linear-gradient(180deg, var(--navy2) 0%, #050C18 100%);
}

.jobs-intro {
  text-align: center;
  margin-bottom: 64px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.job-card {
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform .3s;
}

.job-card:hover {
  transform: translateY(-4px);
}

.job-card.data {
  background: linear-gradient(140deg, rgb(16 185 129 / 14%) 0%, rgba(14, 116, 144, .06) 100%);
  border: 1px solid rgb(6 185 129 / 38%);
}

.job-card.svc {
  background: linear-gradient(140deg, rgba(139, 92, 246, .1) 0%, rgba(109, 40, 217, .06) 100%);
  border: 1px solid rgba(139, 92, 246, .38);
}

.job-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.job-card.data .job-icon {
  background: rgb(6 212 130 / 15%);
}

.job-card.svc .job-icon {
  background: rgba(139, 92, 246, .15);
}

.job-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.job-card .job-desc {
  font-size: 16px;
  color: var(--gray2);
  line-height: 1.4;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.job-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kw {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--gray2);
}

/* COURSES */
/* Course Tabs */
.course-tabs-section {
  background: #050C18;
}

.course-tabs {
  display: flex;
  justify-content: center;
  background: #050C18;
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
  margin-bottom: 30px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
  flex: 1;
  background: #252C3A;
  border: none;
  color: #555;
  padding: 22px 30px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.5px;
}

.tab-btn.active.data {
  background: #06D482;
  color: #fff;
}

.tab-btn.active.svc {
  background: var(--svc-c);
  color: #fff;
}

.course-section.data-bg,
.course-section.svc-bg {
  display: block;
  background: linear-gradient(180deg, var(--navy) 0%, #050C18 100%);
}

.course-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}

.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 5px 25px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.data-bg .c-badge {
  background: rgb(6 212 130 / 12%);
  border: 1px solid rgb(6 212 130 / 30%);
  color: #06D482;
}

.svc-bg .c-badge {
  background: rgba(139, 92, 246, .12);
  border: 1px solid rgba(139, 92, 246, .3);
  color: #A78BFA;
}

.c-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.c-desc {
  font-size: 16px;
  color: var(--gray2);
  line-height: 1.4;
  margin-bottom: 26px;
  letter-spacing: -0.5px;
}

.c-desc strong {
  color: #fff;
}

.c-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 14px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--gray2);
}

.c-visual {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

.data-vis {
  background: linear-gradient(135deg, #081420, #040C18);
  border: 1px solid rgba(6, 182, 212, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  gap: 14px;
}

.pipe-lbl {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1.0px;
  text-transform: uppercase;
  margin: 12px 0;
}

.pipe-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.pipe-node {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid;
  letter-spacing: -0.5px;
}

.pn1 {
  background: rgba(6, 182, 212, .14);
  border-color: rgba(6, 182, 212, .38);
  color: var(--cyan);
}

.pn2 {
  background: rgba(26, 86, 219, .14);
  border-color: rgba(26, 86, 219, .38);
  color: #93C5FD;
}

.pn3 {
  background: rgba(139, 92, 246, .14);
  border-color: rgba(139, 92, 246, .38);
  color: #C4B5FD;
}

.pn4 {
  background: rgba(16, 185, 129, .14);
  border-color: rgba(16, 185, 129, .38);
  color: #6EE7B7;
}

.pipe-arr {
  font-size: 16px;
  color: var(--gray);
}

.svc-vis {
  background: linear-gradient(135deg, #0E0820, #080414);
  border: 1px solid rgba(139, 92, 246, .18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.chat-wrap {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-end;
}

.bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 11px;
  font-size: 14px;
  line-height: 1.5;
}

.bubble.u {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--svc-d), var(--svc-c));
  color: #fff;
  border-bottom-right-radius: 3px;
}

.bubble.a {
  align-self: flex-start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--gray2);
  border-bottom-left-radius: 3px;
}

.typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 11px;
  border-bottom-left-radius: 3px;
}

.tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--svc-c);
  animation: td 1.4s infinite;
}

.tdot:nth-child(2) {
  animation-delay: .2s
}

.tdot:nth-child(3) {
  animation-delay: .4s
}

@keyframes td {

  0%,
  80%,
  100% {
      transform: scale(.8);
      opacity: .4
  }

  40% {
      transform: scale(1);
      opacity: 1
  }
}

.svc-pills {
  display: flex;
  gap: 5px;
  padding: 12px 22px;
  background: rgba(0, 0, 0, .28);
  border-top: 1px solid rgba(255, 255, 255, .05);
  flex-wrap: wrap;
}

.svc-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 3.5px 10px;
  border-radius: 4px;
  color: #A78BFA;
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(139, 92, 246, .2);
}

.crisis-text p {
  font-size: 16px;
}

.c-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.info-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: border-color .3s;
}

.box-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.data-bg .box-label {
  color: #06D482;
}

.svc-bg .box-label {
  color: #A78BFA;
}

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

.chk-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--gray2);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  letter-spacing: -0.5px;
}

.chk-list li:last-child {
  border: none;
}

.chk-list li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
}

.data-bg .chk-list li::before {
  color: #06D482;
}

.svc-bg .chk-list li::before {
  color: #A78BFA;
}

.curr-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.curr-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.data-bg .cn {
  background: rgb(6 212 130 / 15%);
  color: #06D482;
}

.svc-bg .cn {
  background: rgba(139, 92, 246, .15);
  color: #A78BFA;
}

.curr-item .ct{letter-spacing: -0.5px;}
.ct strong {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.ct span {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.4;
  font-weight: 500;
}

.data-bg .ct span {
  color: #6C8C7F;
}

.svc-bg .ct>span {
  color: #AF97D5;
}

/* Course Features (from landing.html) */
.feat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 26px;
}

.feat-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: border-color .3s;
}

.data-bg .feat-box:hover {
  border-color: rgba(6, 182, 212, .28);
}

.svc-bg .feat-box:hover {
  border-color: rgba(139, 92, 246, .28);
}

.feat-ico {
  font-size: 24px;
  margin-bottom: 5px;
  display: block;
}

.feat-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.feat-box p {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.consult-banner {
  background: #06B6D4;
  padding: 20px 0;
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.consult-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 0 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consult-text {
  flex: 1;
}

.consult-img-wrap {
  margin-left: 40px;
}

.consult-img {
  max-height: 120px;
  width: auto;
  display: block;
  padding: 5px 0;
}

.consult-banner .consult-title {
  font-size: 26px;
  font-weight: 800;
  color: #080416;
  margin-bottom: 7px;
  line-height: 1.2;
  white-space: nowrap; /* Force single line as requested */
  word-break: keep-all;
}

.consult-banner p {
  font-size: 18px;
  color: #FFF;
  margin: 0;
  opacity: 0.9;
  letter-spacing: -0.5px;
}

.carousel-section {
  background: var(--navy);
  overflow: hidden;
  padding-bottom: 80px;
}
.carousel-section .container{
  text-align:center; margin-bottom:40px;
}
.carousel-section .container .sec-title{
  font-weight: 800; 
  line-height: 1.3; 
  letter-spacing: 0;
  
}


.carousel-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.carousel-item {
  padding: 12px 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  color: var(--gray2);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-right: 15px;
  /* Use margin instead of gap for seamless math */
}

.anim-l {
  animation: scroll-l 50s linear infinite;
}

.anim-r {
  animation: scroll-r 50s linear infinite;
  margin-top: 15px;
}



/* care-section */
.care-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px; /* Precise control for 1180px available inner width */
}

.care-section .container .jobs-intro{text-align: center;}
.care-section .container .jobs-intro .sec-eyebrow{
  background: var(--cyan-dim); 
  border-color: rgba(6, 182, 212, 0.3); 
  color: var(--cyan);
}
.care-section .container .jobs-intro .sec-desc{
  max-width: 900px; 
  margin-left: auto; 
  margin-right: auto; 
  text-align: center;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 560px);
  gap: 20px;
  margin-top: 56px;
  justify-content: center;
}

.care-card {
  background: var(--navy);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 40px 35px 30px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  width: 560px;
  min-height: 220px;
}

.care-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
}

.care-img {
  width: 210px;
  height: 140px;
  margin-top: 20px;
  align-self: flex-start;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.care-info h4 {
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  word-break: keep-all;
}
.care-info h4 span.bold{
  font-size: 22px;
  font-weight: 600;
}

@media(max-width: 1200px) {
  .care-section .container {
      max-width: 100%;
      padding: 0 5%;
  }
  .care-grid {
      grid-template-columns: 1fr;
      justify-items: center;
  }
  .care-card {
      width: 100%;
      max-width: 560px;
  }
}


/* PROCESS */
.process-section {
  padding: 100px 0;
  background: var(--navy2);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  color: var(--gray2);
  line-height: 1.4;
}

.steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--svc-c));
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.step-num-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Wanted Sans Variable', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.step-item:nth-child(1) .step-num-circle {
  background: linear-gradient(135deg, #1A56DB, #06B6D4);
  box-shadow: 0 4px 18px rgba(6, 182, 212, .28);
  animation: stepGlow 4s infinite;
}

.step-item:nth-child(2) .step-num-circle {
  background: linear-gradient(135deg, #0E7490, #1A56DB);
  box-shadow: 0 4px 18px rgba(26, 86, 219, .28);
  animation: stepGlow 4s infinite 1s;
}

.step-item:nth-child(3) .step-num-circle {
  background: linear-gradient(135deg, #1A56DB, #6D28D9);
  box-shadow: 0 4px 18px rgba(109, 40, 217, .28);
  animation: stepGlow 4s infinite 2s;
}

.step-item:nth-child(4) .step-num-circle {
  background: linear-gradient(135deg, #6D28D9, #8B5CF6);
  box-shadow: 0 4px 18px rgba(139, 92, 246, .28);
  animation: stepGlow 4s infinite 3s;
}

@keyframes stepGlow {

  0%,
  20%,
  100% {
      filter: brightness(1);
      transform: scale(1);
  }

  10% {
      filter: brightness(1.5) saturate(1.2);
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  }
}

.step-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step-desc-txt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

@media(max-width: 900px) {
  .steps {
      flex-direction: column;
      gap: 30px;
  }

  .steps::before {
      display: none;
  }

  .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
  }

  .step-num-circle {
      margin: 0;
  }

  .step-title {
      font-size: 18px !important;
      margin-bottom: 5px !important;
  }

  .step-desc {
      font-size: 14px !important;
  }
}



/* FINAL SECTION */
.final-section {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--navy) 0%, #060E1B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(26, 86, 219, .14) 0%, transparent 70%);
}

.final-content {
  position: relative;
  z-index: 1;
}



.final-section h2 em {
  font-style: normal;
  color: #00F0FF;
}

.final-section p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--gray2);
  margin-bottom: 44px;
}

.btn-wrap {
  position: relative;
  display: inline-block;
}

.btn-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #ddd;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-data-final {
  font-size: 16px;
  font-weight: 600;
  padding: 17px 48px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0e9037, #06d480);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(6, 182, 212, .28);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-data-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6, 182, 212, .38);
}

.btn-svc-final {
  font-size: 16px;
  font-weight: 600;
  padding: 17px 48px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--svc-d), var(--svc-c));
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(139, 92, 246, .28);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-svc-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(139, 92, 246, .38);
}

/* MOADL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-card {
  background: #fff;
  width: 350px;
  border-radius: 10px;
  padding: 48px 25px 30px;
  position: relative;
  color: #333;
  border: 1px solid #E4E4E4;
  box-sizing: border-box;
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 95vh;
  overflow-y: hidden;
  overflow-x: hidden;
}

@keyframes modalPop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  display: block;
  position: absolute;
  top: 30px;
  right: -18px;
  font-size: 28px;
  color: #222;
  cursor: pointer;
  line-height: 1;
  display: flex;
  font-weight: 500;
  z-index: 9999;
}

/* 모달 헤더 */
.modal-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.modal-title h2 {
  font-size: 23px;
  line-height: 30px;
  color: #222222;
  font-weight: 500;
}

.modal-title h2 span {
  color: #0081FF;
  display: inline-block;
}

.card-icon {
  position: absolute;
  top: 22px;
  right: 0;
  width: 65px;
}

/* 캠퍼스 선택 */
.campus-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.campus-wrap input[type="radio"] {
  display: none;
}

.campus-toggle {
  display: flex;
  border: 1px solid #DDDDDD;
  font-size: 14px;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 34px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
}

.campus-wrap input[type="radio"]:checked + label .campus-toggle {
  border-color: #0081ff;
  color: #0081ff;
  font-weight: 600;
}

/* 폼 전체 */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* 이름/연락처 행 */
.form-row {
  display: flex;
  gap: 7px;
}

/* 공통 input */
.modal-form input[type="text"],
.modal-form input[type="tel"] {
  height: 40px;
  border-radius: 5px;
  width: 100%;
  background-color: #F1F3F8;
  color: #999 !important;
  -webkit-text-fill-color: #999 !important;
  opacity: 1 !important;
  font-size: 15px;
  font-weight: 500;
  outline: 0;
  border: 0;
  padding: 10px 20px;
  box-sizing: border-box;
}

.modal-form input::placeholder {
  color: #999999;
  font-size: 14px;
}

/* 이름 input 너비 */
.form-row input[name="cs_name"] {
  width: 135px;
  flex-shrink: 0;
}

/* select → 공통_fix의 label 드롭다운 스타일 */
.modal-form select {
  height: 40px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #0081FF;
  background-color: #fff;
  color: #0081ff;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  padding: 0 20px;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M9 1L5 5L1 1' stroke='%230081FF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
  cursor: pointer;
}

.modal-form select option {
  color: #222;
}

/* textarea 감싸는 라벨 */
label.application_inner {
  position: relative;
  display: block;
  width: 100%;
  height: 68px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  box-sizing: border-box;
}

label.application_inner textarea[name="cs_memo2"] {
  width: 100%;
  height: 56px;
  border: 0;
  resize: none;
  padding: 8px 14px;
  box-sizing: border-box;
  outline: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #222222;
}

label.application_inner textarea::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

label.application_inner textarea::-webkit-scrollbar-thumb {
  background-color: #CCCCCC;
  border-radius: 3px;
}

label.application_inner textarea::-webkit-scrollbar-track {
  background-color: #EEEEEE;
  border-radius: 3px;
}

#customPlaceholder {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  display: flex;
  align-items: center;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
  word-break: keep-all;
}

textarea:focus ~ #customPlaceholder {
  opacity: 0 !important;
  pointer-events: none;
}

/* 개인정보 동의 영역 */
.privacy-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-size: 13px;
  color: #666;
}

.agr_container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 15px;
}

.agr_container .agrC {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  gap: 6px;
}

.agr_container p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1;
  font-size: 14px;
  color: #999999;
  cursor: pointer;
}

.agr_container img {
  width: 10px;
  display: block;
}

.privacy-wrap input[type="checkbox"] {
  margin: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* 개인정보 상세 박스 */
.privacy-detail-box {
  overflow: hidden;
  padding: 0 20px;
  background-color: #F1F3F8;
  border-radius: 10px;
  /* font-size: 14px;
  line-height: 20px; */
  color: #999;
  box-sizing: border-box;
  width: 100%;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.privacy-detail-box.open {
  font-size: 14px;
  line-height: 20px;
  max-height: 120px;
  padding: 15px 20px;
  overflow-y: auto;
  opacity: 1;
}


.privacy-toggle-btn {
  cursor: pointer;
  transition: transform 0.25s ease;
  vertical-align: middle;
}

.privacy-toggle-btn.open {
  transform: scaleY(-1);
}

/* 제출 버튼 */
.submit-btn {
  background: #ccc;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0;
  height: 52px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
  margin-top: 5px;
  transition: background 0.2s;
}

/* 동의 체크 시 버튼 활성화 — JS에서 .active 클래스 부여 필요 시 */
.submit-btn.active,
.submit-btn:not([disabled]) {
  background: #0081FF;
  cursor: pointer;
  pointer-events: unset;
}

/* 기존 onclick이 있으므로 항상 클릭 가능하게 유지 */
/*#modalSubmitBtn {
  background: #0081FF;
  cursor: pointer;
  pointer-events: unset;
}*/

#modalSubmitBtn:hover {
  background: #0056b3;
}

/* ───────── 반응형 ───────── */
@media screen and (max-width: 768px) {
  .modal-card {
    width: 80.7292vw;
    padding: 7.8125vw 6.5104vw 6.5104vw;
    border-radius: 2.8vw;
  }

  .modal-close {
    top: 3.5104vw;
    right: 5.5104vw;
    font-size: 9vw;
    font-weight: 300;
  }

  .modal-header {
    margin-bottom: 4.4271vw;
  }

  .modal-title h2 {
    font-size: 4.4271vw;
    line-height: 5.2083vw;
  }

  .card-icon {
    width: 13.5vw;
    top: -1.18vw;
    right: 6vw;
  }

  .campus-wrap {
    gap: 1.9531vw;
  }

  .campus-toggle {
    font-size: 3.1250vw;
    padding: 2.2135vw 2.6041vw;
    border-radius: 4.4271vw;
  }

  .modal-form {
    gap: 2.6042vw;
  }

  .form-row {
    gap: 0.9115vw;
  }

  .modal-form input[type="text"],
  .modal-form input[type="tel"] {
    height: 9.1146vw;
    border-radius: 0.6510vw;
    font-size: 3.3854vw;
    padding: 1.3021vw 2.6042vw;
  }

  .modal-form input::placeholder {
    font-size: 3.1250vw;
  }

  .form-row input[name="cs_name"] {
    width: 31.9010vw;
  }

  .modal-form select {
    height: 9.1146vw;
    border-radius: 0.6510vw;
    font-size: 3.1250vw;
    padding: 0 2.6042vw;
  }

  label.application_inner {
    height: 14.4531vw;
    padding: 1.9531vw 1.1719vw;
    border-radius: 0.6510vw;
  }

  label.application_inner textarea[name="cs_memo2"] {
    height: 10.5469vw;
    font-size: 3.1250vw;
    line-height: 4.4271vw;
    padding: 1.3021vw 1.9531vw;
  }

  #customPlaceholder {
    left: 2.6042vw;
    font-size: 3.1250vw;
    line-height: 4.4271vw;
    padding-right: 2.6042vw;
  }

  .agr_container {
    gap: 2.6042vw;
    padding: 1.3021vw 0 1.9531vw;
  }

  .agr_container p {
    font-size: 3.1250vw;
    line-height: 3.2552vw;
    gap: 2.6042vw;
  }

  .agr_container img {
    width: 2.0833vw;
  }

  .privacy-wrap input[type="checkbox"] {
    width: 3.90625vw;
    height: 3.90625vw;
  }

  .privacy-detail-box.open {
    max-height: 15.6250vw;
    font-size: 2.8646vw;
    line-height: 3.9063vw;
    padding: 3.2552vw 3.9063vw;
    border-radius: 1.3021vw;
  }

  .submit-btn,
  #modalSubmitBtn {
    height: 11.3281vw;
    border-radius: 1.3021vw;
    font-size: 3.6458vw;
  }
}

.popup_common_agree {
  display: none; 
  position: fixed;
  top: 0; left: 0;bottom:0;right:0;
  background: rgba(0,0,0,0.5);
  justify-content: center; 
  align-items: center;
  z-index: 100000;
}
.popup_common_agree_title{
  padding: 4px 15px;background: #F1F3F8;
  text-align: right;
}
.popup_common_agree_content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 290px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  padding-bottom: 20px;
}

.popup_common_agree_content p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height:20px;
  font-weight: 500;
  font-family: "Wanted Sans Variable";
  padding:15px 20px 0;
  color:#333;
  text-align: left;
}
.popup_common_agree_content .popupBtn {
  display: flex;gap:10px;
  margin-left: auto;
  margin-right: 20px;
  width: fit-content;
  align-items: center;
}
.popup_common_agree_content .popupBtn > a.popupAgreeSuccess {
  padding: 7px 13px;
  background: #999;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: "Wanted Sans Variable";
  display: flex;
  width: fit-content;
}
.popup_common_agree_content .popupBtn > a.popupAgreeClose:last-child {
  padding: 7px 13px;
  background: #fff;
  color: #999999;
  border: 1px solid #999999;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: "Wanted Sans Variable";
  display: flex;
  width: fit-content;
}

.fixed_popup_btn {
  position: fixed;
  top:21%;
  right:3%;
  padding-top:20px;
  z-index: 98;
  display: flex;flex-direction: column;gap:20px;
  opacity: 1;
  transition: opacity .5s ease-in-out;
}
.fixed_popup_btn.on{
  opacity: 0;
}
.fixed_popup_btn .popup_bn_box{
  border-radius: 10px;
  overflow: hidden;
}

.fixed_popup_btn .popup_bn_box a{
  display: flex;flex-direction: column;
}