@charset "utf-8";

/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --c-primary: #5946fa;
  --c-primary-400: #e6e3fe;
  --c-primary-600: #948afb;
  --c-primary-800: #6b5bfb;
  --c-gray-900: #111827;
  --c-gray-700: #374151;
  --c-gray-600: #485563;
  --c-gray-500: #687280;
  --c-gray-400: #9ca3af;
  --c-gray-200: #e8e8e8;
  --c-gray-100: #f3f4f6;
  --c-dark: #251f3a;
}

/* ============================================================
   Base
   ============================================================ */
html {
  font-size: 10px;
}
body {
  font-family: "Pretendard", sans-serif;
  color: var(--c-gray-900);
  background: #fff;
}
#container {
  position: relative;
  height: 1dvh;
}
#container > section,
.site-footer {
  position: fixed;
  top: 0;
  left: 0;
  padding: 18rem 0;
  width: 100%;
  height: 100dvh;
  transform: translateY(100%) translateZ(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow-y: auto;
  backface-visibility: hidden;
  overflow: hidden;
}
.site-footer {
  height: auto;
  bottom: 0;
  top: auto;
}
#container > section:first-child {
  transform: translateY(0) translateZ(0);
}
section {
  height: 100dvh;
}
.color-primary {
  color: var(--c-primary);
}

/* ============================================================
   Common Overlay
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.section-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.018rem;
  line-height: 1.4;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.3rem 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.018rem;
  border-radius: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.85;
}
.btn img {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
}

.btn--white {
  background: #fff;
  color: var(--c-primary);
}
.btn--outline {
  background: transparent;
  border: 0.1rem solid #fff;
  color: #fff;
}
.btn--primary-sm {
  background: var(--c-primary);
  color: #fff;
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

/* ============================================================
   Skip Navigation
   ============================================================ */
#skipnavi {
  position: relative;
  z-index: 9999;
}
#skipnavi .skip {
  position: absolute;
  top: -999.9rem;
  left: -999.9rem;
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
}
#skipnavi .skip:focus {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.8rem 1.6rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.4rem;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 8rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img {
  height: 2.2rem;
  width: auto;
  display: block;
}
.gnb-nav {
  display: flex;
  align-items: center;
}
.gnb-nav a {
  padding: 2rem 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-gray-700);
  letter-spacing: -0.018rem;
  transition: color 0.2s;
}
.gnb-nav a:hover {
  color: var(--c-primary);
}
.btn-join {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding: 0 1.6rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 0.8rem;
  letter-spacing: -0.018rem;
  transition: opacity 0.2s;
}
.btn-join:hover {
  opacity: 0.9;
}

/* ============================================================
   ¨ç Hero Section
   ============================================================ */
.sec-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 7.69%,
    rgba(72, 58, 153, 0.1) 26.44%
  );
}
.sec-hero .sec-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20rem;
}
/* ÅØ½ºÆ® ÄÜÅÙÃ÷ */
.sec-hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  z-index: 2;
  margin-top: 15%;
}
.sec-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.6rem;
  height: 3.3rem;
  background: #fff;
  border-radius: 10rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-gray-900);
  letter-spacing: -0.018rem;
  white-space: nowrap;
  width: fit-content;
}
.sec-hero__title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.048rem;
  color: var(--c-gray-900);
}
.sec-hero__title span {
  color: var(--c-primary);
}
.sec-hero__sub {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--c-gray-600);
  letter-spacing: -0.028rem;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  min-height: 8rem; /* µÎ ÁÙ Á¤µµÀÇ ³ôÀÌ È®º¸ */
}
.sec-hero__sub span {
  display: block;
  position: relative;
  width: 100%;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}
.sec-hero__sub span.slide-out {
  transform: translateY(-100%);
  opacity: 0;
}
.sec-hero__sub span.slide-in {
  transform: translateY(100%);
  opacity: 0;
}
.sec-hero__sub span.active {
  transform: translateY(0);
  opacity: 1;
}
.sec-row {
  position: relative;
}
/* ¿À¸¥ÂÊ Àå½Ä ¿µ¿ª */
.sec-hero__deco {
  position: absolute;
  right: -250px;
  top: 35%;
  transform: translateY(-50%);
  width: 960px;
  height: 960px;
  pointer-events: none;
  z-index: 1;
}

/* planet scene */
.sec-hero__deco .scene {
  position: relative;
  width: 960px;
  height: 960px;
}
.sec-hero__deco canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 960px;
}
#cv-back {
  z-index: 1;
}
#cv-front {
  z-index: 20;
  pointer-events: none;
}

.sec-hero__deco .planet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24.3rem;
  height: 23.5rem;
  z-index: 10;
}
.sec-hero__deco .planet img {
  width: 24.3rem;
  height: 23.5rem;
  object-fit: contain;
  display: block;
}
.sec-hero__deco .icons-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec-hero__deco .orbit-icon {
  position: absolute;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  will-change: left, top, transform, opacity, z-index;
}
.sec-hero__deco .orbit-icon svg {
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  overflow: visible;
}
.deco-ellipse {
  position: absolute;
}
.deco-ellipse--outer {
  width: 52.7rem;
  height: 79.8rem;
}
.deco-ellipse--inner {
  right: 23.5rem;
  width: 36.2rem;
  height: 58rem;
}
.deco-link-icon {
  position: absolute;
  width: 20rem;
  transform: rotate(-6.58deg);
}
.deco-bubble {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.226rem 0.452rem rgba(93, 81, 159, 0.14);
}
.deco-bubble img {
  display: block;
}

.deco-bubble--users {
  width: 7.6rem;
  height: 7.6rem;
}
.deco-bubble--users img {
  width: 3.6rem;
  height: 3.6rem;
}
.deco-bubble--group {
  width: 6.3rem;
  height: 6.3rem;
}
.deco-bubble--group img {
  width: 3.8rem;
  height: 3.8rem;
}
.deco-bubble--shield {
  width: 7.3rem;
  height: 7.3rem;
}
.deco-bubble--shield img {
  width: 3.4rem;
  height: 3.4rem;
}
.deco-bubble--growth {
  width: 6rem;
  height: 6rem;
}
.deco-bubble--growth img {
  width: 2.8rem;
  height: 2.8rem;
}
.deco-bubble--badge {
  width: 7.1rem;
  height: 7.1rem;
}
.deco-bubble--badge img {
  width: 4.1rem;
  height: 2.2rem;
}

