@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

/* CSS Variables - Design Tokens */
:root {
  /* Primary Colors */
  --color-primary-700: #2c48d9;
  --color-primary-600: #4165ff;
  --color-primary-400: #91aeff;
  --color-primary-200: #e2ebff;
  --color-primary-100: #f0f5ff;

  /* Secondary Colors */
  --color-secondary-700: #102540;
  --color-secondary-600: #1e4065;
  --color-secondary-400: #3b91ff;

  /* Neutral Colors */
  --color-neutral-900: #303342;
  --color-neutral-800: #484d5e;
  --color-neutral-700: #6c7286;
  --color-neutral-600: #949aac;
  --color-neutral-500: #bfc5d1;
  --color-neutral-400: #d1d5de;
  --color-neutral-300: #dde2eb;
  --color-neutral-200: #e9eef5;
  --color-neutral-100: #f2f6fa;

  /* Point Colors */
  --color-point-400: #4ecda7;

  /* Static Colors */
  --color-static-white: #ffffff;
  --color-static-black: #000000;

  /* Opacity */
  --color-opacity-60: rgba(255, 255, 255, 0.6);
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--color-static-black);
}

#index .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#index .section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 18px;
  position: relative;
}

#index .section__inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

/* Buttons */
#index .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  gap: 8px;
}

#index .button--dark {
  background-color: #2c2c2c;
  color: #f5f5f5;
  font-size: 16px;
}

#index .button--white {
  color: var(--color-neutral-800);
  background-color: var(--color-static-white);
}

#index .button--white2 {
  color: var(--color-primary-600);
  background-color: var(--color-static-white);
}

#index .button--white2 img {
  width: 6px;
  height: 12px;
}

#index .button--primary {
  color: white;
  background-color: var(--color-primary-600);
}

#index .button--primary img {
  width: 6px;
  height: 12px;
}

#index .button--outline {
  border: 1px solid #e3e3e3;
  background: transparent;
  color: #1e1e1e;
  padding: 8px 16px;
  font-size: 16px;
}

#index #registration-button {
  border: none;
  color: #484d5e;
}

#index #registration-button img {
  width: 6px;
  height: 12px;
}

#index .button--outline-light {
  background: #e3e3e3;
  border: 1px solid #767676;
  color: #1e1e1e;
  padding: 12px;
  border-radius: 8px;
}

#index .icon-button {
  background: transparent;
  border: 1px solid white;
  border-radius: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  align-self: flex-end;
}

#index .icon-button.dark {
  border: 1px solid #1e4065;
}

#index .icon-button img {
  width: 10px;
  height: 10px;
}

/* 1. Hero / Search */
#index .section--hero {
  padding-top: 72px;
  padding-bottom: 64px;
}

#index .hero__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 24px;
}

#index .search-bar {
  background-color: #e9eef5;
  border-radius: 9999px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  max-width: 789px;
  margin: 0 auto;
  gap: 16px;
}

#index .search-bar__filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  font-size: 16px;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("./images/home/icon_chevron_down.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 8px 4px;
  padding-right: 24px;
}

#index .search-bar__divider {
  width: 1px;
  height: 33px;
  background-color: #d1d5de;
}

#index .search-bar__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
}

#index .search-bar__button {
  border-radius: 999px;
  background: var(--color-primary-600, #4165ff);
  color: var(--color-static-white, #fff);
  border: none;
  border-radius: 50px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}

#index .search-bar__button img {
  width: 16px;
  height: 16px;
}

/* 2. Partner Categories */
#index .section__inner--categories {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#index .card {
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#index .card--large {
  flex: 1;
  min-width: 339px;
  height: 440px;
  justify-content: space-between;
}

#index .card--dark {
  background-color: var(--color-secondary-700);
  color: var(--color-static-white);
}

#index .card__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  flex-direction: column;
}

#index .card__content .icon-button {
  align-self: flex-end;
}

#index .card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

