:root {
  --primary-blue: #1c36ad;
  --dark-bg: #0e0e0f;
  --light-bg: #f8f8fc;
  --text-dark: #080808;
  --text-gray: #5c5c66;
  --text-light: #ededf8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", "Inter", sans-serif;
  background-color: #080808;
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
h2 {
  font-size: 30px;
  font-weight: bold;
}
/* Small devices (≥576px) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XXL devices (≥1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.hidden-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

/* CSS for section section:TopBar */
#top-bar {
  background-color: #1c36ad;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.top-bar-content {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticker-text {
  display: flex;
  gap: 6px;
  color: #ededf8;
  font-size: 12px;
  font-weight: 500;
}
.ticker-item {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* CSS for section section:Header */
#header {
  background-color: #0e0e0f;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}
.header-container {
  height: 72px;
  display: flex;
  align-items: center;
}
.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 110px;
  height: 30px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-menu {
  display: flex;
  gap: 32px;
}
.menu-item {
  color: #ededf8;
  text-decoration: none;
  font-size: 15px;
}
.menu-item:hover {
  text-decoration: underline;
}
.btn-primary {
  background-color: #20348e;
  border: 1px solid #20348e;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #ededf8;
  color: #20348e;
}

/* CSS for section section:Hero */

.hero-bg {
  position: relative;
  width: 100%;
  background: url(../images/hero-bg.png) no-repeat center center;
  background-size: cover;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 90px 0;
  margin: 0 auto;
  width: 85%;
}
.hero-content .countdown-container {
  background-color: transparent;
    margin-bottom: 30px;
}
.hero-content .time-box {
  background: #e0ecfc;
}
.hero-content .countdown-timer {
  justify-content: flex-start;
}
.hero-text-group {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #f8f8fc;
  border: 1px solid #002eff;
  border-radius: 999px;
  color: #1c36ad;
  font-weight: 500;
  font-size: 14px;
}
.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 0 16px 0;
  color: #080808;
}
.hero-subtitle {
  color: #5c5c66;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 20px;
}
.countdown-container {
  background-color: #dcedff;
  padding: 16px 0;
}
.countdown-label {
  font-weight: 700;
  margin-bottom: 10px;
}
.countdown-timer {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.time-unit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.time-box {
  background: #ededf8;
  border-radius: 10px;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #080808;
}
.unit-label {
  font-weight: 500;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #20348e;
  border: 1px solid #20348e;
  color: white;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease;
}
.btn-hero:hover {
  box-shadow: -1px 8px 23px -6px rgba(0, 0, 0, 0.71);
  -webkit-box-shadow: -1px 8px 23px -6px rgba(0, 0, 0, 0.71);
  -moz-box-shadow: -1px 8px 23px -6px rgba(0, 0, 0, 0.71);
}
.disclaimer {
  font-size: 12px;
  color: #9797a5;
  margin: 0;
}
.hero-visuals {
  width: auto;
}

/* CSS for section section:Prize */
#prize {
  background-color: #dcedff;
  padding: 80px 0;
}
.prize-header {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.prize-badge {
  background: white;
  padding: 32px 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.prize-badge-text .highlight {
  color: #1c36ad;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 6px 0;
}
.prize-badge-text .sub-text {
  color: #9797a5;
  font-size: 14px;
  margin: 0;
}
.prize-grid {
  display: flex;
  justify-content: center;
  gap: 27px;
  flex-wrap: wrap;
}
.prize-card {
  width: 250px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.prize-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.prize-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prize-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 270px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 44%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.prize-info {
  position: absolute;
  bottom: 30px;
  left: 20px;
  color: white;
}
.rank-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  border: 1px solid rgba(88, 125, 255, 0.5);
}
.rank-1 {
  background-color: #587dff;
}
.rank-2 {
  background-color: #7ca4e5;
}
.rank-3 {
  background-color: #8fcac8;
}
.rank-4 {
  background-color: #8abdd5;
}
.prize-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* CSS for section section:Method */
#method {
  background-color: #f8f8fc;
  padding: 100px 0;
  text-align: center;
}
.method-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
#method .sub-text {
    color: #9797a5;
    font-size: 13px;
    margin-top: 30px;
}
.badge-blue {
  display: inline-block;
  background: #587dff;
  color: white;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  line-height: 130%;
}
.badge-blue .thumb-badge {
  position: absolute;
  top: -29px;
  left: -34px;
}
.yellow-color {
  color: #f4e13a;
}
.method-header h2 {
  margin: 0 0 10px 0;
}
.method-header p {
  color: #5c5c66;
  margin: 0;
  font-size: 14px;
}
.steps-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 52%;
  margin: 0 auto;
  border-top: 1px solid #c8d0fa;
  border-bottom: 1px solid #c8d0fa;
  padding: 15px 0;
}
.step-item {
  position: relative;
  z-index: 2;
  padding: 0 10px 30px 10px;
}
.step-badge {
  padding: 10px 24px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 38px;
  align-items: center;
  display: flex;
}
.step-1 {
  background-color: #587dff;
}
.step-2 {
  background-color: #7ca4e5;
}
.step-3 {
  background-color: #8fcac8;
}
.step-4 {
  background-color: #ed74b0;
}