.deco-dot {
  position: absolute;
}
.deco-dot--1 {
  width: 1.7rem;
  height: 1.7rem;
}
.deco-dot--2 {
  width: 1rem;
  height: 1rem;
}
.deco-dot--3 {
  width: 3.3rem;
  height: 3.3rem;
}
.deco-dot--4 {
  width: 3.3rem;
  height: 3.3rem;
}

/* ¿ìÃø ÇÃ·ÎÆÃ Ä«µå */
.sec-hero__cards {
  position: fixed;
  bottom: 2.8rem;
  right: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  z-index: 9999;
}
.hero-side-card {
  display: flex;
  width: 17.4rem;
  height: 5.5rem;
  padding: 1rem 1.2rem 1.2rem 1.2rem;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s;
  border-radius: 1rem;
  border: 1px solid var(--Primary-400, #e6e3fe);
  background: var(--White, #fff);

  /* shdow1 */
  box-shadow: 0 0 16px 0 rgba(120, 97, 255, 0.05);
}
.hero-side-card:hover {
  transform: translateX(-0.4rem);
}
.hero-side-card__label {
  color: #5946fa;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 1.6rem */
  letter-spacing: -0.032rem;
  transition: all 0.3s;
}
.hero-side-card img {
  width: 3.4rem;
  height: 3.4rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: all 0.3s;
}
.sec-hero__cards.is-active .hero-side-card {
  background: #5946fa;
  border: 1px solid #5946fa;
}
.sec-hero__cards.is-active .hero-side-card img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
}
.sec-hero__cards.is-active .hero-side-card .hero-side-card__label {
  color: #fff;
}
/* CTA ¹è³Ê */
.sec-hero__cta-bar {
  width: 100%;
  background: var(--c-primary);
  border-radius: 1.2rem;
  padding: 2rem 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0.254rem 0.509rem rgba(93, 81, 159, 0.5);
  z-index: 2;
}
.cta-bar__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #fff;
}
.cta-bar__text strong {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.024rem;
  line-height: 1.4;
}
.cta-bar__text p {
  font-size: 1.8rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: -0.018rem;
  line-height: 1.4;
}
.cta-bar__btns {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

/* ============================================================
   ¨è ¼­ºñ½º¼Ò°³ Section
   ============================================================ */
.sec-service {
  position: relative;

  background: #fff;
  overflow: hidden;
}
.sec-service .sec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec-service__text {
  width: 55.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.sec-service__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04rem;
  color: var(--c-gray-900);
}
.sec-service__desc {
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-gray-600);
  letter-spacing: -0.02rem;
  line-height: 1.5;
}
.sec-service__visual {
  width: 44.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 8%;
}
.phone-mockup {
  width: 32.7rem;
  filter: drop-shadow(-2.277rem 2.277rem 3.415rem rgba(172, 177, 187, 0.4));
}
.phone-mockup img {
  width: 100%;
  height: auto;
}
.sec-service__note {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-gray-400);
  letter-spacing: -0.014rem;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   ¨é ¼­ºñ½º Æ¯Â¡ Section
   ============================================================ */
.sec-features {
  position: relative;

  background: #fff;
  overflow: hidden;
}
.sec-features .sec-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
/* 01 - ¿ÞÂÊ »ó´Ü  */
.feature-item--tl {
}
/* 02 - ¿À¸¥ÂÊ Áß´Ü */
.feature-item--mr {
  margin-left: auto;
  margin-top: -3.5rem;
}
/* 03 - ¿ÞÂÊ ÇÏ´Ü  */
.feature-item--bl {
  margin-top: -3.5rem;
}

.feature-num {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--c-primary-600);
  letter-spacing: -0.032rem;
  line-height: 1.4;
}
.feature-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.04rem;
  line-height: 1.4;
}
.feature-desc {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-gray-500);
  letter-spacing: -0.018rem;
  line-height: 1.5;
}

/* ============================================================
   ¨ê È°µ¿¹æ¹ý Section
   ============================================================ */
.sec-how {
  position: relative;

  background: #fbfafc;
  overflow: hidden;
}
.sec-how .sec-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6.2rem;
}
.sec-how__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.sec-how__head h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.04rem;
  line-height: 1.4;
}

/* ½ºÅÜ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-step-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.how-step-img img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.how-step__label {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  font-size: 2.4rem;
  letter-spacing: -0.024rem;
  color: var(--c-primary);
  line-height: 1.4;
}
.how-step__label span {
  font-weight: 500;
}
.how-step__label strong {
  font-weight: 700;
}
.how-step__desc {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-gray-500);
  letter-spacing: -0.018rem;
  line-height: 1.5;
}
.how-step__desc small {
  font-size: 1.3rem;
  color: var(--c-gray-500);
}

/* ============================================================
   ¨ë È¸»ç¼Ò°³ Section
   ============================================================ */
.sec-company {
  position: relative;

  background: #fff;
  overflow: hidden;
}
.sec-company .sec-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
.sec-company__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.sec-company__head h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.04rem;
  line-height: 1.4;
}
/* ¦¡¦¡¦¡ company swiper ¦¡¦¡¦¡ */
.company-slider {
  position: relative;
  width: 100%;
}
.company-swiper {
  width: 91.2rem;
  margin: 0 auto;
  overflow: hidden;
}