#index .card__subtitle {
  font-size: 14px;
  opacity: 0.6;
}

#index .categories__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 339px;
}

#index .card--medium {
  flex: 1;
  background-color: var(--color-secondary-600);
  color: var(--color-static-white);
}

#index .categories__bottom {
  display: flex;
  gap: 16px;
  flex: 1;
}

#index .card--small {
  flex: 1;
  min-height: 171px;
  justify-content: space-between;
}

#index .card--mint {
  background-color: var(--color-point-400);
  color: var(--color-static-white);
}

#index .card--gray {
  background-color: var(--color-neutral-200);
  color: var(--color-secondary-600);
}

#index .banner--registration {
  background-color: var(--color-neutral-100);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

#index .banner__text {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#index .banner__label {
  font-weight: 700;
  color: var(--color-primary-600);
  font-size: 16px;
}

#index .banner__desc {
  color: var(--color-neutral-800);
  font-size: 16px;
}

/* 3. Scrolling Logos */
#index .section--logos {
  background-color: var(--color-neutral-100);
  border-top: 1px solid var(--color-neutral-300);
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}

#index .logos__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 40px;
}

#index .logos__container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

#index .logos__track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

#index .logo-item {
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

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

/* 4. Blue Banner */
#index .section--blue-banner {
  background-color: var(--color-primary-600);
  padding: 80px 18px;
}

#index .section__inner--blue-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
}

#index .blue-banner__text {
  flex: 1;
  min-width: 339px;
}

#index .blue-banner__title {
  color: var(--color-static-white);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

#index .blue-banner__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 500;
}

#index .blue-banner__image img {
  width: 339px;
  height: 254px;
  object-fit: contain;
}

/* 5. Process Steps */
#index .section--process {
  background: linear-gradient(180deg, #f3f8ff 0%, #e2ebff 100%);
  padding-top: 96px;
  padding-bottom: 160px;
}

#index .section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 96px;
  line-height: 1.4;
}

#index .process__steps {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  max-width: 996px;
}

#index .process__step {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#index .process__step--reverse {
  flex-direction: row-reverse;
}

#index .step__content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

#index .step__header {
  display: flex;
  align-items: center;
  gap: 9px;
}

#index .step__number {
  background: #303342;
  color: white;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

#index .step__label {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-neutral-900);
}

#index .step__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

#index .step__desc {
  color: var(--color-neutral-700);
  font-size: 18px;
  margin: 0;
}

#index .step__image img {
  width: 100%;
  max-width: 339px;
  height: auto;
}

/* 6. Search CTA */
#index .section--search-cta {
  background-color: var(--color-secondary-400);
  padding: 49px 18px;
}

#index .section__inner--search-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#index .search-cta__text {
  color: var(--color-static-white);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

#index .button--with-icon img {
  width: 6px;
  height: 12px;
}

/* 7. Stats */
#index .section--stats {
  background-color: var(--color-static-white);
  padding-top: 64px;
  padding-bottom: 64px;
}

#index .section__title--small {
  font-size: 20px;
  margin-bottom: 40px;
}

#index .stats__container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  text-align: center;
}

#index .stat__number {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--color-neutral-900);
}

#index .stat__number--blue {
  color: var(--color-primary-600);
}

#index .stat__desc {
  color: var(--color-neutral-700);
  font-size: 16px;
  margin: 0;
}

/* 8. Experience */
#index .section--experience {
  background-color: var(--color-secondary-600);
  color: var(--color-static-white);
  padding-top: 96px;
  padding-bottom: 160px;
}

#index .experience__subtitle {
  color: var(--color-primary-400);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

#index .experience__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 80px 0;
}

#index .experience__content {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  flex-direction: column;
}

#index .experience__column {
  flex: 1;
  min-width: 339px;
}

#index .experience__col-header {
  margin-bottom: 24px;
}

#index .experience__col-header h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

#index .experience__col-header p {
  font-size: 20px;
  color: var(--color-neutral-400);
  margin: 0;
}

