@charset "utf-8";

/* =========================================================
   SMT첨단바이오 · 첨단재생의료 실시기관 지정 컨설팅 랜딩
   - 모바일 우선, 1024px 이상에서 데스크탑 레이아웃
   - 사진은 전부 "이미지 슬롯"(.img-slot) — 더미 파일 위에 실제 파일만 덮어쓰면 됨
   ========================================================= */

:root {
  --navy-900: #081633;
  --navy-800: #0e2455;
  --navy-700: #163675;
  --navy: #16294f;
  --blue: #1f4bd8;
  --blue-dk: #1b3c9e;
  --cyan: #3fc9f2;
  --cyan-lt: #8fe2fb;
  --ink: #1b2440;
  --gray: #5d6b88;
  --gray-lt: #8593ad;
  --line: #dfe6f2;
  --bg: #ffffff;
  --bg-soft: #f2f6fc;
  --orange: #e5883b;
  --green: #2f9e68;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(12, 32, 78, 0.08);
  --inner: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    'Pretendard',
    -apple-system,
    BlinkMacSystemFont,
    'Apple SD Gothic Neo',
    'Malgun Gothic',
    sans-serif;
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
ul,
li,
figure {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.inner {
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ---------- 이미지 슬롯 (실제 이미지 교체 전 플레이스홀더) ---------- */
.img-slot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #e4ecf9 0%, #cddcf2 100%);
}

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

.img-slot > img.is-empty {
  display: none;
}

.img-slot--bg {
  position: absolute;
  inset: 0;
  background: none;
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 26px;
  white-space: nowrap;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn--primary {
  background: var(--blue-dk);
  color: #fff;
  box-shadow: 0 12px 26px rgba(27, 60, 158, 0.28);
}

.btn--primary:hover {
  background: #16327f;
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
  padding: 0 12px;
}

.btn__arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

/* ---------- 공통 섹션 타이틀 ---------- */
.sec-title {
  text-wrap: balance;
  text-align: center;
  color: var(--navy);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.sec-title--left {
  text-align: left;
}

/* ---------- 등장 애니메이션 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   상단 바
   ========================================================= */
.gnb {
  /* 모바일에서는 숨기고 하단 고정 CTA 로 대체 (1024px 이상에서 노출) */
  display: none;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.gnb__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gnb__logo {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.gnb__name {
  /* 에디터 자동 포맷으로 태그 사이 줄바꿈이 생겨도 공백이 벌어지지 않도록 flex 사용 */
  display: flex;
  font-weight: 800;
}

.gnb__logo b {
  color: var(--blue-dk);
}

.gnb__logo span {
  display: none;
  color: var(--gray-lt);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.gnb__cta {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--blue-dk);
  color: var(--blue-dk);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.gnb__cta:hover {
  background: var(--blue-dk);
  color: #fff;
}

/* =========================================================
   1. 히어로
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fd 100%);
}

/* 배경 사진을 히어로 전체에 꽉 차게 깔고, 그 위에 카피를 얹는다 */
.hero__bg img {
  object-position: 75% center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* 카피가 놓이는 상단은 진하게, 하단은 옅게 — 사진이 그대로 드러나도록 */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(255, 255, 255, 0.55) 78%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner);
  margin: 0 auto;
}

.hero__copy {
  padding: 44px 0;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid #b9cbee;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dk);
  font-size: 18px;
  font-weight: 700;
}

.hero__title {
  color: var(--navy);
  /* 좁은 화면에서 줄이 고르게 나뉘도록 */
  text-wrap: balance;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.hero__title b {
  color: var(--navy);
}

.hero__desc {
  margin-top: 16px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.72;
}

.hero__point {
  margin-top: 22px;
  color: var(--blue-dk);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.hero .btn {
  margin-top: 26px;
}

/* =========================================================
   2. 현황 통계
   ========================================================= */
.stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1c44 0%, #12295e 55%, #0d1f4b 100%);
  color: #fff;
  text-align: center;
}

.stats__bg img {
  opacity: 1;
  /* 좁은 화면에서는 지도(좌측)가 잘리지 않도록 왼쪽 기준 */
  object-position: 0% center;
}

.stats::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: 460px;
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(63, 201, 242, 0.28) 0%, rgba(63, 201, 242, 0) 68%);
  pointer-events: none;
}

.stats__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 54px 20px 58px;
}

.stats__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cyan-lt);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stats__date::before,
.stats__date::after {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(143, 226, 251, 0.5);
}

.stats__title {
  text-wrap: balance;
  margin-top: 14px;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.stats__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 26px;
}

.stat {
  flex: 1 1 0;
  padding: 6px 8px;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--cyan);
  line-height: 1;
}

.stat__num b {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum';
}

.stat__num em {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.stat__label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.stats__foot {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.3;
}

.stats__foot b {
  display: inline-block;
  margin-top: 6px;
  color: var(--cyan);
  font-size: 19px;
  font-weight: 800;
}

/* =========================================================
   3. 준비 조건
   ========================================================= */
.cond {
  padding: 54px 0 58px;
  background: #fff;
}

.cond__list {
  /* 그리드 대신 flex: 마지막 줄에 남는 항목(모바일 4+3)도 가운데로 모인다 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 30px auto 0;
}

.cond__item {
  display: flex;
  min-width: 0;
  /* 한 줄에 4개 (gap 10px × 3) */
  flex: 0 0 calc((100% - 30px) / 4);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cond__item:hover {
  border-color: #b9cbee;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16, 41, 95, 0.08);
}

.cond__icon {
  display: block;
}

.cond__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cond__item b {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

/* 좁은 화면에서만 줄을 나누는 헬퍼 */
.mo-br {
  display: none;
}

@media (max-width: 700px) {
  .mo-br {
    display: inline;
  }
}

/* 아이콘 아래 마무리 문구 */
.cond__lead {
  position: relative;
  max-width: 920px;
  margin: 34px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  text-align: center;
  text-wrap: balance;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.cond__lead b {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 700px) {
  .cond__lead {
    margin-top: 26px;
    padding: 18px 16px;
    font-size: 17px;
  }
}

.cond__compare {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.cond__lead {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.72;
}

.cond__lead b {
  color: var(--navy);
}

.compare {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.compare__col {
  padding: 22px 20px;
  border-radius: var(--radius);
}

.compare__col--alone {
  background: #f4f6fa;
  border: 1px solid #e3e8f1;
}

.compare__col--with {
  background: linear-gradient(160deg, #12295e 0%, #1c3f8f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.compare__head {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.compare__col--alone .compare__head {
  color: var(--gray-lt);
}

.compare__col--with .compare__head {
  color: var(--cyan);
}

.compare li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.68;
}

.compare li + li {
  margin-top: 8px;
}

.compare__col--alone li {
  color: var(--gray);
}

.compare__col--alone li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 10px;
  width: 9px;
  height: 2px;
  background: #b6bfd0;
}

.compare__col--with li {
  color: rgba(255, 255, 255, 0.92);
}

.compare__col--with li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--cyan);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* =========================================================
   4. 원스탑
   ========================================================= */
/* =========================================================
   3-2. 왜 SMT바이오인가 — 네이비 톤 섹션
   ========================================================= */
.why {
  position: relative;
  overflow: hidden;
  padding: 56px 0 62px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(31, 75, 216, 0.35) 0%, rgba(8, 22, 51, 0) 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

/* ---- 상단 경고 배너 ---- */
.why__alert {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(143, 226, 251, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 22, 51, 0.55);
}

.why__alert-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: rgba(229, 136, 59, 0.12);
  box-shadow: 0 0 0 6px rgba(229, 136, 59, 0.08);
}

.why__alert-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(229, 136, 59, 0.55);
  border-radius: 999px;
  background: rgba(229, 136, 59, 0.14);
  color: #f3b072;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why__alert-body strong {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.why__alert-body p {
  margin-top: 8px;
  color: #b9c8e6;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

/* ---- 섹션 타이틀 ---- */
.why__title {
  margin-top: 34px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.why__title em {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-lt);
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* ---- 3개 카드 ---- */
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.wcard {
  position: relative;
  padding: 26px 24px 28px;
  border: 1px solid rgba(143, 226, 251, 0.2);
  border-radius: 18px;
  background: rgba(14, 36, 85, 0.7);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.wcard:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 226, 251, 0.45);
}

.wcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wcard__no {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.wcard__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wcard h3 {
  margin-top: 30px;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.wcard p {
  margin-top: 12px;
  color: #b9c8e6;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

/* 가운데 핵심 카드: 흰 배경으로 대비를 준다 */
.wcard--key {
  border-color: transparent;
  background: #fff;
  box-shadow: 0 20px 40px rgba(4, 14, 38, 0.35);
}

.wcard--key .wcard__no {
  color: var(--orange);
}

.wcard--key .wcard__icon svg {
  stroke: var(--orange);
}

.wcard--key h3 {
  color: var(--navy);
}

.wcard--key p {
  color: var(--gray);
}
@media (max-width: 900px) {
  .why__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .wcard--key {
    order: -1;
  }
}

@media (max-width: 700px) {
  .why {
    padding: 44px 0 48px;
  }

  .why__alert {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 20px;
  }

  .why__alert-icon {
    width: 50px;
    height: 50px;
  }

  .why__alert-body strong {
    font-size: 21px;
    line-height: 1.45;
  }

  .why__alert-body p {
    font-size: 18px;
  }

  .why__title {
    margin-top: 28px;
    font-size: 20px;
  }

  .why__title em {
    font-size: 27px;
  }

  .why__title br {
    display: none;
  }

  .wcard {
    padding: 22px 20px 24px;
  }

  .wcard h3 {
    margin-top: 22px;
    font-size: 21px;
  }
}

.onestop {
  position: relative;
  overflow: hidden;
  padding: 56px 0 60px;
  background: #eaf0fa;
}

.onestop__bg img {
  opacity: 1;
}

.onestop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 243, 252, 0.5) 0%, rgba(228, 236, 250, 0.45) 100%);
  pointer-events: none;
}

.onestop .inner {
  position: relative;
  z-index: 1;
}

.onestop__title {
  text-wrap: balance;
  text-align: center;
  color: var(--navy);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.045em;
  /* '시설·장비·인력…' 처럼 공백 없이 이어진 문구가 좁은 화면을 밀어내지 않도록 */
  overflow-wrap: anywhere;
}

.onestop__title b {
  color: var(--blue-dk);
}

.onestop__cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.ocard {
  padding: 24px 22px 26px;
  border: 2px solid var(--navy-800);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(14, 36, 85, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ocard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(14, 36, 85, 0.13);
}

.ocard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: #eef3fd;
}

.ocard__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--navy-800);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ocard h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.ocard p {
  margin-top: 10px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.68;
}

.ocard--orange {
  border-color: var(--orange);
}

.ocard--orange .ocard__icon {
  background: #fdf1e4;
}

.ocard--orange .ocard__icon svg {
  stroke: var(--orange);
}

.ocard--green {
  border-color: var(--green);
}

.ocard--green .ocard__icon {
  background: #e7f5ee;
}

.ocard--green .ocard__icon svg {
  stroke: var(--green);
}

/* =========================================================
   5. 사례
   ========================================================= */
.cases {
  padding: 54px 0 58px;
  background: #fff;
}

.cases__list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.case {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(14, 36, 85, 0.06);
}

.case__head {
  padding: 14px 16px;
  background: linear-gradient(135deg, #17357f 0%, #1f4bd8 100%);
  color: #fff;
}

.case__who {
  display: block;
  color: var(--cyan-lt);
  font-size: 18px;
  font-weight: 600;
}

.case__who em {
  font-style: normal;
  opacity: 0.85;
}

.case__result {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.case__thumb {
  height: 180px;
}

.case__body {
  padding: 18px 16px 22px;
}

.case__label {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.case__label--before {
  color: #d9534f;
}

.case__label--after {
  margin-top: 14px;
  color: var(--blue);
}

.case__body p:not(.case__label) {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.68;
}

/* =========================================================
   6. 상담 신청
   ========================================================= */
.apply {
  position: relative;
  overflow: hidden;
  padding: 56px 0 62px;
  background: #e9eff9;
}

.apply__bg img {
  opacity: 1;
  /* 가로로 긴 패턴 이미지라 좁은 화면에서는 DNA 쪽(우측)을 보여준다 */
  object-position: right center;
}

.apply::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(233, 240, 250, 0.2) 0%, rgba(224, 233, 248, 0.2) 100%);
  pointer-events: none;
}

.apply__inner {
  position: relative;
  z-index: 1;
}

.apply__copy h2 {
  text-wrap: balance;
  color: var(--navy);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.apply__copy h2 b {
  color: var(--blue);
}

.apply__copy p {
  margin-top: 12px;
  color: var(--gray);
  font-size: 18px;
}

.apply__form {
  margin-top: 26px;
  padding: 24px 16px 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 44px rgba(12, 32, 78, 0.14);
}

.field + .field {
  margin-top: 10px;
}

.field input,
.field select {
  width: 100%;
  height: 58px;
  padding: 0 16px;
  border: 1px solid #d7dfee;
  border-radius: 8px;
  background: #fbfcff;
  font-size: 18px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, #7d8aa4 50%), linear-gradient(135deg, #7d8aa4 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 26px,
    calc(100% - 14px) 26px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  color: var(--ink);
}

.field select:invalid,
.field select option[value=''] {
  color: #9aa6bd;
}

.field input::placeholder {
  color: #9aa6bd;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 75, 216, 0.12);
  background: #fff;
}

.agree {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 16px 0 18px;
  white-space: nowrap;
}

.agree__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 18px;
  cursor: pointer;
}

.agree__label input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue-dk);
  cursor: pointer;
}

.agree__view {
  color: var(--blue-dk);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
}

/* 아주 좁은 화면(320px 등): 폰트는 18px 그대로 두고 여백만 줄여 동의 문구를 한 줄로 유지 */
@media (max-width: 359px) {
  .inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .apply__form {
    padding-left: 10px;
    padding-right: 10px;
  }

  .agree {
    gap: 4px;
  }

  .agree__label {
    gap: 6px;
  }
}

/* =========================================================
   푸터
   ========================================================= */
.footer {
  padding: 40px 0 90px;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.72;
}

.footer__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.68;
}

.footer__lead b {
  color: #fff;
}

.footer__brand {
  margin-top: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer__info {
  margin-top: 10px;
}

.footer__copy {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 18px;
}

/* ---------- 모바일 고정 CTA ---------- */
.fixed-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 8px;
  background: var(--blue-dk);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(8, 22, 51, 0.32);
  transform: translateY(120%);
  transition: transform 0.28s ease;
}

.fixed-cta.is-show {
  transform: none;
}

/* ---------- 개인정보 모달 ---------- */
.policy {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.policy[hidden] {
  display: none;
}

.policy__dim {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 51, 0.6);
}

.policy__box {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 24px 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 22, 51, 0.35);
}

.policy__box h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.policy__body {
  max-height: 46vh;
  margin: 14px 0 18px;
  overflow-y: auto;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.72;
}

.policy__body p + p {
  margin-top: 12px;
}

.policy__close {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: var(--navy-800);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* =========================================================
   태블릿
   ========================================================= */
@media (min-width: 640px) {
  .sec-title {
    font-size: 33px;
  }

  .hero__title {
    font-size: 35px;
  }

  .hero__copy {
    padding: 64px 0;
  }

  .stats__title {
    font-size: 33px;
  }

  .stat__num b {
    font-size: 74px;
  }

  .onestop__title {
    font-size: 27px;
  }

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

  .compare {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply__copy h2 {
    font-size: 35px;
  }

  .apply__form {
    padding: 30px 28px 32px;
  }

  .case__thumb {
    height: 160px;
  }
}

/* =========================================================
   데스크탑
   ========================================================= */
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }

  .gnb {
    display: block;
  }

  .gnb__inner {
    padding: 14px 20px;
  }

  .gnb__logo {
    font-size: 23px;
  }

  .gnb__logo span {
    display: block;
  }

  .gnb__cta {
    height: 46px;
    padding: 0 22px;
    font-size: 18px;
  }

  /* 히어로: 배경 사진 풀블리드 + 좌측 카피 */
  .hero {
    display: flex;
    align-items: center;
    min-height: 620px;
  }

  .hero__bg img {
    object-position: center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.35) 62%, rgba(255, 255, 255, 0) 80%);
  }

  .hero__inner {
    width: 100%;
  }

  .hero__copy {
    max-width: 640px;
    padding: 70px 0;
  }

  .hero__title {
    font-size: clamp(29px, 2.45vw, 36px);
  }

  .hero__desc {
    font-size: 18.5px;
  }

  .hero__point {
    font-size: 26px;
  }

  .stats__bg img {
    object-position: center;
  }

  .stats__inner {
    padding: 78px 20px 84px;
  }

  .stats__title {
    font-size: 40px;
  }

  .stats__row {
    gap: 40px;
    max-width: 760px;
    margin: 34px auto 0;
  }

  .stat__num b {
    font-size: 92px;
  }

  .stat__num em {
    font-size: 28px;
  }

  .stat__label {
    font-size: 18px;
  }

  .stats__foot {
    font-size: 19.5px;
  }

  .stats__foot b {
    font-size: 24px;
  }

  .cond {
    padding: 88px 0 92px;
  }

  .sec-title {
    font-size: 40px;
  }

  .cond__list {
    gap: 14px;
    max-width: 1000px;
    margin-top: 44px;
  }

  /* 한 줄에 7개 (gap 14px × 6) */
  .cond__item {
    flex-basis: calc((100% - 84px) / 7);
  }

  .cond__item {
    padding: 22px 6px;
    gap: 12px;
  }

  .cond__icon img {
    width: 64px;
    height: 64px;
  }

  .cond__item b {
    font-size: 18px;
  }

  .cond__compare {
    margin-top: 56px;
    padding-top: 44px;
  }

  .cond__lead {
    font-size: 19.5px;
  }

  .compare {
    gap: 20px;
    margin-top: 28px;
  }

  .compare__col {
    padding: 30px 28px;
  }

  .onestop {
    padding: 90px 0 96px;
  }

  .onestop__title {
    font-size: 33px;
  }

  .onestop__cards {
    gap: 22px;
    margin-top: 44px;
  }

  .ocard {
    padding: 32px 28px 34px;
  }

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

  .cases {
    padding: 88px 0 92px;
  }

  .cases__list {
    gap: 22px;
    margin-top: 40px;
  }

  .case__thumb {
    height: 200px;
  }

  .case__result {
    font-size: 18px;
  }

  .apply {
    padding: 92px 0 96px;
  }

  .apply__bg img {
    object-position: center;
  }

  .apply__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .apply__copy h2 {
    font-size: 43px;
  }

  .apply__copy p {
    font-size: 18.5px;
  }

  .apply__form {
    margin-top: 0;
    padding: 36px 34px 38px;
  }

  .footer {
    padding: 56px 0 60px;
  }

  .footer__lead {
    font-size: 19.5px;
  }

  .footer__info {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  /* 데스크탑에서는 하단 고정 CTA 숨김 */
  .fixed-cta {
    display: none;
  }
}