/* ½½¶óÀÌµå: À¯Æ©ºê */
.company-slide--video {
  border-radius: 1.6rem;
  overflow: hidden;
  height: 51.2rem !important;
}
.company-slide--video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ½½¶óÀÌµå: Åë°è Ä«µå 3°³ */
.company-slide--stats {
  height: 51.2rem;
  display: flex !important;
  flex-direction: row;
  gap: 2rem;
  align-items: stretch;
}
.stat-card {
  flex: 1;
  background: #fbfafc;
  border: 0.1rem solid var(--c-primary-400);
  border-radius: 1.6rem;
  padding: 9.6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.stat-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.stat-card__desc {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-gray-500);
  letter-spacing: -0.018rem;
  line-height: 1.5;
}
.stat-card__stat {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.032rem;
  line-height: 1.3;
}
.stat-card__stat .accent {
  color: var(--c-primary);
}
.stat-card__stat .sm {
  font-size: 2.4rem;
}
.stat-card__img-box {
  background: #fff;
  border-radius: 1.6rem;
  height: 15.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.8rem rgba(120, 97, 255, 0.05);
  flex-shrink: 0;
}
.stat-card__img-box img {
  width: 14rem;
  height: 14rem;
  object-fit: contain;
  animation: floating 3s ease-in-out infinite;
}
.stat-card__img--wide {
  width: 14rem;
  height: auto;
  max-height: 6.6rem;
  object-fit: contain;
}

/* °¢ Ä«µå¸¶´Ù ´Ù¸¥ delay */
/* .stat-card:nth-child(1) .stat-card__img-box img {
  animation-delay: 0s;
}
.stat-card:nth-child(2) .stat-card__img-box img {
  animation-delay: 0.5s;
}
.stat-card:nth-child(3) .stat-card__img-box img {
  animation-delay: 1s;
} */

/* Floating Animation */
@keyframes floating {
  0%,
  100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ÀÌÀü / ´ÙÀ½ ¹öÆ° */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.254rem 0.509rem rgba(93, 81, 159, 0.14);
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10;
}
.slider-btn:hover {
  opacity: 0.8;
}
.slider-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.slider-btn img {
  width: 3.2rem;
  height: 3.2rem;
}
.slider-btn--prev {
  left: 0;
}
.slider-btn--next {
  right: 0;
}

/* ============================================================
   ¨ì FAQ Section
   ============================================================ */
.sec-faq {
  position: relative;
  background: var(--c-dark);
  overflow: hidden;
}
.sec-faq .sec-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sec-faq .sec-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: fit-content;
  gap: 4rem;
}
.faq-left {
  width: 43.7rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 3.9rem;
}
.faq-left__info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.faq-tag {
  color: var(--c-primary-800);
  opacity: 0.8;
}
.sec-faq h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.036rem;
  line-height: 1.4;
}
.faq-desc {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-gray-400);
  letter-spacing: -0.018rem;
  line-height: 1.5;
}
.faq-contact {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  background: rgba(247, 244, 255, 0.05);
  border-radius: 0.8rem;
  padding: 1.6rem 3.2rem;
  width: fit-content;
}
.faq-contact > img {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
}
.faq-contact__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  white-space: nowrap;
}
.faq-contact__text p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  letter-spacing: -0.018rem;
  line-height: 1.4;
}
.faq-contact__text strong {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--c-primary-800);
  letter-spacing: -0.032rem;
  line-height: 1;
}
.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}
.faq-item--open {
  border-color: transparent;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 8rem;
  padding: 2.5rem 0;
  cursor: pointer;
  text-align: left;
  gap: 0.8rem;
}

.faq-q span {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.044rem;
  line-height: 1.5;
}
.faq-arrow {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}
.faq-arrow--up {
  transform: scaleY(-1);
}
.faq-a {
  border: 0.1rem solid var(--c-gray-500);
  border-radius: 0.8rem;
  box-shadow: 0 0 0.8rem rgba(120, 97, 255, 0.05);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition:
    max-height 0.2s linear,
    opacity 0.3s linear;
}
.faq-a p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.0396rem;
  line-height: 1.5;
  flex: 1;
  padding: 2.4rem;
}
.faq-item--open .faq-a {
  max-height: 13rem;
  opacity: 1;
}
/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #fff;
  border-top: 0.1rem solid var(--c-gray-100);
  padding: 6rem 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.site-footer .sec-row {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-info .logo img {
  height: 2.2rem;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-links a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-gray-900);
  letter-spacing: -0.032rem;
  line-height: normal;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}
address {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-gray-900);
  opacity: 0.5;
  letter-spacing: -0.026rem;
  line-height: 1.5;
  font-style: normal;
}
.footer-sns {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}
.sns-link {
  display: block;
  width: 4rem;
  height: 4rem;
}
.sns-link img {
  width: 4rem;
  height: 4rem;
}
.footer-copy {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-gray-900);
  opacity: 0.5;
  letter-spacing: -0.026rem;
}

/* ============================================================
   Section Entrance Animation (ani01 ~ ani99)
   ============================================================ */

/* ani Å¬·¡½º ±âº» ¼û±è ¼³Á¤ (±ô¹ÚÀÓ ¹æÁö) */
[class*="ani0"],
[class*="ani1"],
[class*="ani2"],
[class*="ani3"],
[class*="ani4"],
[class*="ani5"],
[class*="ani6"],
[class*="ani7"],
[class*="ani8"],
[class*="ani9"] {
  opacity: 0;
}

.ani-ready {
  opacity: 0;
  transform: translateY(2.4rem) translateZ(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}
.ani-ready.ani--in {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}

/* ============================================================
   Mobile Navigation Drawer
   ============================================================ */

/* ÇÜ¹ö°Å ¹öÆ° ? µ¥½ºÅ©Å¾¿¡¼­´Â ¼û±è */
.btn-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.btn-hamburger span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--c-gray-900);
  border-radius: 0.2rem;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ¿À¹ö·¹ÀÌ */
.mobile-nav-overlay {
  background: rgba(0, 0, 0, 0.45);
  z-index: 10001;
  transition: opacity 0.3s ease;
}

/* µå·Î¾î */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32rem;
  max-width: 85vw;
  background: #fff;
  z-index: 10002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0 2.4rem 3.2rem;
}
.mobile-nav.is-open {
  transform: translateX(0);
}

/* µå·Î¾î »ó´Ü */
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 7rem;
  flex-shrink: 0;
}
.mobile-nav__head .logo img {
  height: 2.6rem;
}

/* ´Ý±â ¹öÆ° */
.btn-nav-close {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--c-gray-700);
  padding: 0;
}
.btn-nav-close svg {
  width: 2.4rem;
  height: 2.4rem;
}

