  :root {
	--hero-h: 100vh;
  }

  * {
	box-sizing: border-box;
  }

  body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: #fff;
	background: #000;
  }

  /* ===== 섹션 1 ===== */
  .scrolly {
	position: relative;
  }

  .sticky-wrap {
	position: sticky;
	top: 0;
	height: var(--hero-h);
	overflow: hidden;
	background: #000;
  }

  .bg {
	position: absolute;
	inset: 0;
	width: 100%;
	object-position: center;
	display: block;
	user-select: none;
	pointer-events: none;
  }

  .Overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 0 6vw;
  }

  .Overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: -1;
  }

  .headline {
	position: relative;
	z-index: 2;
	margin: 0;
	text-align: center;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
	line-height: 1.25;
	bottom: 100px;
  }

  .headline .big {
	display: block;
	font-weight: 800;
	font-size: clamp(2.8rem, 7.8vw, 5.4rem);
  }

  .headline .small {
	display: block;
	margin-top: 0.5rem;
	font-weight: 500;
	font-size: clamp(1rem, 2.8vw, 1.55rem);
  }

  .swap {
	animation: swapIn 0.6s ease-out both;
  }

  .picture-wrap {
	  height: 1159px;
	  width: 100%;
	  overflow: hidden;
	}

	.picture-wrap img {
	  width: 100%;
	  object-position: center bottom;
	}

  @keyframes swapIn {
	from {
	  opacity: 0;
	  transform: translate3d(0, 1rem, 0);
	}
	to {
	  opacity: 1;
	  transform: none;
	}
  }

  .step {
	height: 60vh;
  }

  .m-headline {
	display: none;
  }
  .m-headline-wrap,
  .m-step,
  .m-tail {
	display: none;
  }

  @media (max-width: 900px) {
	.step { display: none; }
	.headline {
	  display: none;
	}
	.m-headline-wrap {
	  display: block;
	}
	.m-step,
	.m-tail {
	  display: block;
	}
	.picture-wrap img {
	  width: 100%;
	}
  }

  @media (max-width: 900px) {
	.headline {
	  display: none;
	}
	.m-headline {
	  display: block;
	  text-align: center;
	}
	.m-headline .mline {
	  display: block;
	  opacity: 0;
	  transform: translate3d(0, 10px, 0);
	  transition: opacity 0.5s ease, transform 0.5s ease;
	  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
	}
	.m-headline .mline.big {
	  font-weight: 800;
	  font-size: clamp(24px, 8.6vw, 40px);
	  line-height: 1.2;
	  margin-bottom: 8px;
	}
	.m-headline .mline.sub {
	  font-weight: 700;
	  font-size: clamp(14px, 4.4vw, 18px);
	  line-height: 1.3;
	}
	.m-headline .mline.on {
	  opacity: 1;
	  transform: none;
	}

	.mline {
	  display: block;
	  text-align: center;
	  line-height: 1.4;
	  opacity: 0;
	  transform: translateY(20px);
	  transition: opacity 0.6s ease, transform 0.6s ease;
	}
	.mline.big {
	  font-size: clamp(1.6rem, 15vw, 4.2rem);
	  font-weight: 800;
	  margin-bottom: 30px;
	}
	.mline.sub {
	  font-size: clamp(1rem, 4.5vw, 1.4rem);
	  font-weight: 500;
	}
	.mline.on {
	  opacity: 1;
	  transform: translateY(0);
	}
	.mline.always {
	  opacity: 1 !important;
	  transform: none !important;
	}
	.m-step {
	  height: 30vh;
	}
	.m-tail {
	  height: 20vh;
	}
  }

  /* ===== 섹션 2 ===== */
  .hero2 {
	  position: relative;
	  height: 1159px;
	}

	.sticky2 {
	  position: sticky;
	  top: 0;
	  height: 1159px;
	  overflow: hidden;
	}

	/* 🔹 배경 */
	.picture-wrap2 {
	  position: absolute;   /* 🔥 중요 */
	  inset: 0;
	  z-index: 1;           /* 배경은 1 */
	}

	.picture-wrap2 img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	/* 🔥 GIF 레이어 */
	.device-layer {
	  position: absolute;   /* 🔥 중요 */
	  inset: 0;
	  z-index: 2;           /* 배경보다 위 */
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  pointer-events: none;
	}

	.device-layer img {
	  max-width: 80vw;
	  height: auto;
	}

	/* 모바일 전용 보정 */
	@media (max-width: 900px) {
	  .device-picture img {
		max-width: 85vw;
	  }

	  .hero2 {
		height: 800px;
	  }
	  .sticky2 {
	  	height: 100%;
	  }
	}

  /* ===== 섹션 3 ===== */
	.hero3 {
	  position: relative;
	  height: 1043px;
	}

	.sticky3 {
	  position: sticky;
	  top: 0;
	  height: 1043px;
	  overflow: hidden;
	}

	/* 배경 */
	.picture-wrap3 {
	  position: absolute;
	  inset: 0;
	  z-index: 1;
	}

	.picture-wrap3 img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	/* 🔥 GIF 레이어 */
	.device-layer3 {
	  position: absolute;
	  inset: 0;
	  z-index: 2;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  pointer-events: none;
	}

	.device-layer3 img {
	  max-width: 67vw;
	  height: auto;
	}

	@media (max-width: 900px) {
	  .device-picture3 img {
		max-width: 89vw;
	  }
	}


  /* ===== 섹션 4 ===== */
  .hero4 {
	position: relative;
	background: #000;
	height: 1021px;
  }

  .bg4 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-select: none;
	pointer-events: none;
  }

  .overlay4 {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 2;
  }

  .feature4-img {
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translate3d(0, 30px, 0) scale(0.975);
	filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.45));
	transition: opacity 1s ease, transform 1s ease;
	pointer-events: none;
  }

  .hero4.show .feature4-img {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
  }

  .badgeCloud {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 3;
	pointer-events: none;
  }

  .badge {
	position: absolute;
	left: 50%;
	top: 20%;
	width: clamp(56px, 9vw, 120px);
	opacity: 0;
	transform: translate(-50%, 0) translateY(30px) scale(0.95);
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
	transition: opacity 1s ease, transform 1s ease;
	transition-delay: var(--delay, 0ms);
  }

  .hero4.show .badge {
	opacity: 1;
	transform: translate(-50%, 0) translateY(0) scale(1);
  }

  .hub-img {
	position: absolute;
	left: 50%;
	bottom: 25%;
	transform: translateX(-50%) translateY(30px) scale(0.95);
	width: clamp(120px, 24vw, 365px);
	height: auto;
	opacity: 0;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
	transition: opacity 1s ease, transform 1s ease;
	transition-delay: var(--hub-delay, 0ms);
  }

  .hero4.show .hub-img {
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
  }

  @media (max-width: 900px) {
	 .hero4 {
		height: auto;
	 }

	.hub-img {
	  bottom: 32%;
      width: clamp(120px, 50vw, 210px);
	}
	.badge {
	  top: 16%;
	  width: clamp(56px, 16vw, 100px);
	}
	.overlay4 .badge:nth-of-type(1) { left: 38%; top: 14%; }
	.overlay4 .badge:nth-of-type(2) { left: 60%; top: 16%; }
	.overlay4 .badge:nth-of-type(3) { left: 56%; top: 26%; }
	.overlay4 .badge:nth-of-type(4) { left: 20%; top: 28%; }
	.overlay4 .badge:nth-of-type(5) { left: 44%; top: 22%; }
	.overlay4 .badge:nth-of-type(6) { left: 80%; top: 28%; }
  }

  /* ===== 섹션 5 ===== */
  .hero5 {
	position: relative;
	background: #000;
  }

  .sticky5 {
	position: sticky;
	top: 0;
	height: var(--hero-h);
	overflow: hidden;
  }

  .bg5 {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-select: none;
	pointer-events: none;
	display: block;
	z-index: 1;
  }

  .overlay5 {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 0 6vw;
	z-index: 2;
	bottom: 9vh;
  }

  /* 로켓 */
  .feature5-img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(30px);
	max-width: min(300px, 28vw);
	height: auto;
	opacity: 0;
	filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.45));
	transition: opacity 1s ease, transform 1s ease;
	pointer-events: none;
	z-index: 3;
  }

  .hero5.show .feature5-img {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	animation: rocketBounce 1.2s ease-in-out infinite;
  }

  @keyframes rocketBounce {
	0%,
	100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-18px); }
  }

  /* 상담 폼 */
  .contact5-wrap {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	justify-items: end;
	padding: 0 8vw;
	z-index: 4;
  }

  .contact5-card {
	width: min(360px, 92vw);
	background: #fff;
	color: #222;
	border-radius: 22px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	padding: 22px 22px 18px;
  }

  .contact5-header {
	text-align: center;
	margin-bottom: 14px;
  }

  .contact5-bell-img {
	width: 22px;
	height: 22px;
	display: block;
	margin: 0 auto 8px;
  }

  .contact5-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.2px;
  }

  .contact5-field {
	display: block;
	width: 100%;
	height: 44px;
	border: 1px solid #e6e7eb;
	border-radius: 10px;
	padding: 0 12px;
	font-size: 15px;
	background: #fff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	margin-bottom: 10px;
  }

  .contact5-field::placeholder {
	color: #9aa1a9;
  }

  .contact5-field:focus {
	border-color: #38bdf8;
	box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
  }

  .contact5-select {
	appearance: none;
	background: #fff right 10px center no-repeat;
  }

  .contact5-textarea {
	height: 96px;
	resize: vertical;
	padding: 10px 12px;
  }

  .contact5-submit {
	width: 100%;
	height: 46px;
	border: 0;
	border-radius: 12px;
	font-weight: 800;
	font-size: 15px;
	background: linear-gradient(180deg, #46c7ff, #10a6e6);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(16, 166, 230, 0.35);
	transition: transform 0.05s ease, filter 0.15s ease;
	margin-top: 6px;
  }

  .contact5-submit:active {
	transform: translateY(1px);
  }

  .contact5-hint {
	margin: 8px 2px 0;
	font-size: 12px;
	color: #6b7280;
  }

  .contact5-privacy {
	  margin-top: 10px;
	  margin-bottom: 10px;
	  font-size: 14px;
	  color: #333;
	  display: flex;
	  align-items: center;
	}

	.contact5-privacy input[type="checkbox"] {
	  margin-right: 6px;
	}

	.contact5-privacy a {
	  color: #007aff;
	  text-decoration: underline;
	}

  /* 퀵 버튼 */
  .contact-float-btn {
	position: fixed;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(180deg, #46c7ff, #10a6e6);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	z-index: 999;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-float-btn:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .contact-float-btn img {
	width: 100%;
	height: auto;
	object-fit: contain;
	pointer-events: none;
  }

  /* 로켓용용가링ㅇ */
  @keyframes rocketLaunch {
	0% {
	  transform: translateX(-50%) translateY(0);
	  opacity: 1;
	}
	60% {
	  transform: translateX(-50%) translateY(-80vh);
	  opacity: 1;
	}
	100% {
	  transform: translateX(-50%) translateY(-100vh);
	  opacity: 0;
	}
  }

  .hero5.show .feature5-img.launch {
	animation: rocketLaunch 1s ease-in forwards !important;
  }

  /* 모바일 최적화 */
  @media (max-width: 900px) {
	.bg,
	.bg2,
	.bg3,
	.bg4,
	.bg5 {
	  height: auto;
	}
	.note {
	  width: auto;
	  max-width: 60vw;
	  height: auto;
	}
	.sticky-wrap,
	.sticky5 {
	  height: var(--hero-h);
	}
	.headline .big {
	  font-size: clamp(24px, 8vw, 34px);
	}
	.headline .small {
	  font-size: clamp(13px, 3.6vw, 16px);
	}
	.feature5-img {
	  max-width: min(220px, 25vw);
	  bottom: 2%;
	}
	.contact5-wrap {
	  padding: 0 4vw;
	  align-items: end;
	  justify-items: center;
	}
	.contact5-card {
	  width: 100%;
	  margin-bottom: max(40vh, 120px);
	  padding: 18px 16px 16px;
	}
	.contact5-title {
	  font-size: 18px;
	}
	.contact5-field {
	  height: 42px;
	  font-size: 14px;
	}
	.contact5-textarea {
	  height: 90px;
	}
	.contact5-submit {
	  height: 44px;
	  font-size: 14px;
	}
	.contact-float-btn {
	  right: 14px;
	  bottom: 14%;
	  top: auto;
	  transform: none;
	  width: 85px;
	  height: 64px;
	}
	.contact-float-btn:hover {
	  transform: none;
	}
  }

  .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
  }

  @supports (-webkit-touch-callout: none) {
    @media (pointer: coarse) {
  	  .contact5-field,
  	  .contact5-textarea,
  	  .contact5-select {
  	    font-size: 16px !important;
  	    line-height: 1.4;
  	    height: 46px;
  	  }
    }
  }

  @supports (height: 100dvh) {
    .contact5-wrap { padding-bottom: calc(env(safe-area-inset-bottom) + var(--bottom-ui, 0px)); }
    .contact-float-btn {
      bottom: calc(14% + var(--bottom-ui, 0px));
    }
}

/* ===== Section 6 ===== */
.hero6 {
  position: relative;
  height: 569px;
  background: #000;
  overflow: hidden;

  /* 🔥 추가 */
  padding-bottom: clamp(160px, 28vh, 260px);
  box-sizing: border-box;
}

/* 배경 */
.picture-wrap6 {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg6 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* 하단 카운팅 영역 */
.yearWrap6 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(40px, 10vh, 120px);
  z-index: 2;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero6.show-metrics .yearWrap6 {
  opacity: 1;
  transform: translateY(0);
}

/* 카드 리스트 */
.year-cards6 {
  display: flex;
  gap: clamp(12px, 3vw, 28px);

  position: relative;
}

/* 카드 */
.year-card {
  position: relative;
  width: min(300px, 26vw);
  border-radius: 16px;
  overflow: hidden;
}

.year-card img.bg {
  width: 100%;
  height: auto;
  display: block;
}

/* 하단 그라데이션 */
.year-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  z-index: 1;
}

/* 텍스트 */
.year-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.year-text.num {
  bottom: 80px;
  font-size: clamp(28px, 4.5vw, 75px);
  font-weight: 900;
}

.year-text.desc {
  bottom: 40px;
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0.9;
  color: #4FD6FF;
}

@media (max-width: 900px) {

  /* ===== hero6 영역 ===== */
  .hero6 {
    height: 100svh;
    padding-bottom: 0;
  }

  /* 카운팅 박스 위치 */
  .yearWrap6 {
    top: clamp(120px, 22vh, 200px);
    bottom: auto;

    opacity: 0;
    transform: translateY(16px);
  }

  .hero6.show-metrics .yearWrap6 {
    opacity: 1;
    transform: translateY(0);
  }

  /* 카드 세로 스택 */
  .year-cards6 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 5vw;
    box-sizing: border-box;
  }

  /* 카드 크기 */
  .year-card {
    width: 100%;
    max-width: 300px;
    height: 150px;
    border-radius: 14px;
  }

  /* 🔥 숫자 텍스트 – 박스 기준 확대 */
  .year-text.num {
    bottom: 44px;
    font-size: clamp(34px, 16.5vw, 65px);
    line-height: 1.05;
    letter-spacing: -0.01em;
  }

  /* 🔥 설명 텍스트 – 숫자에 비례 */
  .year-text.desc {
    bottom: 14px;
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
}