#index .experience__col-title--blue {
  color: var(--color-secondary-400);
}

#index .experience__cards-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#index .experience__card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  min-width: 0;
  color: var(--color-static-black);
}

#index .card__icon-box {
  background: var(--color-neutral-200);
  padding: 8px;
  border-radius: 16px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

#index .card__icon-box img {
  width: 48px;
  height: 48px;
}

#index .card__text-box h4 {
  font-size: 24px;
  margin: 0 0 12px 0;
  font-weight: 700;
}

#index .card__text-box p {
  font-size: 18px;
  color: var(--color-neutral-700);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* 9. Stories Carousel */
#index .section--stories {
  padding-top: 137px;
  padding-bottom: 137px;
  position: relative;
}

#index .section--stories .section__inner {
  position: relative;
}

#index .stories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

#index .stories__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

#index .stories__nav {
  display: flex;
  gap: 24px;
}

#index .nav-button {
  background: var(--color-neutral-900);
  border-radius: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

#index .nav-button img {
  width: 20px;
  height: 20px;
}

#index .nav-button:hover {
  background: #3c3c3c;
  transform: scale(1.05);
}

#index .nav-button:active {
  transform: scale(0.95);
}

#index .stories__carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 120px;
  margin: 0 -120px;
}

#index .stories__carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

#index .story-card {
  position: relative;
  flex: 0 0 1200px;
  width: 1200px;
  min-width: 1200px;
  max-width: 1200px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1440px) {
  #index .stories__header {
    padding: 0 60px;
  }

  #index .stories__carousel-wrapper {
    padding: 0 60px;
    margin: 0 -60px;
  }

  #index .story-card {
    flex: 0 0 calc(100% - 24px);
    width: calc(100% - 24px);
    min-width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
}

@media (max-width: 768px) {
  #index .stories__header {
    padding: 0 18px;
  }

  #index .stories__carousel-wrapper {
    padding: 0 18px;
    margin: 0 -18px;
  }

  #index .story-card {
    flex: 0 0 calc(100% - 24px);
    width: calc(100% - 24px);
    min-width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
}

#index .story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.6)
  );
  pointer-events: none;
}

#index .story-card__content {
  position: absolute;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 530px;
  min-width: 291px;
  width: 100%;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

#index .story-card__header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--color-static-white);
}

#index .story-card__title {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.24px;
  margin: 0;
  color: var(--color-static-white);
}

#index .story-card__meta {
  display: flex;
  gap: 8px;
  font-size: 16px;
  letter-spacing: -0.16px;
}

#index .story-card__company,
#index .story-card__representative {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-static-white);
}

#index .story-card__representative {
  font-weight: 400;
}

#index .story-card__desc {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.18px;
  color: var(--color-static-white);
  opacity: 0.6;
  margin: 0;
}

#index .story-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#index .story-card__tag {
  background: var(--color-secondary-700);
  color: var(--color-static-white);
  padding: 9px 16px 9px 16px;
  border-radius: 999px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.12px;
}

#index .story-card__tag--light {
  background: var(--color-primary-200);
  color: var(--color-static-black);
}

/* 10. Consulting */
#index .section--consulting {
  background-color: var(--color-secondary-700);
  color: var(--color-static-white);
  padding-top: 137px;
  padding-bottom: 137px;
}

#index .consulting__content {
  text-align: center;
  margin-bottom: 85px;
}

#index .consulting__title {
  font-size: 32px;
  margin-bottom: 28px;
  font-weight: 700;
}

#index .consulting__desc {
  color: var(--color-neutral-500);
  font-size: 16px;
}

#index .consulting__buttons {
  display: flex;
  gap: 16px;
}

/* ==========================================
   LOGIN PAGE STYLES
   ========================================== */

#login .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#login .login__wrapper {
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 18px;
}

#login .login__card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#login .login__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 8px 0;
  text-align: center;
}