.step-content h3 {
  font-size: 24px;
  margin: 10px 0 5px 0;
}
.step-content p {
  color: #5c5c66;
  margin: 0;
  font-size: 16px;
}
.step-connector {
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8d0fa;
  width: 100%;
}

/* CSS for section section:Banner */
#banner {
  background: #080808; 
  padding: 30px 0;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: white;
}
.banner-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.banner-text h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
}
.banner-text p {
  margin: 0;
  color: #878787;
}
.btn-banner {
  background: #ededf8;
  border: 1px solid #ededf8;
  color: #080808;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-banner:hover {
  background: transparent;
  color: white;
}
/* CSS for section section:Services */
#services {
  background: linear-gradient(180deg, #091759 0%, #0e1019 100%);
  padding: 100px 0;
  color: #EDEDF8;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 100px;
}
.service-card {
  background: rgba(124, 164, 229, 0.15);
  border: 1px solid rgba(88, 125, 255, 0.5);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap:2px
}
.badge-red {
  background: rgba(239, 68, 68, 0.25);
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(239, 68, 68, 0.5)
}
.badge-green {
  background: rgba(34, 197, 94, 0.13);
  color: #22c55e;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(34, 197, 94, 0.5)  

}
.badge-orange {
  background: rgba(245, 158, 11, 0.13);
  color: #f59e0b;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(245, 158, 11, 0.5)
}
.badge-darkblue {
  background: rgba(28, 54, 173, 0.6);
  color: #EDEDF8;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}
.btn-detail {
  background: rgba(237, 237, 248, 0.7);
  border: 1px solid rgba(237, 237, 248, 0.7);
  color: #20348e;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.btn-detail:hover {
  background: none;
  color: rgba(237, 237, 248);
}
.service-card h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
}
.details-wrap {
  display: flex;
  gap: 30px;
}
.card-desc p {
  color: #9797a5;
  font-size: 14px;
  margin: 0;
}
.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tag {
  background: rgba(32, 52, 142, 0.3);
  border: 1px solid rgba(88, 125, 255, 0.5);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.card-price {
  width: 33%;
  flex-shrink: 0;
}
.price-label {
  color: #9797a5;
  font-size: 20px;
}
.price-value .amount {
  font-size: 35px;
  font-weight: 700;
}
.price-value .unit {
  font-size: 16px;
}

.partner-section {
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.partner-section h2 {
  margin-bottom: 50px;
}

/* Marquee Wrapper */
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Gradient fade edges */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0b1435 0%, transparent 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0b1435 0%, transparent 100%);
}

/* Track */
.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
}
.draggable {
  cursor: grab;
  user-select: none;
}

.draggable.dragging {
  cursor: grabbing;
}

.logo-track {
  user-select: none;
  will-change: transform;
}
.logo-track img {
  pointer-events: none;
}
/* Left scrolling */
.scroll-left {
  animation: scrollLeft 30s linear infinite;
}

/* Right scrolling */
.scroll-right {
  animation: scrollRight 30s linear infinite;
}

/* Logos */
.partner-section .logo {
  flex: 0 0 auto;
  transition: 0.3s;
  width: 150px;
  height: auto;
}

.partner-section .logo img {
  height: 60px;
  object-fit: contain;
}

.partner-section .logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Animations */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-section {
    padding: 50px 0;
  }
  .partner-section h2 {
    font-size: 18px;
  }
  .partner-section.logo img {
    height: 40px;
  }
  .logo-track {
    gap: 40px;
  }
}

/* CSS for section section:Webinar */
#webinar {
  background: linear-gradient(90deg, #1a2540 0%, #0b0f1a 100%);
  padding: 40px 0;
  color: white;
}
.webinar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.webinar-tag {
  background: rgba(32, 52, 142, 0.3);
  border: 1px solid rgba(88, 125, 255, 0.5);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: bold;
  align-self: flex-start;
}
.webinar-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.webinar-date {
  display: flex;
  gap: 20px;
  color: #ededf8;
  font-size: 13px;
}
.webinar-title {
  font-size: 30px;
  font-weight: 800;
  color: #ededf8;
}
.webinar-desc {
  color: #9797a5;
  margin: 0;
}
.color-pink {
  color: #ff0066;
}
.btn-webinar {
  background: #20348e;
  border: 1px solid #20348e;
  color: white;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
}
.btn-webinar:hover {
  background: #ededf8;
  color: #20348e;
}