/* ¸Þ´º ¸ñ·Ï */
.mobile-nav__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mobile-nav__list li:first-child a {
  border-top: 0.1rem solid var(--c-gray-200);
}
.mobile-nav__list li a {
  display: block;
  padding: 1.8rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-gray-700);
  letter-spacing: -0.018rem;
  border-bottom: 0.1rem solid var(--c-gray-200);
  transition: color 0.2s;
}
.mobile-nav__list li a:hover {
  color: var(--c-primary);
}

/* µå·Î¾î ÇÕ·ùÇÏ±â ¹öÆ° */
.mobile-nav__join {
  width: 100%;
  justify-content: center;
  font-size: 1.8rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  /* Çì´õ ? µ¥½ºÅ©Å¾ nav ¼û±â°í ÇÜ¹ö°Å ³ëÃâ */
  .gnb-nav,
  .btn-join:not(.mobile-nav__join) {
    display: none;
  }
  .btn-hamburger {
    display: flex;
  }
}

@media (max-width: 767px) {
  /* ¸ð¹ÙÀÏ: Ç®ÆäÀÌÁö ºñÈ°¼ºÈ­, ÀÏ¹Ý ½ºÅ©·Ñ È°¼ºÈ­ */
  html {
    scroll-behavior: smooth;
  }

  body {
    overflow: auto;
  }

  #container {
    height: auto;
  }

  #container > section,
  .site-footer {
    position: relative;
    height: auto;
    min-height: auto;
    transform: none !important;
    transition: none;
    will-change: auto;
    overflow-y: hidden;
    padding: 8rem 0;
  }
  #container > section.sec-hero {
    padding-top: 18rem;
  }
  .site-footer {
    min-height: auto;
  }

  section {
    height: auto;
    min-height: initial;
  }
}

/* ============================================================
   Modal ? Ä¿³ØÅÍ½º ÇÕ·ù ½ÅÃ»
   ============================================================ */