#login .login__subtitle {
  font-size: 16px;
  color: var(--color-neutral-600);
  margin: 0 0 40px 0;
  text-align: center;
}

#login .login__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#login .form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#login .form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-800);
}

#login .form__input {
  padding: 16px;
  border: 1px solid var(--color-neutral-400);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  transition: all 0.2s ease;
}

#login .form__input:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 3px rgba(65, 101, 255, 0.1);
}

#login .form__input::placeholder {
  color: var(--color-neutral-500);
}

#login .login__button {
  padding: 16px;
  background: var(--color-primary-600);
  color: var(--color-static-white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

#login .login__button:hover {
  background: var(--color-primary-700);
}

#login .login__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

#login .login__link {
  font-size: 14px;
  color: var(--color-neutral-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

#login .login__link:hover {
  color: var(--color-primary-600);
}

#login .login__divider {
  width: 1px;
  height: 12px;
  background: var(--color-neutral-400);
}

#login .login__divider-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

#login .divider-line {
  flex: 1;
  height: 1px;
  background: var(--color-neutral-300);
}

#login .divider-text {
  font-size: 14px;
  color: var(--color-neutral-600);
}

#login .login__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#login .social__button {
  padding: 16px;
  border: 1px solid var(--color-neutral-400);
  border-radius: 8px;
  background: var(--color-static-white);
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans KR", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

#login .social__button:hover {
  background: var(--color-neutral-100);
}

#login .social__button--google {
  color: var(--color-neutral-800);
}

#login .social__button--kakao {
  background: #fee500;
  border-color: #fee500;
  color: #000000;
}

#login .social__button--kakao:hover {
  background: #fdd800;
  border-color: #fdd800;
}

@media (max-width: 768px) {
  #login .login__card {
    padding: 32px 24px;
  }
}

/* ==========================================
   SIGNIN PAGE STYLES
   ========================================== */

#signin .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#signin .signin__wrapper {
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 18px;
}

#signin .signin__card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#signin .signin__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 8px 0;
  text-align: center;
}

#signin .signin__subtitle {
  font-size: 16px;
  color: var(--color-neutral-600);
  margin: 0 0 40px 0;
  text-align: center;
}

#signin .signin__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#signin .form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#signin .form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-800);
}

#signin .form__input {
  padding: 16px;
  border: 1px solid var(--color-neutral-400);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  transition: all 0.2s ease;
}

#signin .form__input:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 3px rgba(65, 101, 255, 0.1);
}

#signin .form__input::placeholder {
  color: var(--color-neutral-500);
}

#signin .signin__agreements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--color-neutral-100);
  border-radius: 8px;
}

#signin .form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

#signin .form__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-primary-600);
}

#signin .form__checkbox-label {
  font-size: 14px;
  color: var(--color-neutral-800);
  cursor: pointer;
  flex: 1;
}

#signin .form__checkbox-label--bold {
  font-weight: 700;
  font-size: 16px;
}

#signin .required {
  color: var(--color-primary-600);
}

#signin .optional {
  color: var(--color-neutral-600);
}

#signin .agreements__divider {
  height: 1px;
  background: var(--color-neutral-300);
}

#signin .signin__button {
  padding: 16px;
  background: var(--color-primary-600);
  color: var(--color-static-white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

#signin .signin__button:hover {
  background: var(--color-primary-700);
}

#signin .signin__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

#signin .signin__footer-text {
  font-size: 14px;
  color: var(--color-neutral-700);
}

#signin .signin__footer-link {
  font-size: 14px;
  color: var(--color-primary-600);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

#signin .signin__footer-link:hover {
  color: var(--color-primary-700);
}

@media (max-width: 768px) {
  #signin .signin__card {
    padding: 32px 24px;
  }
}

/* ==========================================
   SUPPORT PAGE STYLES
   ========================================== */

#support .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#support .support__hero {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary-600) 0%,
    var(--color-secondary-600) 100%
  );
  padding: 96px 18px;
  display: flex;
  justify-content: center;
}