/* CSS for section section:Details */
#details {
  background-color: #ededf8;
  padding: 80px 0;
}
.details-header {
  text-align: center;
  margin-bottom: 40px;
}
.details-header h2 {
  margin: 0 0 10px 0;
}
.details-header p {
  color: #9797a5;
  margin: 0;
}

.details-table {
  background: #ededf8;
  border: 1px solid rgba(63, 63, 68, 0.05);
  border-radius: 20px;
  overflow: hidden;
  max-width: 57%;
  margin: 0 auto 60px auto;
  font-size: 20px;
}
.d-row {
  display: flex;
  border-bottom: 1px solid rgba(63, 63, 68, 0.05);
}
.d-row:last-child {
  border-bottom: none;
}
.d-head {
  background: #dae7fa;
  width: 150px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.d-content {
  background: #f1f1fb;
  flex: 1;
  padding: 24px 20px;
  color: #5c5c66;
}
.d-content p {
  margin: 0 0 4px 0;
}
.d-content .small {
  font-size: 16px;
  color: #9797a5;
}

.details-notice {
  max-width: 57%;
  margin: 0 auto;
  background: #f1f1fb;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #3f3f440d;
}
.details-container h3 {
  color: #9797a5;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}
.details-notice ul {
  padding-left: 20px;
  color: #9797a5;
  font-size: 14px;
  line-height: 1.6;
}

/* CSS for section section:BottomCTA */
#bottom-cta {
  background-color: #f2f2fa;
  padding: 40px 0;
  text-align: center;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-content h2 {
  margin: 20px 0 10px 0;
  font-size: 40px;
}
.cta-content p {
  margin: 0 0 30px 0;
  font-size: 16px;
  color: #5c5c66;
}

/* CSS for section section:Footer */
#footer {
  background-color: #080808;
  padding: 60px 0;
  color: #9797a5;
  font-size: 14px;
}
.footer-info {
  font-size: 12px;
}
.footer-container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  font-size: 13px;
}

.footer-links a {
  color: #9797a5;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-info p {
  margin: 4px 0;
  line-height: 18px;
}
.company-name {
  color: white;
  font-weight: 500;
  margin: 0 0 8px 0 !important;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.divider {
  width: 2px;
  height: 20px;
  background: #3f3f44;
}
.hidden-desktop{
  display: none;
}
.hidden-mobile {
    display: block;
  }
@media (max-width: 1024px) {
  .hero-content {
    padding: 130px 0 50px 0;
    flex-direction: column;
  }
  .header-container {
    padding: 0 20px;
  }
  .header-menu {
    display: none;
  }
  .banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .webinar-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .method-header {
    text-align: center;
  }
  .prize-badge {
    padding: 16px 24px;
    gap: 5px;
  }
  .prize-badge-text .highlight {
    font-size: 18px;
  }
  .prize-badge-text .sub-text {
    font-size: 12px;
  }
  .steps-visual {
    width: 80%;
  }
  .step-item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
  }
  .step-badge {
    align-self: center;
    position: initial;
  }
  .time-unit {
    font-size: 12px;
    flex-shrink: 0;
  }
  .hero-title {
    font-size: 25px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .details-table {
    max-width: 100%;
    font-size: 13px;
    margin: 0 auto 20px auto;
  }
  .d-content .small {
    font-size: 11px;
  }
  .details-notice {
    max-width: 100%;
    padding: 20px 16px;
  }
  .details-notice ul {
    font-size: 13px;
  }
  .countdown-label {
    font-size: 12px;
    letter-spacing: -1px;
    margin-right: 4px;
  }
  .countdown-timer {
    gap: 4px;
  }
  .time-box {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .time-unit {
    gap: 4px;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .details-header h2 {
    font-size: 24px;
  }
  .webinar-date {
    flex-direction: column;
    gap: 6px;
  }
  .footer-container {
    flex-direction: column-reverse;
    margin-top: 50px;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    gap: 15px;
  }
  .service-card{
    gap: 20px;
  }
  .details-wrap{
    flex-direction: column;
    gap: 15px;
  }
  .card-price{
    width: 100%;
  }
  .card-header{
    justify-content: flex-start;
    gap: 10px;
  }
  .hidden-mobile {
    display: none;
  }
  .hidden-desktop{
  display: block;
  }
  .badge-orange, .badge-green, .badge-red, .badge-blue {
    font-size: 12px;
    padding: 4px 12px;
  }
}