.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 10003;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 65rem;
  max-width: calc(100vw - 3.2rem);
  max-height: 90dvh;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.15);
  z-index: 10004;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.4rem;
  padding: 0 2.4rem;
  border-bottom: 0.1rem solid var(--c-gray-200);
  flex-shrink: 0;
}
.modal__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.018rem;
}
.modal__close {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--c-gray-700);
  padding: 0;
  transition: opacity 0.2s;
  position: relative;
}
.modal__close::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("../image/icon_close.svg") center / contain no-repeat;
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__close svg {
  display: none;
}
.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modal__foot {
  padding: 1.2rem 2.4rem 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

/* Æû °øÅë */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.form-label {
  color: var(--Gray-600, #485563);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.036rem;
}
.form-label .req {
  color: var(--Red, #ff3830);
}
.form-input,
.form-select {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  font-size: 1.8rem;
  color: var(--c-gray-900);
  background: #fff;
  border: 0.1rem solid var(--c-gray-200);
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: -0.016rem;
  font-family: inherit;
}
.form-select {
  appearance: none;
  background: #fff url("../image/icon_select_arrow.svg") right 1.6rem center /
    1.4rem no-repeat;
  padding-right: 4.4rem;
  cursor: pointer;
}
.form-input::placeholder {
  color: var(--c-gray-400);
}
.form-input:focus,
.form-select:focus {
  border-color: var(--c-primary);
}
.form-select:disabled {
  background: var(--c-gray-100);
  cursor: not-allowed;
  color: var(--c-gray-400);
}
.form-row {
  display: flex;
  gap: 0.8rem;
}
.form-row .form-input {
  flex: 1;
}
.btn-verify {
  height: 4.8rem;
  padding: 0 2rem;
  background: var(--c-gray-900);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 0.8rem;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  letter-spacing: -0.016rem;
  font-family: inherit;
  flex-shrink: 0;
}
.btn-verify:hover {
  opacity: 0.8;
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap .form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 4rem;
}
.form-select-wrap .select-arrow {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 0.8rem;
  pointer-events: none;
}

/* ±âÅ¸ Á÷Á¢ ÀÔ·Â ÇÊµå */
.form-etc {
  display: none;
  margin-top: 0.8rem;
}
.form-etc.form-etc--show {
  display: block;
}

/* °³ÀÎÁ¤º¸ µ¿ÀÇ ¹Ú½º */
.form-privacy {
  background: var(--c-gray-100);
  border-radius: 1.2rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.form-privacy__title {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: "Noto Sans";
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 2.16rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
}
.form-privacy__text {
  font-size: 1.4rem;
  color: var(--c-gray-500);
  letter-spacing: -0.014rem;
  line-height: 1.6;
}
.privacy-link {
  color: var(--info, #3882f6);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-top: 2rem;
  display: block;
}
.form-privacy__agree {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-gray-700);
  letter-spacing: -0.016rem;
  user-select: none;
}
.form-privacy__agree span {
  flex: 1;
}
.form-privacy__agree input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../image/icon_checkbox_off.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  flex-shrink: 0;
  border: 0;
  outline: none;
}
.form-privacy__agree input[type="checkbox"]:checked {
  background-image: url("../image/icon_checkbox_on.svg");
}

/* Á¦Ãâ ¹öÆ° */
.btn-submit {
  width: 100%;
  height: 5.6rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border: 0;
  border-radius: 0.8rem;
  cursor: pointer;
  letter-spacing: -0.018rem;
  transition: opacity 0.2s;
  font-family: inherit;
}
.btn-submit:hover {
  opacity: 0.9;
}

/* ============================================================
   Alert ? °øÅë ¾Ë¸² ÄÄÆ÷³ÍÆ®
   ============================================================ */
.alert-overlay {
  background: rgba(0, 0, 0, 0.3);
  z-index: 10005;
  transition: opacity 0.2s ease;
}
.alert-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 40rem;
  max-width: calc(100vw - 3.2rem);
  background: #fff;
  border: 0.1rem solid var(--c-gray-200);
  border-radius: 1.6rem;
  padding: 3.2rem 2.4rem 2.4rem;
  z-index: 10006;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.alert-box.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.alert-box__icon svg {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
}
.alert-box__msg {
  color: var(--Text-Dark, #3c4248);
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 2.6rem */
  letter-spacing: -0.04rem;
}
.alert-box__btn {
  width: 100%;
  height: 5.2rem;
  background: #fff;
  border: 0.1rem solid var(--c-gray-200);
  border-radius: 0.8rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--c-gray-700);
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: -0.016rem;
  font-family: inherit;
}
.alert-box__btn:hover {
  background: var(--c-gray-100);
}

/* ============================================================
   Video Modal ? ÇÊ¼ö ±³À° ¿µ»ó
   ============================================================ */
.modal--video {
  width: 90rem;
}
.video-progress {
  display: flex;
  gap: 1rem;
}
.video-progress__bar {
  flex: 1;
  height: 0.4rem;
  border-radius: 0.2rem;
  background: var(--c-gray-200);
}
.video-progress__bar--active {
  background: var(--c-primary);
}
.video-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.video-info__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.02rem;
}
.video-info__desc {
  font-size: 1.4rem;
  color: var(--c-gray-500);
  letter-spacing: -0.014rem;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #0d0d1a;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.btn-main {
  height: 5.6rem;
  padding: 0 3.2rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border: 0;
  border-radius: 0.8rem;
  cursor: pointer;
  letter-spacing: -0.018rem;
  transition: opacity 0.2s;
  font-family: inherit;
}
.btn-main:hover {
  opacity: 0.9;
}
.btn-main:disabled {
  color: var(--Primary-500, #b6affd);
  border-radius: 1rem;
  border: 1px solid var(--Primary-400, #e6e3fe);
  background: var(--Primary-400, #e6e3fe);
  cursor: auto;
}
.btn-line {
  height: 5.6rem;
  padding: 0 3.2rem;
  background: #fff;
  color: #374151;
  font-size: 1.8rem;
  font-weight: 700;
  border: 0;
  border-radius: 0.8rem;
  cursor: pointer;
  letter-spacing: -0.016rem;
  transition: opacity 0.2s;
  border: 1px solid var(--Gray-200, #e8e8e8);
  font-family: inherit;
}
.btn-line:hover:not(:disabled) {
  background: var(--Gray-100, #f3f4f6);
}
.btn-line.arrow::after {
  content: "¡æ";
  margin-left: 0.8rem;
}
.btn-line:disabled {
  border-radius: 1rem;
  border: 1px solid var(--Gray-200, #e8e8e8);
  background: var(--Gray-200, #e8e8e8);
  color: var(--Gray-400, #9ca3af);
  cursor: auto;
}
.video-stats {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 2.16rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
  display: flex;
  padding: 1.2rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  align-self: stretch;
  border-radius: 0.8rem;
  background: var(--Gray-100, #f3f4f6);
}
.video-stats.is-complete {
  color: var(--Primary-900, #5946fa);
  border-radius: 0.8rem;
  border: 1px solid var(--Primary-900, #5946fa);
  background: var(--Primary-400, #e6e3fe);
}

/* ============================================================
   Auth Modal ? º»ÀÎÀÎÁõ
   ============================================================ */
.modal--auth {
  width: 40rem;
}
.modal__body--auth {
  align-items: center;
  text-align: center;
  padding-top: 3.2rem;
  padding-bottom: 0.8rem;
}
.auth-icon {
  display: flex;
  width: 14rem;
  height: 14rem;
  padding: 3rem;
  align-items: flex-start;
  gap: 0.8rem;
  border-radius: 2rem;
  background: var(--White, #fff);
  filter: drop-shadow(0 0 16px rgba(121, 108, 250, 0.1));
}
.auth-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.auth-text__title {
  color: var(--Gray-900, #111827);
  text-align: center;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 120%; /* 2.88rem */
  letter-spacing: -0.024rem;
  text-transform: capitalize;
}
.auth-text__desc {
  color: var(--Gray-400, #9ca3af);
  text-align: center;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%; /* 2.24rem */
  letter-spacing: -0.016rem;
  text-transform: capitalize;
}
.modal__foot--auth .btn-main {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   Activity Modal ? È°µ¿¹æ¹ý (ÅÇ 3°³)
   ============================================================ */

/* --- ¸ð´Þ ¿À¹ö¶óÀÌµå --- */
.modal--activity {
  width: 112.9rem;
}
.modal__body--activity {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

/* --- ÅÇ ¹Ù --- */
.activity-tabs {
  display: flex;
  align-items: flex-end;
  padding: 2.4rem 0 0;
  margin: 0 2.4rem;
  flex-shrink: 0;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
}
.activity-tabs:after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  height: 0.2rem;
  background: #e8e8e8;
  transition: background 0.15s;
  z-index: 9;
}
.activity-tabs__btn {
  position: relative;
  height: 5.7rem;
  padding: 1rem 2.4rem 1.2rem 2.4rem;
  color: var(--Gray-700, #374151);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 2.34rem */
  letter-spacing: -0.036rem;
  cursor: pointer;
  letter-spacing: -0.014rem;
  white-space: nowrap;
  font-family: inherit;
  transition: color 0.15s;
}
.activity-tabs__btn::after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  height: 0.3rem;
  background: transparent;
  transition: background 0.15s;
  z-index: 10;
}
.activity-tabs__btn.is-active {
  color: var(--c-primary);
  font-weight: 700;
}
.activity-tabs__btn.is-active::after {
  background: var(--c-primary);
}

/* --- ÅÇ ÆÐ³Î (°øÅë) --- */
.activity-panel {
  display: none;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem;
  flex: 1;
  overflow-y: auto;
}
.activity-panel.is-active {
  display: flex;
}

/* --- °øÅë ¹è³Ê --- */
.activity-banner {
  position: relative;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(237, 235, 245, 0) 0%, #edebf5 100%);
  padding: 3.2rem;
  overflow: hidden;
  min-height: 12.3rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.activity-banner__title {
  color: var(--Gray-700, #374151);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%; /* 3.12rem */
  letter-spacing: -0.048rem;
  letter-spacing: -0.024rem;
  margin-bottom: 0.6rem;
}
.activity-banner__desc {
  color: var(--Gray-400, #9ca3af);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-size: var(--18, 1.8rem);
  font-weight: 500;
  line-height: 120%; /* 2.16rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
}
.activity-banner__img {
  position: absolute;
  right: 4rem;
  top: 0;
  height: 100%;
  width: auto;
  opacity: 0.85;
}

/* --- ÅÇ 1: È°µ¿ÇöÈ² --- */
.activity-stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.activity-stats__total {
  color: var(--Primary-900, #5946fa);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-size: var(--18, 1.8rem);
  font-weight: 500;
  line-height: 120%; /* 2.16rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
  margin-bottom: 0.8rem;
}
.activity-stats__total strong {
  font-weight: 700;
}
.activity-stats__detail {
  color: var(--Gray-400, #9ca3af);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 2.16rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
}
.activity-stats__detail strong {
  font-weight: 700;
  color: var(--Gray-700, #374151);
}
.activity-stats__filters {
  display: flex;
  gap: 0.8rem;
}
.activity-select {
  height: 4.8rem;
  padding: 0 1.6rem;
  border: 0.1rem solid var(--c-gray-200);
  border-radius: 0.8rem;
  font-size: var(--18, 1.8rem);
  color: var(--c-gray-600);
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6' fill='none'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 1.4rem center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 20rem;
}

/* --- °øÅë Å×ÀÌºí --- */
.activity-table-wrap {
  overflow: auto;
}
.activity-table__caption {
  color: var(--Gray-700, #374151);
  text-align: center;
  font-family: Pretendard;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 2.6rem */
  letter-spacing: -0.04rem;
  padding: 2.4rem 0 2rem;
}
.activity-table {
  width: 100%;
  border-collapse: collapse;
}
.activity-table th {
  background: var(--c-gray-100);
  padding: 1.8rem 1.6rem;
  text-align: center;
  border-bottom: 0.1rem solid var(--c-gray-200);
  color: var(--Gray-700, #374151);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.036rem;
}
.activity-table td {
  padding: 1.7rem 1.6rem;
  color: var(--c-gray-700);
  color: var(--Gray-700, #374151);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 2.52rem */
  letter-spacing: -0.036rem;
  text-align: center;
  border-bottom: 0.1rem solid var(--c-gray-200);
}
.activity-table tbody tr:last-child td {
  border-bottom: 0;
}
.activity-table__total td {
  background: var(--c-gray-100);
  font-weight: 700;
  color: var(--Gray-700, #374151);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.036rem;
  font-size: 1.8rem;
  padding: 1.8rem 1.6rem;
  border-top: 0.1rem solid var(--c-gray-200);
  border-bottom: 0;
}

/* --- Á¤»ê Á¦¿Ü ¾È³» --- */
.activity-notice {
  background: var(--c-gray-100);
  border-radius: 0.8rem;
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.activity-notice__head {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.1rem */
  letter-spacing: -0.014rem;
  text-transform: capitalize;
}
.activity-notice__head strong {
  font-weight: 600;
}
.activity-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.activity-notice__list li {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.1rem */
  letter-spacing: -0.014rem;
  text-transform: capitalize;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.activity-notice__list li::before {
  content: "?";
  color: var(--c-gray-400);
  flex-shrink: 0;
}

/* --- ÅÇ 2: È°µ¿ºñ Áö±Þ ±âÁØ --- */
.activity-section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.activity-section__title {
  color: var(--Gray-700, #374151);
  font-family: Pretendard;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 3.12rem */
  letter-spacing: -0.048rem;
}
.activity-section .activity-table th {
  font-size: 1.5rem;
  padding: 1.1rem 1.6rem;
}
.activity-section .activity-table td {
  font-size: 1.5rem;
  padding: 1rem 1.6rem;
}
.activity-infobox {
  background: var(--c-gray-100);
  border-radius: 0.8rem;
  padding: 2rem;
}
.activity-infobox__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.activity-infobox__list li {
  color: var(--Gray-500, #687280);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.018rem;
  text-transform: capitalize;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  padding-left: 1.6rem;
}
.activity-infobox__list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: -0.2rem;
  color: var(--c-gray-400);
  flex-shrink: 0;
}
.activity-infobox__sub {
  font-weight: 400;
}

/* Áö±Þ¿äÀ² »ö»ó */
.rate {
  font-weight: 700;
}
.rate--high {
  color: #22c55e !important;
}
.rate--mid {
  color: #f59e0b !important;
}
.rate--low {
  color: #f97316 !important;
}
.rate--floor {
  color: #ef4444 !important;
}

/* --- ÅÇ 3: È°µ¿ °¡ÀÌµå --- */
.activity-connection__head {
  text-align: center;
  margin-bottom: 4.8rem;
  margin-top: 6.8rem;
}
.activity-connection__sub {
  color: var(--Primary-800, #6b5bfb);
  text-align: center;
  font-family: Pretendard;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 2.24rem */
  letter-spacing: -0.016rem;
  text-transform: capitalize;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}
.activity-connection__title {
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 5.04rem */
  letter-spacing: -0.036rem;
  text-transform: capitalize;
}
.activity-connection__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.activity-card {
  display: flex;
  height: 37rem;
  padding: 5rem 3.2rem 6rem 3.2rem;
  align-items: flex-start;
  gap: 2rem;
  flex: 1 0 0;
  border-radius: 1.6rem;
  border: 1px solid var(--Primary-400, #e6e3fe);
  background: #fff;
  flex-direction: column;

  /* shdow1 */
  box-shadow: 0 0 16px 0 rgba(120, 97, 255, 0.05);
}
.activity-card__title {
  color: #464646;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: "Noto Sans";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 4.48rem */
  letter-spacing: -0.032rem;
  text-transform: capitalize;
}
.activity-card__title strong {
  color: var(--Primary-900, #5946fa);
}
.activity-card__desc {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 2.52rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
}

/* ½ºÅÜ ÀÎµðÄÉÀÌÅÍ */
.activity-steps__head {
  margin-top: 5.4rem;
  text-align: center;
  margin-bottom: 4.8rem;
}
.activity-steps__sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.activity-steps__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-gray-900);
  letter-spacing: -0.024rem;
}
.activity-steps__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}
.activity-step {
  border-radius: 1.6rem;
  border: 1px solid var(--Primary-400, #e6e3fe);
  background: #fff;

  /* shdow1 */
  box-shadow: 0 0 16px 0 rgba(120, 97, 255, 0.05);
  padding: 3.2rem 3.2rem 6rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.activity-step-num {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2.4rem;
  position: relative;
}
.activity-step-num:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80%;
  height: 0.1rem;
  background: var(--Primary-400, #e6e3fe);
  z-index: 1;
}
.activity-step__num {
  display: flex;
  width: 6.8rem;
  height: 6.8rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  border-radius: 10rem;
  border: 1px solid var(--Primary-500, #b6affd);
  background: var(--White, #fff);
  z-index: 2;
}
.activity-step__label {
  color: var(--Primary-700, #796cfa);
  text-align: center;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 1.4rem */
  letter-spacing: -0.014rem;
  text-transform: capitalize;
}
.activity-step__count {
  color: var(--Primary-700, #796cfa);
  font-family: Pretendard;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.024rem;
  text-transform: capitalize;
}
.activity-step__icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--c-gray-500);
}
.activity-step__icon svg {
  width: 100%;
  height: 100%;
}
.activity-step__text {
  color: var(--Gray-900, #111827);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 2.8rem */
  letter-spacing: -0.02rem;
  text-transform: capitalize;
}
.activity-step__text span {
  font-size: var(--18, 1.8rem);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.018rem;
}
/* È«º¸ °¡ÀÌµå */
.activity-guide {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 5.4rem;
}
.activity-guide__title {
  color: var(--Gray-700, #374151);
  font-family: Pretendard;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 3.12rem */
  letter-spacing: -0.048rem;
  margin-bottom: 2.2rem;
}
.activity-guide__hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}
.activity-guide__hint p {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.7rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
  flex: 1;
}
.activity-guide__copy-btn {
  display: inline-flex;
  padding: 1rem 1.2rem;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  border-radius: 1rem;
  border: 1px solid var(--Gray-200, #e8e8e8);
  background: var(--White, #fff);
  color: var(--Gray-700, #374151);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.014rem;
}
.activity-guide__copy-btn::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 1/1;
  background: url("../image/icon_copy.svg") no-repeat center;
}
.activity-guide__copy-btn.is-active {
  border-radius: 1rem;
  border: 1px solid var(--Primary-900, #5946fa);
  background: var(--Primary-400, #e6e3fe);
  color: var(--Primary-900, #5946fa);
}
.activity-guide__copy-btn.is-active::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 1/1;
  background: url("../image/icon_copy_ok.svg") no-repeat center;
}
.activity-guide__copy-btn:hover {
  opacity: 0.9;
}

.activity-guide__copy-btn.is-copied {
  background: var(--c-gray-400);
  cursor: default;
}
.activity-guide__box {
  background: var(--c-gray-100);
  border-radius: 0.8rem;
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.activity-guide__box p {
  color: var(--Gray-500, #687280);
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.7rem */
  letter-spacing: -0.018rem;
  text-transform: capitalize;
}

/* ================================
   »ó´ã ½ÅÃ» ¸ð´Þ
   ================================ */

/* Ã¼Å©¹Ú½º ±×·ì */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--Text-Dark, #3c4248);
  font-family: Pretendard;
  font-size: var(--18, 1.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 2.52rem */
  letter-spacing: -0.036rem;
}

.checkbox-label input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../image/icon_checkbox_off.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  border: 0;
  outline: none;
}

.checkbox-label input[type="checkbox"]:checked {
  background-image: url("../image/icon_checkbox_on.svg");
}

.checkbox-label span {
  user-select: none;
}

/* Æû ÀÎÇ² ·¡ÆÛ (¹ÙÀÌÆ® Ä«¿îÅÍ) */
.form-input-wrap {
  position: relative;
  flex: 1;
}

.byte-count {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--Gray-600, #485563);
  font-family: Pretendard;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.68rem */
  letter-spacing: -0.024rem;
  pointer-events: none;
}

/* Æû ·Î¿ì º¯Çü */
.form-row--double {
  display: flex;
  gap: 1.2rem;
}

.form-row--triple {
  display: flex;
  gap: 1.2rem;
}

.form-row--triple .form-select-wrap {
  flex: 1;
}

/* ÅØ½ºÆ®¿¡¸®¾î */
.form-textarea {
  width: 100%;
  height: 15rem;
  padding: 1rem 1.6rem;
  border: 0.1rem solid var(--c-gray-200);
  border-radius: 0.8rem;
  font-size: var(--18, 1.8rem);
  font-family: inherit;
  color: var(--c-gray-900);
  resize: vertical;
  min-height: 12rem;
  transition: border-color 0.2s;
  resize: none;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--c-primary);
}

.form-textarea::placeholder {
  color: var(--c-gray-400);
}

/* »ó´ã ¸ð´Þ º»¹® ½ºÅ©·Ñ */
.modal--consult .modal__body {
  gap: 2.4rem;
}

/* ================================
   Á¦Ãâ ¿Ï·á ¸ð´Þ
   ================================ */

.modal--complete {
  width: 40rem;
}

.modal__body--complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2.4rem;
  gap: 3.2rem;
}
.tablet-only {
  display: none;
}
.mobile-only {
  display: none;
}
.mobile-step {
  display: none;
}
.activity-step__gray {
  display: none;
}
@media all and (max-width: 1366px) {
  html {
    font-size: 8px;
  }
  .phone-mockup {
    width: 28rem;
  }
  .company-slider {
    transform: scale(0.9);
  }
  .sec-hero__content {
    margin-top: 5%;
  }
  .sec-hero .sec-row {
    gap: 10rem;
  }
}
@media all and (max-width: 1000px) {
  .tablet-only {
    display: block;
  }
  .sec-service__text {
    width: 50%;
  }
  .not-tablet {
    display: none;
  }
  .faq-left {
    width: auto;
  }
  .company-slider {
    transform: scale(0.8);
  }
}
@media all and (max-width: 760px) {
  html {
    font-size: 9px;
  }
  .site-header {
    height: 6rem;
  }
  .sec-hero .sec-row {
    gap: 4rem;
    height: 100%;
  }
  .sec-hero__content {
    margin-top: 0;
  }
  .sec-hero__title {
    font-size: 3.4em;
  }
  .sec-hero__sub {
    font-size: 2rem;
  }
  .sec-hero__cta-bar {
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
  }
  .cta-bar__btns {
    width: 100%;
  }
  .btn {
    flex: 1;
    align-items: center;
    justify-content: center;
  }
  .sec-hero__deco {
    right: -70%;
    zoom: 0.8;
    top: 30%;
    opacity: 0.5;
  }
  .sec-hero__cards {
    gap: 0.8rem;
    right: 1.6rem;
    bottom: 1.6rem;
  }
  .sec-service .sec-row {
    flex-direction: column;
  }
  .sec-service__text {
    width: 100%;
  }
  .sec-service__title,
  .sec-how__head h2,
  .sec-company__head h2 {
    font-size: 3.4rem;
  }
  .sec-service .sec-row {
    justify-content: center;
    gap: 8rem;
  }
  .sec-service__desc {
    font-size: 1.8rem;
  }
  .phone-mockup {
    width: 70%;
  }
  .mobile-not {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .phone-mockup {
    filter: none;
  }
  .hero-side-card {
    width: auto;
    height: auto;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
  }
  .feature-item--mr,
  .feature-item--bl {
    margin-top: 0;
  }
  .sec-features .sec-row {
    gap: 4rem;
  }
  .hero-side-card__label {
    font-size: 1.4rem;
  }
  .feature-title {
    font-size: 3.2rem;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .how-step-img {
    width: 100%;
  }
  .how-step-img img {
    width: 100%;
  }
  .how-step {
    flex: 1;
  }
  .how-step__desc {
    font-size: 1.8rem;
  }
  .how-step__label {
    font-size: 2.4rem;
  }
  .company-slider {
    zoom: 1;
  }
  .company-swiper {
    width: calc(100% - 4.8rem);
  }
  .company-slide--video,
  .company-slide--stats {
    height: 60rem !important;
  }
  .company-slide--stats {
    flex-direction: column;
  }
  .stat-card {
    padding: 2rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .stat-card__desc {
    font-size: 1.6rem;
  }
  .stat-card__stat {
    font-size: 2.4em;
  }
  .stat-card__img-box {
    height: 100%;
  }
  .stat-card:nth-child(2) {
    flex-direction: row-reverse;
  }
  .stat-card__img-box img {
    max-height: 11rem;
    max-width: 11rem;
  }
  .slider-btn--prev {
    left: -22px;
  }
  .slider-btn--next {
    right: -22px;
  }
  .slider-btn {
    width: 4.5rem;
    height: 4.5rem;
  }
  .slider-btn img {
    width: 2.4rem;
    height: 2.4rem;
  }
  .sec-faq .sec-row {
    flex-direction: column;
    gap: 8rem;
  }
  .sec-faq h2 {
    font-size: 3.2rem;
  }
  .faq-left__info {
    gap: 0.8rem;
  }
  .faq-left {
    gap: 1.6rem;
    width: 100%;
  }
  .faq-contact {
    width: 100%;
    justify-content: center;
    padding-right: 6.5rem;
  }
  .faq-contact__text p {
    text-align: center;
  }
  .faq-q span {
    font-size: 1.8rem;
  }
  .faq-right {
    width: 100%;
  }
  .faq-q {
    padding: 2rem 0;
    height: auto;
  }
  .faq-a p {
    font-size: 1.7rem;
  }
  .checkbox-group {
    grid-template-columns: 1fr 1fr;
  }
  .form-row--triple {
    flex-direction: column;
  }
  .form-row--double {
    flex-direction: column;
  }
  .activity-banner__img {
    display: none;
  }
  .activity-banner {
    height: auto;
  }
  .activity-banner__text {
    width: 100%;
  }
  .activity-stats {
    flex-direction: column;
    gap: 1.6rem;
  }
  .activity-stats__filters {
    flex-direction: column;
    width: 100%;
  }
  .activity-connection__title {
    font-size: 2.6rem;
  }
  .activity-card__title {
    font-size: 2.4rem;
  }
  .activity-connection__cards {
    grid-template-columns: 1fr;
  }
  .activity-step-num {
    display: none;
  }
  .activity-steps__list {
    grid-template-columns: 1fr;
  }
  .activity-step__text {
    font-size: 2.4rem;
  }
  .activity-step {
    padding: 2.4rem;
  }
  .activity-step__gray {
    display: block;
    color: var(--Gray-400, #9ca3af);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 1.225rem */
    letter-spacing: -0.00875rem;
    text-transform: capitalize;
  }
  .mobile-step {
    display: block;
    color: var(--Gray-400, #9ca3af);
    font-family: Pretendard;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 1.225rem */
    letter-spacing: -0.00875rem;
    text-transform: capitalize;
  }
  .activity-guide__hint {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-tag,
  .sec-faq h2,
  .faq-desc {
    text-align: center;
  }
  .logo img {
    height: 2rem;
  }
  .img-stat-card05,
  .img-stat-card03 {
    width: 9rem;
    padding: 1rem;
  }
  .sns-link,
  .sns-link img {
    width: 5rem;
    height: 5rem;
  }
}
@media all and (max-width: 400px) {
  .cta-bar__btns {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .stat-card__desc {
    font-size: 1.4rem;
  }
}


.connectors_content_box {padding:100px 20px; padding-top:150px; }
.connectors_content_box2 {padding:100px 20px; padding-top:380px; }
.connectors_content_box .sub_h1, .sub_content_box2 .sub_h1{word-break: keep-all ; max-width: 1240px; margin:0 auto; font-size:26px; color:#004380; line-height: 1.7; padding-top:90px;  font-family: 'Noto Serif KR', serif; font-weight: 500;}
.connectors_content_box .sub_h2{max-width: 1240px; margin:20px auto 0; font-size:16px; color:#333333; line-height: 1.8; }


@charset "utf-8";
@import url(./style/font.css);

.sec-container {
  height: inherit;
  max-width: 112.8rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.sec-row {
  padding: 0 2.4rem;
  height: 100%;
  width: 100%;
}