#support .support__hero-inner {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

#support .support__hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-static-white);
  margin: 0 0 16px 0;
}

#support .support__hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

#support .support__section {
  width: 100%;
  padding: 96px 18px;
  display: flex;
  justify-content: center;
}

#support .support__section--gray {
  background: var(--color-neutral-100);
}

#support .support__inner {
  max-width: 1200px;
  width: 100%;
}

#support .support__section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 48px 0;
  text-align: center;
}

#support .faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#support .faq__item {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 12px;
  overflow: hidden;
}

#support .faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

#support .faq__question:hover {
  background: var(--color-neutral-100);
}

#support .faq__question-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-neutral-900);
  font-family: "Noto Sans KR", sans-serif;
}

#support .faq__icon {
  font-size: 24px;
  color: var(--color-primary-600);
  font-weight: 300;
  min-width: 24px;
  text-align: center;
}

#support .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#support .faq__answer p {
  padding: 0 24px 24px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-700);
}

#support .contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

#support .contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#support .contact__card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 32px;
}

#support .contact__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 24px 0;
}

#support .contact__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#support .contact__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#support .contact__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral-700);
}

#support .contact__value {
  font-size: 16px;
  color: var(--color-neutral-800);
  line-height: 1.6;
}

#support .contact__form-wrapper {
  display: flex;
  align-items: stretch;
}

#support .contact__form {
  flex: 1;
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#support .form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#support .form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-800);
}

#support .form__input,
#support .form__textarea {
  padding: 16px;
  border: 1px solid var(--color-neutral-400);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  transition: all 0.2s ease;
}

#support .form__input:focus,
#support .form__textarea:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 3px rgba(65, 101, 255, 0.1);
}

#support .form__input::placeholder,
#support .form__textarea::placeholder {
  color: var(--color-neutral-500);
}

#support .form__textarea {
  resize: vertical;
  min-height: 120px;
}

#support .contact__submit {
  padding: 16px;
  background: var(--color-primary-600);
  color: var(--color-static-white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

#support .contact__submit:hover {
  background: var(--color-primary-700);
}

@media (max-width: 1024px) {
  #support .contact__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #support .support__hero-title {
    font-size: 36px;
  }

  #support .support__hero-desc {
    font-size: 18px;
  }
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

#about .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about .about__hero {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary-600) 0%,
    var(--color-secondary-600) 100%
  );
  padding: 120px 18px;
  display: flex;
  justify-content: center;
}

#about .about__hero-inner {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

#about .about__hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-static-white);
  margin: 0 0 24px 0;
  line-height: 1.4;
}

#about .about__hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

#about .about__section {
  width: 100%;
  padding: 96px 18px;
  display: flex;
  justify-content: center;
}

#about .about__section--gray {
  background: var(--color-neutral-100);
}

#about .about__inner {
  max-width: 1200px;
  width: 100%;
}

#about .about__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 64px 0;
  text-align: center;
}

#about .value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

#about .value__card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

#about .value__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

#about .value__icon-box {
  width: 80px;
  height: 80px;
  background: var(--color-primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

#about .value__icon {
  font-size: 40px;
}

#about .value__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 16px 0;
}

#about .value__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-neutral-700);
  margin: 0;
}

#about .timeline {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

#about .timeline__year-group {
  display: flex;
  gap: 40px;
}

#about .timeline__year {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-600);
  min-width: 120px;
}

#about .timeline__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#about .timeline__item {
  display: flex;
  gap: 24px;
  position: relative;
}

#about .timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 32px;
  width: 2px;
  height: calc(100% + 32px);
  background: var(--color-neutral-300);
}

#about .timeline__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary-600);
  border: 4px solid var(--color-primary-200);
  flex-shrink: 0;
  margin-top: 4px;
}

#about .timeline__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#about .timeline__date {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-neutral-800);
}

#about .timeline__text {
  font-size: 18px;
  color: var(--color-neutral-700);
  line-height: 1.6;
}

#about .location__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

#about .location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#about .location__card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 32px;
}

#about .location__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin: 0 0 20px 0;
}

#about .location__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#about .location__address {
  font-size: 16px;
  color: var(--color-neutral-800);
  line-height: 1.6;
  margin: 0 0 8px 0;
  font-weight: 500;
}

#about .location__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#about .location__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral-700);
}

#about .location__value {
  font-size: 16px;
  color: var(--color-neutral-800);
  line-height: 1.6;
}

#about .location__map {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  overflow: hidden;
}

#about .map__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--color-neutral-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#about .map__text {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-neutral-700);
  margin: 0;
}

#about .map__subtext {
  font-size: 14px;
  color: var(--color-neutral-600);
  margin: 0;
}

#about .about__cta {
  width: 100%;
  background: var(--color-secondary-600);
  padding: 96px 18px;
  display: flex;
  justify-content: center;
}

#about .about__cta-inner {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

#about .about__cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-static-white);
  margin: 0 0 40px 0;
  line-height: 1.4;
}

#about .about__cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#about .cta__button {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#about .cta__button--primary {
  background: var(--color-primary-600);
  color: var(--color-static-white);
}

#about .cta__button--primary:hover {
  background: var(--color-primary-700);
}

#about .cta__button--white {
  background: var(--color-static-white);
  color: var(--color-neutral-900);
}

#about .cta__button--white:hover {
  background: var(--color-neutral-100);
}

@media (max-width: 1024px) {
  #about .value__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #about .location__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #about .about__hero-title {
    font-size: 36px;
  }

  #about .about__hero-desc {
    font-size: 18px;
  }

  #about .timeline__year-group {
    flex-direction: column;
    gap: 24px;
  }

  #about .timeline__year {
    min-width: auto;
  }
}

/* ========================================
   Price Page - 가격 안내
   ======================================== */

#price {
  background-color: #f5f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

#price .price-page {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 72px 0 120px;
}

/* Price Header */
#price .price-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
}

#price .price-header__title {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.36px;
  color: var(--color-static-black);
  margin: 0;
}

#price .price-header__desc {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-700);
  margin: 0;
}

/* Tab Toggle */
#price .price-tab {
  display: flex;
  align-items: center;
  gap: 3px;
  background-color: #e9ecf0;
  padding: 4px;
  border-radius: 10px;
}

#price .price-tab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-neutral-700);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
}

#price .price-tab__btn--active {
  background-color: #2c2c2c;
  color: #f5f5f5;
  border: 1px solid #2c2c2c;
}

/* Price Content */
#price .price-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#price .price-content--hidden {
  display: none;
}

/* ---- 기업 탭 카드 ---- */
#price .price-cards--company {
  width: 100%;
  max-width: 996px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#price .price-card {
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 40px 36px;
}

#price .price-card__inner {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

#price .price-card__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 0 8px;
  gap: 16px;
}

#price .price-card__title {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.24px;
  color: #21272a;
  margin: 0;
}

#price .price-card__desc {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-700);
  margin: 0;
}

#price .price-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

#price .price-card__price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-right: 4px;
  text-align: center;
}

#price .price-card__price-text {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--color-neutral-900);
}

#price .price-card__price-sub {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.14px;
  color: var(--color-neutral-700);
}

#price .price-card__inquiry {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.18px;
  color: var(--color-neutral-700);
  padding-right: 4px;
  text-align: center;
}

#price .price-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -0.16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#price .price-card__btn:hover {
  opacity: 0.85;
}

#price .price-card__btn--primary {
  background-color: var(--color-primary-600);
  color: var(--color-static-white);
}

/* 카드 2열 레이아웃 */
#price .price-card-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

#price .price-card-row .price-card {
  flex: 1;
}

/* ---- 다크 카드 (수수료) ---- */
#price .price-card--dark {
  background-color: var(--color-secondary-600);
  border: none;
  border-radius: 16px;
  height: 148px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

#price .price-card--dark .price-card__inner {
  padding: 40px 36px;
  z-index: 1;
  width: 100%;
}

#price .price-card--dark__bg {
  display: none;
  width: 447px;
  height: 459px;
  flex-shrink: 0;
  mix-blend-mode: hard-light;
  opacity: 0.1;
  margin-left: -200px;
  margin-top: -150px;
}

#price .price-card--dark__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#price .price-card--dark__title {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.24px;
  color: var(--color-static-white);
  margin: 0;
}

#price .price-card--dark__desc {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-300);
  margin: 0;
}

#price .price-card--dark .price-card__left {
  gap: 8px;
}

#price .price-card--dark__price {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 4px;
}

#price .price-card--dark__price-num {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.24px;
  color: var(--color-static-white);
  text-align: center;
}

#price .price-card--dark__price-unit {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.18px;
  color: var(--color-static-white);
  text-align: center;
}

#price .price-card--dark__price-per {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-300);
  text-align: center;
}

/* ---- 연구소 탭 ---- */
#price .price-cards--lab {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

#price .price-plan-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

#price .price-plan-card {
  width: 371px;
  flex: 1;
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

#price .price-plan-card__badge {
  display: none;
}

#price .price-plan-card--recommend {
  border-color: var(--color-primary-600);
  border-width: 2px;
}

#price .price-plan-card--recommend .price-plan-card__badge {
  background-color: var(--color-primary-600);
  color: var(--Color-Static-White, #fff);
  text-align: center;
  /* Notosans/Button 1 */
  font-family: "Noto Sans KR";
  font-size: var(--Number-Font-300, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 143.75% */
  letter-spacing: -0.16px;
  position: absolute;
  top: 0px;
  right: 36px;
  border-radius: 12px;
  display: block;
  border-radius: 0 0 8px 8px;
  background: var(--Color-Primary-600, #4165ff);
  padding: 4px 12px 8px 12px;
}

/* Plan Card Info */
#price .price-plan-card__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}

#price .price-plan-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#price .price-plan-card__name {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #21272a;
  margin: 0;
}

#price .price-plan-card__desc {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-700);
  margin: 0;
}

/* Plan Price */
#price .price-plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

#price .price-plan-card__price-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

#price .price-plan-card__price-num {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #21272a;
  text-align: center;
}

#price .price-plan-card__price-unit {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.24px;
  color: #21272a;
  text-align: center;
}

#price .price-plan-card__price-per {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-700);
  text-align: center;
  padding-bottom: 8px;
}

/* Plan Buttons */
#price .price-plan-card__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -0.16px;
  transition: opacity 0.2s ease;
}

#price .price-plan-card__btn:hover {
  opacity: 0.85;
}

#price .price-plan-card__btn--current {
  background-color: rgba(72, 77, 94, 0.1);
  border: 1px solid var(--color-neutral-300);
  color: var(--color-neutral-600);
  cursor: default;
}

#price .price-plan-card__btn--current:hover {
  opacity: 1;
}

#price .price-plan-card__btn--upgrade {
  background-color: var(--color-primary-600);
  color: var(--color-static-white);
}

/* Plan Features */
#price .price-plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
}

#price .price-plan-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

#price .price-plan-card__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

#price .price-plan-card__feature span {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-neutral-900);
}

/* 연구소 다크 카드 */
#price .price-card--dark-lab {
  width: 100%;
  height: 156px;
}

/* ========================================
   상담 모달
   ======================================== */

.consult-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.consult-modal--active {
  display: flex;
}

.consult-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.consult-modal__dialog {
  display: flex;
  gap: 16px;
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: 24px;
  padding: 12px;
  width: 800px;
  min-width: 320px;
  z-index: 1;
  max-height: 90vh;
}

/* 모달 왼쪽 */
.consult-modal__left {
  flex: 1;
  background-color: var(--color-primary-700);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.consult-modal__left-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 36px;
}

.consult-modal__left-title {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.24px;
  color: var(--color-static-white);
  margin: 0;
}

.consult-modal__left-desc {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: #f5f7fa;
  margin: 0;
}

.consult-modal__left-illust {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}

.consult-modal__left-illust img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
}

/* 모달 오른쪽 */
.consult-modal__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.consult-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.consult-modal__close:hover {
  opacity: 0.7;
}

/* 모달 폼 */
.consult-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 12px 16px;
  align-items: flex-end;
}

.consult-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.consult-modal__field-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.consult-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.consult-modal__label {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #1e1e1e;
}

.consult-modal__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: var(--color-static-white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #1e1e1e;
  min-width: 120px;
  outline: none;
  transition: border-color 0.2s ease;
}

.consult-modal__input:focus {
  border-color: var(--color-primary-600);
}

.consult-modal__input::placeholder {
  color: #999;
}

/* 커스텀 셀렉트 */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 12px 12px 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: var(--color-static-white);
  cursor: pointer;
  min-width: 120px;
  transition: border-color 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: var(--color-neutral-400);
}

.custom-select--open .custom-select__trigger {
  border-color: var(--color-primary-600);
}

.custom-select__value {
  flex: 1;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select__value--selected {
  color: #1e1e1e;
}

.custom-select__arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.custom-select--open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: var(--color-static-white);
  border: 1px solid var(--color-neutral-400);
  border-radius: 8px;
  box-shadow:
    0 4px 4px -1px rgba(12, 12, 13, 0.1),
    0 4px 4px -1px rgba(12, 12, 13, 0.05);
  padding: 8px;
  z-index: 10;
  overflow: hidden;
}

.custom-select--open .custom-select__options {
  display: flex;
}

.custom-select__option {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-neutral-900);
  cursor: pointer;
  border-bottom: 1px solid var(--color-neutral-400);
  transition: background-color 0.15s ease;
}

.custom-select__option:last-child {
  border-bottom: none;
}

.custom-select__option:hover {
  background-color: #f5f7fa;
}

/* 모달 하단 액션 */
.consult-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* 체크박스 */
.consult-modal__checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
  min-width: 120px;
}

.consult-modal__checkbox input[type="checkbox"] {
  display: none;
}

.consult-modal__checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.consult-modal__checkbox
  input[type="checkbox"]:checked
  + .consult-modal__checkbox-custom {
  background-color: #2c2c2c;
  border-color: #2c2c2c;
}

.consult-modal__checkbox
  input[type="checkbox"]:checked
  + .consult-modal__checkbox-custom::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin-top: -2px;
}

.consult-modal__checkbox-text {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #1e1e1e;
  flex: 1;
}

.consult-modal__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background-color: var(--color-secondary-700);
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -0.16px;
  color: var(--color-static-white);
  min-height: 40px;
  transition: opacity 0.2s ease;
}

.consult-modal__submit:hover {
  opacity: 0.85;
}

/* ---- Price Page 반응형 ---- */
@media (max-width: 1024px) {
  #price .price-page {
    padding: 48px 18px 80px;
    gap: 40px;
  }

  #price .price-cards--company {
    max-width: 100%;
  }

  #price .price-card-row {
    flex-direction: column;
  }

  #price .price-plan-row {
    flex-direction: column;
    gap: 16px;
  }

  #price .price-plan-card {
    width: 100%;
  }

  .consult-modal__dialog {
    flex-direction: column;
    width: 90%;
    max-width: 500px;
  }

  .consult-modal__left {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  #price .price-header__title {
    font-size: 28px;
  }

  #price .price-card__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  #price .price-card__right {
    align-items: flex-start;
    width: 100%;
  }

  #price .price-card__btn {
    width: 100%;
  }

  #price .price-card--dark {
    height: auto;
  }

  #price .price-card--dark .price-card__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .consult-modal__field-row {
    flex-direction: column;
    gap: 16px;
  }
}
