﻿/* =============================================
   FONTS Pretendard (body)
============================================= */
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
	font-weight: 100;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
	font-weight: 200;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-display: swap;
}
@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
	font-weight: 900;
	font-display: swap;
}

@font-face {
	font-family: 'Aggravo';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroL.woff') format('woff');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'Aggravo';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroM.woff') format('woff');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Aggravo';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
	font-weight: 700;
	font-display: swap;
}

/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.pc_view {
	display: block;
}

.mobile_view {
	display: none !important;
}

:root {
	--blue-primary: #2563eb;
	--blue-dark: #1d4ed8;
	--blue-light: #dbeafe;
	--blue-bg: #eff6ff;
	--text-dark: #0f172a;
	--text-mid: #334155;
	--text-muted: #64748b;
	--white: #ffffff;
	--font-body: 'Pretendard', sans-serif;
	--font-heading: 'Jost', 'Pretendard', sans-serif;
	--inner-width: 1200px;
	--inner-px: 40px;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	word-break: keep-all;
	text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	word-break: keep-all;
}

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

ul,
ol {
	list-style: none;
}

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

em {
	font-style: normal;
	/* color: var(--blue-primary); */
}

.pc_view {
	display: block;
}

.mobile_view {
	display: none;
}

/* =============================================
   LAYOUT
============================================= */
.inner {
	max-width: var(--inner-width);
	margin: 0 auto;
	padding: 0 var(--inner-px);
}

.sec {
	position: relative;
	overflow-x: hidden;
}

/* card-section overrides sec's overflow — only specific sticky sections clip */

/* =============================================
   COMMON COMPONENTS
============================================= */
.sec-label {
	display: inline-flex;
	color: var(--FinalMainColor, #2563eb);
	font-family: 'Pretendard';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 100px;
}

.sec-title {
	color: #252525;
	font-family: 'Pretendard';
	font-size: 46px;
	font-style: normal;
	font-weight: 700;
	line-height: 68px;
	letter-spacing: -0.5px;
	margin-bottom: 40px;
}

/* =============================================
   HEADER
============================================= */
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
	padding: 0;
}

.header .logo img {
	height: 36px;
	width: auto;
}

.btn-download {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	background: var(--blue-primary);
	color: var(--white);
	font-size: 20px;
	font-weight: 500;
	transition:
		background 0.2s,
		transform 0.15s;
	border: none;
	clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%);
}

.btn-download:hover {
	background: var(--blue-dark);
	transform: translateY(-1px);
}

.logo {
	display: inline-flex;
	align-items: center;
	font-size: 22px;
	gap: 22px;
}

/* =============================================
   STORE BUTTONS
============================================= */
.sec-01__btns {
	display: flex;
	gap: 12px;
	/* flex-wrap: wrap; */
	margin-top: 36px;
	justify-content: center;
}
.sec-01__btns .btn-store {
	clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%);
	width: 181px;
	height: 64px;
	color: #fff;
	text-align: center;
	font-family: 'Pretendard';
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 64px;
}

.sec-bottom__inner .btn-store {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	/* padding: 12px 20px; */
	min-width: 250px;
	height: 66px;
	color: #fff;
	text-decoration: none;
	clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 90% 100%, 0% 100%);
	transition:
		transform 0.15s,
		box-shadow 0.15s;
	background: #252524;
	justify-content: center;
}

.btn-store span {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.2px;
}

.btn-store small {
	font-size: 10px;
	font-weight: 400;
	opacity: 0.75;
	letter-spacing: 0.2px;
}

.btn-store:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.btn-appstore {
	background: #000;
	color: #fff;
}

.btn-googleplay {
	background: #000;
	color: #fff;
}

/* =============================================
   SECTION 01 - HERO
============================================= */
.sec-01 {
	min-height: 200vh;
	display: flex;
	align-items: center;
	padding-top: 0;
	position: relative;
	flex-direction: column;
}

.sec-01__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url(./img/back.png) no-repeat center center/cover;
	pointer-events: none;
}

.sec-01__bg_02 {
	position: absolute;
	inset: 0;
	z-index: 9999991;
	background: url(./img/front.png) no-repeat center bottom/100%;
	pointer-events: none;
}

.sec-01__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
}

.sec-01 .inner {
	position: relative;
	/* z-index: 1; */
	display: flex;
	align-items: flex-start;
	gap: 60px;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 9999;
	justify-content: flex-start;
	width: 100%;
}

.sec-01__text {
	flex: 1;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.sec-01__sub {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: var(--blue-primary);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 16px;
	padding: 6px 14px;
	background: rgba(37, 99, 235, 0.1);
	border-radius: 50px;
}

.sec-01__title {
	color: var(--FinalMainColor, #2563eb);
	text-align: center;
	font-family: Jost;
	font-size: 120px;
	font-style: normal;
	font-weight: 700;
	line-height: 100px;
	letter-spacing: -2.6px;
}

.sec-01__desc {
	color: var(--Black, #121212);
	text-align: center;
	font-family: 'Pretendard';
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 100px;
	word-break: keep-all;
}

.top_title {
	color: #121212;
	text-align: center;
	font-family: 'Pretendard';
	font-size: 36px;
	font-style: normal;
	font-weight: 800;
	line-height: 100px;
	letter-spacing: -1.44px;
}

.sec-01__mockup {
	flex: 1;
	max-width: 400px;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: -1;
	width: 100%;
	/* height: 572px; */
}

.sec-01__mockup img {
	width: 100%;
	border-radius: 16px;
	filter: drop-shadow(0 20px 60px rgba(37, 99, 235, 0.15));
	animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

.sec-01.card-section .sec-02__inner {
	position: relative;
	z-index: 99999999999999 !important;
	margin: 100px auto 0 !important;
}

.sec-02__inner .sec-02 {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

/* =============================================
   SECTION 02 - SERVICE INTRO
============================================= */
.sec-02 .inner {
	text-align: center;
}

/* Header block */
.sec-02__header {
	max-width: 1210px;
	margin: 0 auto 56px;
}

.sec-02__title {
	/* margin-bottom: 20px; */
	color: #fff;
	text-align: left;
	font-family: 'Pretendard';
	font-size: 52px;
	font-style: normal;
	font-weight: 800;
	line-height: 68px; /* 208.333% */
	word-break: break-all;
}

.sec-02__title em {
	color: #86ffe7;
	font-family: 'Pretendard';
	font-size: 52px;
	font-style: normal;
	font-weight: 800;
	line-height: 68px;
}

.sec-02__desc {
	color: #fff;
	font-family: 'Pretendard';
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	text-align: left;
}

.sec-02-swiper {
	overflow: hidden;
}

.sec-02__bottom {
	color: #fff;
	font-family: 'Pretendard';
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 68px;
	margin-top: 80px;
	text-align: left;
}

.sec-02_txt {
	width: 50%;
}

.sec-02_cards {
	width: 50%;
}

/* Cards */
.sec-02__list {
	display: flex;
	width: 100%;
	margin: 0 auto;
	grid-auto-flow: row;
	flex-wrap: wrap;
	/* flex-direction: row-reverse; */
	justify-content: flex-end;
	gap: 30px;
}

.sec-02__item {
	flex: 0 0 calc(50% - 20px);
	padding: 40px 26px 36px;
	text-align: center !important;
	width: 280px;
	height: 357px;
	border-radius: 30px;
	background: #fff;
	box-shadow: 8px 4px 11.6px 0 rgba(0, 0, 0, 0.25);
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}

.sec-02__list li {
	width: 50%;
}

.sec-02__list li:nth-child(1) {
	transform: translateY(140px);
}

.sec-02__list li:nth-child(2) {
	transform: translateY(-60px);
}

.sec-02__list li:nth-child(3) {
	transform: translateY(-70px);
}

.sec-02__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
}

.sec-02__icon {
	width: 193px;
	height: 187px;
	aspect-ratio: 161/156;
	margin: 0 auto 23px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.sec-02__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform-origin: center center;
	will-change: transform;
}

/* 3D spin when card is revealed */
.sec-02__item.is-revealed .sec-02__icon img {
	animation: icon-spin3d 0.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1 forwards;
}

@keyframes icon-spin3d {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

.sec-02__item h3 {
	font-size: 22px;
	font-style: normal;
	font-family: 'Aggravo';
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 17px;
}

.sec-02__item p {
	color: #000;
	font-family: 'Pretendard';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: -0.48px;
	word-break: keep-all;
}

/* =============================================
   SECTION FEATURE (03~06)
============================================= */
.sec-feature {
	padding: 0;
	/* min-height: 600px; */
}

.sec-feature__bg {
	position: absolute;
	/* inset: 0; */
	z-index: 0;
	pointer-events: none;
	top: -2%;
	left: 0%;
	/* display: flex; */
}

.sec-02 .sec-feature__bg {
	left: 70%;
	width: 300px;
}

.sec-feature__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sec-feature__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	padding-top: 80px;
	padding-bottom: 80px;
	min-height: 600px;
	max-width: 1260px;
	padding: 0;
}

.sec-feature--reverse .sec-feature__inner {
	flex-direction: row-reverse;
}

.sec-feature__text {
	flex: 1;
	max-width: 500px;
}

.sec-feature__desc {
	color: #202020;
	font-family: 'Pretendard';
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px; /* 150% */
}

.sec-feature__mockup {
	flex: 1;
	max-width: 320px;
	width: auto;
	display: flex;
	justify-content: center;
}

/* =============================================
   SECTION 03
============================================= */

.sec-03 .sec-feature__bg {
	width: 448px;
	height: 427px;
	top: -11%;
	right: 0;
	opacity: 0;
	transform: translate(80px, -60px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0s;
}

.sec-03.is-visible .sec-feature__bg {
	opacity: 1;
	transform: translate(0, 0);
}

/* sec-03 mockup 오른쪽에서 등장 — bg 나온 뒤 시간차 등장 */
.sec-03 .sec-feature__mockup {
	opacity: 0;
	transform: translateX(120px);
	transition:
		opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.9s;
}

.sec-03.is-visible .sec-feature__mockup {
	opacity: 1;
	transform: translateX(0);
}

/* sec-03 텍스트 왼쪽에서 시간차 등장 */
.sec-03 .sec-feature__text {
	opacity: 0;
	transform: translateX(-44px);
	text-align: left;
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.25s;
}

.sec-03.is-visible .sec-feature__text {
	opacity: 1;
	transform: translateX(0);
}

/* =============================================
   SECTION 04
============================================= */
.sec-04 {
	background: #fff;
}

.sec-04 .sec-feature__bg {
	width: 446px;
	right: -7%;
	bottom: 10%;
	opacity: 0;
	transform: translateY(80px);
	transition:
		opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.35s;
}

.sec-04.is-visible .sec-feature__bg {
	opacity: 1;
	transform: translateY(0);
}

.sec-04 {
	position: relative;
}

.sec-04::before {
	content: '';
	display: block;
	position: absolute;
	width: 800px;
	height: 434px;
	border-radius: 0 80px 80px 0;
	background: rgba(220, 235, 247, 0.7);
	top: 50%;
	transform: translateY(-50%) translateX(-110%);
	left: 0;
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0s;
}

.sec-04.is-visible::before {
	transform: translateY(-50%) translateX(0);
}

/* sec-04 mockup — 제일 마지막 등장 */
.sec-04 .sec-feature__mockup {
	opacity: 0;
	transform: translateX(-80px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.85s;
}

.sec-04.is-visible .sec-feature__mockup {
	opacity: 1;
	transform: translateX(0);
}

/* sec-04 텍스트 오른쪽에서 시간차 등장 */
.sec-04 .sec-feature__text {
	opacity: 0;
	transform: translateX(44px);
	text-align: left;
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.4s;
}

.sec-04.is-visible .sec-feature__text {
	opacity: 1;
	transform: translateX(0);
}

/* =============================================
   SECTION 05
============================================= */
.sec-05 {
	background: transparent;
	position: relative;
	z-index: 1;
}

.sec-05::before {
	display: none;
}

/* 05+06 공통 그라데이션 래퍼 */
.sec-0506-wrap {
	position: relative;
	background: #fff;
	isolation: isolate;
	z-index: 50;
}

.sec-0506-wrap::before {
	content: '';
	display: block;
	background: url(https://di-flo.com/wp-content/uploads/2026/04/mid_bg.png) no-repeat center center/cover;
	/* opacity: 0.5; */
	filter: blur(300px);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: -1;
}

.sec-05 .sec-feature__bg {
	top: 50%;
	left: 55%;
	width: 357px;
	opacity: 0;
	transform: translateY(100px);
	transition:
		opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.2s;
}

.sec-05.is-visible .sec-feature__bg {
	opacity: 1;
	transform: translateY(0);
}

/* sec-05 텍스트 왼쪽, 목업 오른쪽에서 시간차 등장 */
.sec-05 .sec-feature__text {
	opacity: 0;
	transform: translateX(-44px);
	text-align: left;
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0s;
}

.sec-05.is-visible .sec-feature__text {
	opacity: 1;
	transform: translateX(0);
}

.sec-05 .sec-feature__mockup {
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.6s;
}

.sec-05.is-visible .sec-feature__mockup {
	opacity: 1;
	transform: translateX(0);
}

/* =============================================
   SEC-05 NEW LAYOUT — 위치 인증 미션
============================================= */
.sec-05 {
	/* background: #2563eb; */
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.sec-05__inner {
	max-width: 1520px;
	margin: 0 auto;
	padding: 50px 180px 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #2563eb;
	border-radius: 100px;
}

/* 상단 2컬럼 */
.sec-05__top {
	display: flex;
	gap: 80px;
	align-items: flex-start;
}

/* 좌: 라벨 + 제목 */
.sec-05__head {
	flex: 0 0 auto;
	width: 44%;
	opacity: 0;
	transform: translateX(-30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}
.sec-05__head.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

.sec-05__lbl {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 100px;
	line-height: 1.4;
}
.sec-05__lbl span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 14px;
	border-radius: 10px;
	background: var(--Blue-Background, #edf7ff);
	color: #2563eb;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	backdrop-filter: blur(4px);
}

.sec-05__title {
	font-family: 'Pretendard', sans-serif;
	font-size: 52px;
	font-style: normal;
	font-weight: 800;
	line-height: 68px;
	color: #fff;
	letter-spacing: -1px;
	word-break: keep-all;
}

/* 우: 설명 + GPS 칩 */
.sec-05__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 120px;
	opacity: 0;
	transform: translateX(30px);
	transition:
		opacity 0.8s ease 0.2s,
		transform 0.8s ease 0.2s;
}
.sec-05__info.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

.sec-05__quote {
	color: #86ffe7;
	font-family: 'Pretendard';
	font-size: 23px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
}

.sec-05__desc {
	color: var(--Blue-Background, #edf7ff);
	font-family: 'Pretendard';
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px; /* 145.455% */
}

.sec-05__gps {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}
.sec-05__gps-label {
	font-family: 'Pretendard', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}
.sec-05__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.sec-05__chips span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 105px;
	padding: 10px;
	height: 98px;
	aspect-ratio: 15 / 14;
	border-radius: 25px;
	border: 1px dashed #edf7ff;
	background: #2563eb;
	color: #edf7ff;
	font-family: 'Pretendard', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: -0.72px;
	text-align: center;
	word-break: keep-all;
}
.sec-05__gps-caption {
	font-family: 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #cde8ff;
	margin: 0;
}

/* 하단 목업 이미지 */
.sec-05__mockup-area {
	width: 100%;
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 1s ease 0.3s,
		transform 1s ease 0.3s;
}
.sec-05__mockup-area.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-05__mockup-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* 반응형 */
@media (max-width: 1024px) {
	.sec-05__inner {
		padding: 60px 24px 0;
		gap: 40px;
		/* max-width: 960px; */
	}
	.sec-05__top {
		flex-direction: column;
		gap: 32px;
		align-items: center;
	}
	.sec-05__head {
		width: 100%;
	}
	.sec-05__title {
		font-size: 36px;
	}
	.sec-05__info {
		padding-top: 0;
	}
}

.sec-06 {
	background: transparent;
	position: relative;
	z-index: 1;
	overflow: visible;
	height: 100vh;
}

/* sec-06의 inner는 우측 오버플로우 허용 */
.sec-06 .sec-feature__inner {
	/* overflow: hidden; */
	/* max-width: 100%; */
	height: 100% !important;
	justify-content: center;
	gap: 140px;
}

/* sec-06 mockup max-width 해제 */
.sec-06 .sec-feature__mockup {
	max-width: none;
}

.sec-06 .sec-feature__bg {
	width: 220px;
	top: 2%;
	opacity: 0;
	transform: translateY(-100px);
	transition:
		opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.2s;
}

.sec-06.is-visible .sec-feature__bg {
	opacity: 1;
	transform: translateY(0);
}

/* sec-06 텍스트 왼쪽, 목업 오른쪽에서 시간차 등장 */
.sec-06 .sec-feature__text {
	opacity: 0;
	transform: translateX(-44px);
	text-align: left;
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0s;
	/* padding-left: 360px; */
	width: 100%;
	max-width: 470px;
	/* flex: 0; */
}

.sec-06.is-visible .sec-feature__text {
	opacity: 1;
	transform: translateX(0);
}

.sec-06 .sec-feature__mockup {
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.6s;
}

.sec-06.is-visible .sec-feature__mockup {
	opacity: 1;
	transform: translateX(0);
}

.sec-06::before {
	content: '';
	display: none;
	position: absolute;
	width: 800px;
	height: 434px;
	border-radius: 0 80px 80px 0;
	background: rgba(220, 235, 247, 0.7);
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 1;
}

/* =============================================
   SECTION 07 — 지역 상점 연계 혜택
============================================= */
.sec-07 {
	background: transparent;
	position: relative;
	z-index: 1;
	overflow: visible !important;
}

.sec-07 .sec-feature__bg {
	right: 0;
	width: 337px;
	left: unset;
}

.sec-07__lbl {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	line-height: 1.4;
	margin-bottom: 16px;
	font-size: 22px;
}

.sec-07__lbl span {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 14px;
	border-radius: 15px;
	background: var(--Blue-Background, #edf7ff);
	color: #2563eb;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.sec-07__title em {
	color: var(--blue-primary);
}

.sec-07__desc2 {
	margin-top: 16px;
}

/* 두 폰 + 플로팅 쿠폰 카드 복합 목업 */
.sec-07__mockup {
	position: relative;
	flex: 1;
	max-width: none !important;
	min-height: 580px;
	overflow: visible;
}

.sec-07__phone {
	/* position: absolute; */
	z-index: 2;
	object-fit: cover;
	width: 275px;
	filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.14));
}

.sec-07__phone--left {
	left: 0;
	top: 30px;
}

.sec-07__phone--right {
	right: 0;
	top: 0;
}

.sec-07__coupon-card {
	position: absolute;
	z-index: 3;
	width: 280px;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.sec-07__coupon-card--top {
	left: -30px;
	bottom: 140px;
}

.sec-07__coupon-card--bottom {
	left: -30px;
	bottom: 30px;
}

/* 등장 애니메이션 */

.sec-07.card-section .sec-feature__inner {
	height: 100% !important;
}

.sec-07 .sec-feature__text {
	opacity: 0;
	transform: translateX(-44px);
	text-align: left;
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0s;
}

.sec-07.is-visible .sec-feature__text {
	opacity: 1;
	transform: translateX(0);
}

.sec-07 .sec-feature__mockup {
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.5s;
}

.sec-07.is-visible .sec-feature__mockup {
	opacity: 1;
	transform: translateX(0);
}

/* =============================================
   SECTION 06 — 스탬프 컬렉션 label & mockup
============================================= */
.sec-06__lbl {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	line-height: 1.4;
	margin-bottom: 16px;
	font-size: 22px;
}

.sec-06__lbl span {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 14px;
	border-radius: 15px;
	background: #f1f5f9;
	color: #2563eb;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.sec-06__desc2 {
	margin-top: 16px;
}

/* 스탬프 컬렉션 복합 목업 영역 */
.sec-06__stamp-mockup {
	position: relative;
	/* flex: 1; */
	/* min-width: 720px; */
	min-height: 600px;
	overflow: visible;
	flex-shrink: 0;
}

.sec-06__main-phone {
	position: absolute;
	left: 210px;
	top: 10px;
	width: 320px;
	z-index: 2;
	filter: drop-shadow(0 20px 60px rgba(37, 99, 235, 0.18));
}

.sec-06__stamp-card {
	position: absolute;
	z-index: 3;
	width: 220px;
	filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.13));
}

/* 좌하단 — 폰 왼쪽에 겹침 */
.sec-06__stamp-card--left {
	left: 2%;
	top: 48%;
}

/* 우중단 — 폰 오른쪽에 나란히 */
.sec-06__stamp-card--right {
	right: -74px;
	top: 48%;
}

/* 우상단 — 오른쪽 끝, 살짝 잘림 */
.sec-06__stamp-card--right-top {
	right: -47%;
	top: 15%;
}

/* =============================================
   SECTION 07 - CHARACTER
============================================= */
.sec-09 {
	padding: 100px 0;
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.sec-09 .inner {
	text-align: center;
}

.sec-09 .sec-title {
	margin-bottom: 56px;
}

.sec-09__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.sec-09__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 32px 20px;
	background: var(--white);
	border-radius: 24px;
	box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
	transition:
		transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: default;
	justify-content: center;
}

@media (hover: hover) {
	.sec-09__list .sec-09__item:hover {
		transform: translateY(-8px) scale(1.04);
		box-shadow: 0 20px 48px rgba(37, 99, 235, 0.18);
	}
}

.sec-09__item img {
	object-fit: contain;
}
.sec-09__item h6 {
	color: var(--Black, #121212);
	text-align: center;
	font-family: 'Pretendard';
	font-size: 28px;
	font-style: normal;
	font-weight: 800;
	line-height: 32px;
	margin-bottom: 10px;
}

.sec-09__item p {
	color: var(--Black, #121212);
	text-align: center;
	font-family: 'Pretendard';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

/* =============================================
   BOTTOM BANNER
============================================= */
.sec-bottom {
	min-height: 400px;
	display: flex;
	align-items: center;
}

.sec-bottom__inner {
	position: relative;
	background: url(./img/bottom.png) no-repeat center center/cover;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	max-height: 819px;
}

.sec-bottom__text {
	max-width: 600px;
}

.sec-bottom__text h2 {
	display: none;
}

.sec-bottom__text p:not(.footer__copy) {
	display: none;
}

.sec-bottom__btns {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	max-width: 1240px;
	margin: 16% auto 0;
}

.sec-bottom .btn-appstore {
	background: #252524;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
}

.sec-bottom .btn-googleplay {
	background: #252524;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
}

.sec-bottom .btn-googleplay:hover {
	background: #1a1a1a;
}

/* =============================================
   FOOTER
============================================= */
.footer {
	padding: 10px 0;
	background: #071d32;
	max-height: 150px;
	height: 100%;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	/* margin-bottom: 10px; */
}

.footer__brand-name {
	font-size: 19px;
	font-weight: 700;
	color: #fff;
}

.footer__address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
	color: #fff;
}

.footer__address p {
	font-size: 13px;
	/* color: rgba(255, 255, 255, 0.55); */
	line-height: 1.6;
}

.footer .inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4px;
}

.footer__logo {
	height: 28px;
	width: auto;
	opacity: 0.8;
}

.footer__copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   RESPONSIVE - TABLET (768px)
============================================= */
@media (max-width: 960px) {
	:root {
		--inner-px: 24px;
	}

	.sec-01 .inner {
		flex-direction: column;
		text-align: center;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.sec-01__text {
		max-width: 100%;
	}

	.sec-01__btns {
		justify-content: center;
	}

	.sec-01__mockup {
		max-width: 100%;
	}

	/* sec-02: 수직 리스트 (슬라이드 제거) */
	.sec-02__list {
		display: flex;
		flex-direction: column;
		gap: 12px;
		max-width: 480px;
		margin: 0 auto;
		padding: 0 var(--inner-px);
		overflow: visible;
		cursor: default;
		user-select: auto;
	}

	.sec-02__item {
		flex: none;
		width: 100%;
		height: auto;
		min-height: unset;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 16px;
		padding: 20px 20px;
		text-align: left;
	}

	.sec-02__icon {
		width: 56px;
		height: 56px;
		min-width: 56px;
		margin-bottom: 0;
	}

	.sec-02__item h3 {
		margin-bottom: 6px;
	}

	/* sec-09: 가로 슬라이더 */
	.sec-09__list {
		display: flex;
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 16px;
		padding: 0 var(--inner-px) 8px;
		margin: 0;
		cursor: grab;
		user-select: none;
		overflow-y: hidden;
		height: 500px;
		align-items: center;
	}
	.sec-09.card-section .inner {
		padding: 0;
	}

	.sec-09__list::-webkit-scrollbar {
		display: none;
	}

	.sec-09__item {
		flex: 0 0 82%;
		scroll-snap-align: center;
		width: auto;
	}

	.sec-09__dots {
		display: flex;
	}

	.sec-feature__inner {
		flex-direction: column !important;
		text-align: center;
		min-height: unset;
		padding-top: 60px;
		padding-bottom: 60px;
		gap: 40px;
	}

	.sec-feature__text {
		max-width: 100%;
		text-align: center;
	}

	.sec-feature__desc {
		margin: 8px auto 0;
	}
	.sec-bottom.card-section {
		height: 610px;
	}
	.sec-bottom__inner {
		justify-content: center;
		text-align: center;
		background: url(./img/bottom_banner_m.png) no-repeat center center / cover;
	}

	.sec-bottom__text {
		max-width: 100%;
	}

	.sec-bottom .sec-01__btns {
		justify-content: center;
	}

	.footer .inner {
		flex-direction: column;
		text-align: center;
	}
	.pc_view {
		display: none;
	}

	.mobile_view {
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/* =============================================
   RESPONSIVE - TABLET / iPAD (769px ~ 1024px)
============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
	:root {
		--inner-px: 32px;
	}

	/* ---- HEADER ---- */
	.header .inner {
		height: 80px;
		padding: 0 20px;
	}

	/* ---- SEC-01 HERO ---- */
	.sec-01__title {
		font-size: 90px;
		line-height: 1;
		letter-spacing: -2px;
	}

	.top_title {
		font-size: 36px;
		line-height: 1.4;
	}

	.sec-01__desc {
		font-size: 20px;
		line-height: 1.6;
	}

	.sec-01__btns .btn-store {
		width: 200px;
		height: 70px;
		font-size: 26px;
		line-height: 70px;
	}

	/* ---- SEC-02 ---- */
	.sec-02__title {
		font-size: 34px;
		line-height: 1.3;
	}

	.sec-02__desc {
		font-size: 17px;
		line-height: 1.7;
	}

	.sec-02__item {
		flex: 0 0 72%;
		padding: 36px 28px 32px;
	}

	.sec-02__item h3 {
		font-size: 24px;
	}

	.sec-02__item p {
		font-size: 14px;
	}

	/* ---- FEATURE SECTIONS ---- */
	.sec-label {
		align-items: flex-start !important;
		font-size: 20px !important;
		flex-direction: column;
		gap: 10px;
		line-height: 160% !important;
		/* text-align: left; */
		/* padding: 100px 30px 0; */
	}

	.sec-title {
		font-size: 32px;
		line-height: 1.4;
		margin-bottom: 20px;
	}

	.sec-feature__desc {
		font-size: 17px;
		line-height: 1.75;
	}

	.sec-feature__mockup {
		max-width: 260px;
		min-height: auto;
	}

	/* feature bg 이미지 — 태블릿 최적화 */
	.sec-03 .sec-feature__bg {
		width: 300px;
		height: auto;
	}

	.sec-04 .sec-feature__bg {
		width: 300px;
	}

	.sec-05 .sec-feature__bg {
		width: 240px;
	}

	.sec-06 .sec-feature__bg {
		width: 220px;
	}

	.sec-04::before,
	.sec-06::before {
		width: 560px;
		height: 320px;
	}

	/* ---- sec-09 ---- */
	.sec-09 .sec-label {
		font-size: 38px;
		line-height: 1.3;
	}

	.sec-09 .sec-title {
		font-size: 18px;
		line-height: 1.6;
		margin-bottom: 32px;
	}

	.sec-09__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		overflow: visible;
		cursor: default;
		user-select: auto;
	}

	.sec-09__list li {
		width: 100%;
		height: auto;
		min-height: 320px;
		padding: 28px 16px 32px;
		border-radius: 36px;
		flex: none;
	}

	.sec-09__list li img {
		width: 160px;
		height: auto;
		aspect-ratio: auto;
		margin: 0 auto;
	}

	.sec-09__item h6 {
		font-size: 22px;
	}

	.sec-09__item p {
		font-size: 14px;
		line-height: 1.6;
	}

	/* ---- BOTTOM BUTTONS ---- */
	.sec-bottom__inner .btn-store {
		min-width: 200px;
		height: 60px;
	}

	.btn-store span {
		font-size: 20px;
	}

	/* ---- FOOTER ---- */

	.footer__brand-name {
		font-size: 20px;
	}

	.footer__address p {
		font-size: 13px;
	}
}
@media (max-width: 768px) {
	:root {
		--inner-px: 20px;
	}

	.header .inner {
		height: 60px;
		padding: 0 20px;
		width: 100%;
	}

	.header .logo img {
		height: 26px;
	}

	/* ---- SEC-01 HERO ---- */
	.sec-01 {
		padding-top: 0;
		min-height: auto;
	}

	/* 화면 1: 텍스트 풀스크린 */
	.sec-01__hero-inner {
		height: 100vh;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-top: 60px !important;
		padding-bottom: 0 !important;
		gap: 0 !important;
	}

	.sec-01 .inner {
		flex-direction: column;
		align-items: center;
		gap: 32px;
		padding-top: 90px;
		padding-bottom: 40px;
	}

	.sec-01__text {
		align-items: center;
		width: 100%;
		max-width: 100%;
	}

	.sec-01__mockup {
		max-width: 300px;
		width: 85%;
		z-index: 1;
		flex: none;
	}

	.sec-01.card-section .inner {
		padding-bottom: 40px;
	}

	.sec-01__title {
		font-size: 72px;
		line-height: 1.05;
		letter-spacing: -2px;
	}

	.top_title {
		font-size: 22px;
		line-height: 1.4;
	}

	.sec-01__desc {
		font-size: 16px;
		line-height: 1.6;
		padding: 0 60px;
	}

	.top_title {
		font-size: 22px;
		letter-spacing: -0.5px;
	}
	.sec-bottom__btns {
		justify-content: center;
		margin: 31% auto 0%;
		padding: 25px 0 10px;
	}
	.sec-bottom__btns {
		margin: 0% 0 80px;
	}
	.sec-01__btns {
		/* flex-direction: column; */
		align-items: center;
		margin-top: 0;
	}

	/* 제작문의 버튼 */
	.sec-01__btns .btn-store {
		width: 160px;
		height: 52px;
		font-size: 16px;
		line-height: 52px;
		margin-top: 12px;
	}

	/* sec-01 내부 sec-02__inner : 배경 이미지 + 마진 */
	.sec-01.card-section .sec-02__inner {
		margin: 32px 0 0 !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	/* sec-02__inner 내부 .sec-02에 모바일 배경 적용 */
	.sec-02__inner .sec-02 {
		background: url(./img/sec02_bg_mo.png) no-repeat center center / cover;
		border-radius: 20px;
		padding: 0 0 28px !important;
	}

	/* front.png 오버레이 모바일 */
	.sec-01__bg_02 {
		background: #2563ec url(./img/main_mo.png) no-repeat center top / 100%;
		z-index: 1;
	}

	/* ---- SEC-02 ---- */
	.sec-02__title {
		font-size: 28px;
		line-height: 1.4;
		word-break: keep-all;
		text-align: center;
	}

	.sec-02__title em {
		display: block;
	}

	.sec-02__desc {
		font-size: 15px;
		line-height: 1.7;
		word-break: keep-all;
		text-align: center;
	}

	.sec-02__item {
		padding: 22px 14px;
		min-height: 140px;
	}

	.sec-02__icon {
		width: 58px;
		height: 72px;
		margin-bottom: 18px;
	}

	.sec-02__item h3 {
		font-size: 22px;
		line-height: 1.4;
		margin-bottom: 0;
	}

	.sec-02__item p {
		font-size: 15px;
		line-height: 1.6;
	}

	/* ---- SEC LABEL & TITLE (feature sections) ---- */
	.sec-label {
		width: 100%;
		font-size: 14px;
		line-height: 1.6;
		flex-direction: column;
		text-align: center;
		margin: 0 auto;
	}

	.sec-title {
		font-size: 26px;
		line-height: 1.4;
		margin-bottom: 16px;
	}

	.sec-feature__desc {
		font-size: 15px;
		line-height: 1.75;
		margin: 12px auto 0;
	}

	.sec-feature__mockup {
		max-width: 220px;
	}

	/* feature 섹션 bg 이미지 — 모바일에서 소형화 */
	.sec-03 .sec-feature__bg {
		width: 100px;
		height: auto;
		top: 1%;
	}

	.sec-04 .sec-feature__bg {
		width: 150px;
		right: -4%;
	}

	.sec-04 .sec-feature__bg img {
		width: 200px;
		height: auto;
	}

	.sec-04::before,
	.sec-06::before {
		top: 100%;
	}

	.sec-05 .sec-feature__bg {
		width: 160px;
		left: auto;
		right: 0;
	}

	.sec-06 .sec-feature__bg {
		width: 98px;
	}

	/* feature 섹션 패딩 */
	.sec-feature__inner {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
		gap: 28px;
	}

	/* ---- sec-09 ---- */
	.sec-02,
	.sec-09 {
		padding: 64px 0;
	}

	.sec-09 .sec-label {
		font-size: 28px;
		line-height: 1.4;
	}

	.sec-09 .sec-label span {
		margin-left: 0;
	}

	.sec-09 .sec-title {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 28px;
	}

	/* sec-09: 768px에선 960px 슬라이더 스타일 그대로 유지 */
	.sec-09__item h6 {
		/* font-size: 18px; */
		line-height: 1.4;
	}

	.sec-09__item p {
		/* font-size: 13px; */
		line-height: 1.55;
	}

	/* ---- BOTTOM STORE BUTTONS ---- */
	.btn-store {
		width: 200px;
		justify-content: center;
	}

	.sec-bottom__inner .btn-store {
		min-width: 160px;
		width: 100%;
		height: 54px;
		gap: 12px;
	}

	.btn-store span {
		font-size: 17px;
	}

	/* ---- FOOTER ---- */

	.footer__brand-name {
		font-size: 17px;
	}

	.footer__address p {
		word-break: keep-all;
		font-size: 12px;
	}

	.footer__copy {
		font-size: 12px;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-02-bottom 텍스트 마키
	   ============================================ */
	.sec-02__bottom-wrap {
		overflow: hidden;
		width: 100%;
	}
	.sec-02__bottom {
		display: flex !important;
		flex-direction: row;
		width: 100%;
		white-space: nowrap;
		margin-top: 32px;
		margin-bottom: 30px;
		/* animation: text-marquee 10s linear infinite; */
		line-height: 1.6;
		font-size: 22px;
		justify-content: center;
	}
	.sec-02__bottom span {
		/* display: inline-block; */
		padding-right: 0;
		color: #fff;
	}

	/* ============================================
	   MOBILE (≤768px) : 히어로 sec-02 카드 가로 슬라이더
	   ============================================ */
	.sec-02__inner .sec-02 {
		flex-direction: column;
		gap: 0;
	}
	.sec-02_txt {
		width: 100%;
		padding: 0 20px;
	}
	.sec-02_cards {
		width: 100%;
		overflow: visible;
	}
	/* sec-02 Swiper 슬라이더 */
	.sec-02-swiper.mobile_view {
		display: block !important;
		width: 100%;
		overflow: hidden;
		padding: 0 20px 40px !important;
	}
	.sec-02-swiper .swiper-wrapper {
		align-items: stretch;
	}
	.sec-02-swiper .swiper-slide.sec-02__item {
		display: flex !important;
		width: 280px !important;
		height: auto !important;
		min-height: 360px;
		flex: none !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		/* padding: 28px 20px !important; */
		/* border-radius: 16px; */
		transform: none !important;
		box-sizing: border-box !important;
	}
	.sec-02-swiper .sec-02__icon {
		width: 200px;
		height: auto;
		margin: 0 auto 14px;
	}
	.sec-02-swiper .sec-02__item h3 {
		margin-bottom: 8px;
	}
	/* Swiper 페이지네이션 */
	.sec-02-swiper__pagination {
		bottom: 8px !important;
	}
	.sec-02-swiper__pagination .swiper-pagination-bullet {
		background: rgba(255, 255, 255, 0.45);
		opacity: 1;
	}
	.sec-02-swiper__pagination .swiper-pagination-bullet-active {
		background: #fff;
		width: 22px;
		border-radius: 4px;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-02 독립 섹션 폰 중앙 크게
	   ============================================ */
	.sec-02.card-section {
		height: auto !important;
	}
	.sec-02__layout {
		flex-direction: column !important;
		align-items: center;
		gap: 36px;
		padding: 0 !important;
	}
	.sec-02__phone {
		width: 100% !important;
		max-width: 340px;
		margin: 0 auto;
		order: -1;
	}
	.sec-02__content {
		padding-top: 0 !important;
		width: 100%;
		align-items: center;
	}
	.sec-02__big-title {
		font-size: 22px !important;
		line-height: 1.45 !important;
		padding-bottom: 28px !important;
		text-align: center;
	}
	.sec-02__cards-grid {
		justify-content: center !important;
		position: relative;
		height: 580px;
	}
	.sec-02__cards-grid div:nth-child(1) {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-06 지그재그 슬라이드
	   ============================================ */
	.sec-06 {
		height: auto !important;
	}
	.sec-06 .sec-feature__inner {
		height: auto !important;
	}
	.sec-06 .sec-06__stamp-mockup {
		display: none !important;
	}

	/* 텍스트 중앙 정렬 */
	.sec-06 .sec-feature__text {
		text-align: center !important;
		transform: none !important;
		opacity: 1 !important;
		max-width: 100%;
	}
	.sec-06.is-visible .sec-feature__text {
		transform: none !important;
	}
	.sec-06 .sec-06__lbl {
		justify-content: center;
	}

	/* 지그재그 슬라이드 컨테이너 */
	.sec-06__mo-slider {
		display: block;
		width: 100%;
		padding: 20px 0 52px;
		overflow: hidden;
		height: 350px;
	}
	.sec-06__mo-slider .swiper-wrapper {
		align-items: flex-start;
	}
	.sec-06__zz-slide {
		width: 200px !important;
		border-radius: 20px;
		height: 240px !important;
		overflow: hidden;
		box-shadow: 0 12px 32px rgb(37 99 235 / 24%);
		transition:
			transform 0.3s ease,
			box-shadow 0.3s ease;
	}
	/* 지그재그: 짝수 슬라이드 아래로 */
	.sec-06__zz-slide:nth-child(even) {
		margin-top: 40px;
	}
	.sec-06__zz-slide:nth-child(odd) {
		margin-top: 0;
	}
	.sec-06__zz-slide img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
	}
	/* 활성 슬라이드 강조 */
	.sec-06__zz-slide.swiper-slide-active {
		/* box-shadow: 0 20px 48px rgba(37, 99, 235, 0.28); */
		transform: scale(1.04);
	}
	/* 페이지네이션 도트 */
	.sec-06-swiper__pagination {
		bottom: 12px !important;
	}
	.sec-06-swiper__pagination .swiper-pagination-bullet {
		background: #2563eb;
		opacity: 0.3;
		width: 8px;
		height: 8px;
	}
	.sec-06-swiper__pagination .swiper-pagination-bullet-active {
		opacity: 1;
		width: 22px;
		border-radius: 4px;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-08 Swiper
	   ============================================ */
	.sec-08 {
		overflow-x: hidden;
	}
	.sec-08__mo-swiper {
		width: calc(100% + 2 * var(--inner-px));
		margin-left: calc(-1 * var(--inner-px));
		margin-right: calc(-1 * var(--inner-px));
		padding-bottom: 44px !important;
	}
	.sec-08__mo-slide {
		width: 80% !important;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		padding-bottom: 8px;
	}
	/* 마커: 점선 + 점 */
	.sec-08__mo-marker {
		display: flex;
		align-items: center;
		width: 100%;
		height: 26px;
		flex-shrink: 0;
	}
	.sec-08__mo-line {
		flex: 1;
		height: 2px;
		background: repeating-linear-gradient(90deg, #93c5fd 0px, #93c5fd 6px, transparent 6px, transparent 13px);
	}
	.sec-08__mo-dot {
		width: 14px;
		height: 14px;
		border-radius: 50%;
		background: #2563eb;
		box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.18);
		flex-shrink: 0;
	}
	/* 첫 슬라이드 좌측 선 없음 */
	.swiper-slide:first-child .sec-08__mo-line:first-child {
		visibility: hidden;
	}
	/* 마지막 슬라이드 우측 선 없음 */
	.swiper-slide:last-child .sec-08__mo-line--right {
		visibility: hidden;
	}
	.sec-08__mo-phone {
		width: 80%;
		max-width: 260px;
	}
	.sec-08__mo-phone img {
		/* width: 100%; */
		filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.12));
	}
	/* 페이지네이션 */
	.sec-08-swiper__pagination {
		bottom: 12px !important;
	}
	.sec-08-swiper__pagination .swiper-pagination-bullet {
		background: #2563eb;
		opacity: 0.3;
		width: 8px;
		height: 8px;
	}
	.sec-08-swiper__pagination .swiper-pagination-bullet-active {
		opacity: 1;
		width: 22px;
		border-radius: 4px;
	}
	.sec-08__step-label {
		font-size: 15px !important;
		padding: 5px 16px !important;
		border-radius: 20px !important;
		white-space: nowrap;
		width: fit-content;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-09 슬라이드
	   ============================================ */
	.sec-09.card-section {
		height: auto !important;
		padding-top: 60px;
	}
	.sec-09__list {
		height: auto !important;
		padding-bottom: 32px;
		padding-top: 20px;
	}
	.sec-09__item {
		flex: 0 0 85% !important;
	}
	/* sec-09 도트 */
	.sec-09__dots {
		justify-content: center;
		gap: 8px;
		margin-top: 4px;
		padding-bottom: 16px;
	}
	.sec-09__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #cbd5e1;
		border: none;
		cursor: pointer;
		padding: 0;
		transition: all 0.25s;
	}
	.sec-09__dot.is-active {
		background: #2563eb;
		width: 22px;
		border-radius: 4px;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-03 지역상권 목업
	   ============================================ */
	.sec-03__mockup-wrap {
		padding: 0 20px;
		overflow: hidden;
	}
	.sec-03__benefit-card {
		display: none !important;
	}

	.mobile_view .sec-03__benefit-card {
		display: block !important;
		background: none;
	}

	.sec-03__mockup-wrap img {
		width: 100%;
		background: transparent;
		box-shadow: none;
		/* display: block; */
		background: transparent;
	}

	.sec-03__connector {
		display: none !important;
	}
	.sec-03__mockup-caption {
		font-size: 14px;
		line-height: 1.6;
		padding: 16px 0 8px;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-05 지오펜스 미션
	   ============================================ */
	.sec-05__inner {
		border-radius: 28px !important;
		padding: 36px 20px 0 !important;
		gap: 24px !important;
	}
	.sec-05__lbl {
		margin-bottom: 20px !important;
		font-size: 15px !important;
	}
	.sec-05__title {
		font-size: 26px !important;
		line-height: 1.4 !important;
		text-align: center;
	}
	.sec-05__quote {
		font-size: 15px !important;
		line-height: 1.5 !important;
		text-align: center;
	}
	.sec-05__desc {
		font-size: 14px !important;
		line-height: 1.65 !important;
		text-align: center;
	}
	.sec-05__gps-label {
		font-size: 16px !important;
	}
	.sec-05__chips {
		gap: 6px !important;
		justify-content: center;
	}
	.sec-05__chips span {
		width: 48% !important;
		height: 44px !important;
		font-size: 13px !important;
		border-radius: 16px !important;
		padding: 8px !important;
		line-height: 1.3 !important;
	}
	.sec-05__chips span:nth-child(5) {
		width: 100% !important;
	}

	.sec-05__gps-caption {
		font-size: 13px !important;
		text-align: center;
	}
	.sec-05__info {
		padding-top: 0 !important;
		justify-content: center;
	}

	/* ============================================
	   MOBILE (≤768px) : sec-07 지역 상점 혜택
	   ============================================ */
	.sec-07__mockup {
		min-height: auto !important;
		display: flex !important;
		flex-direction: row !important;
		gap: 12px !important;
		justify-content: center !important;
		align-items: flex-start !important;
		padding: 16px 0 0 !important;
		overflow: visible !important;
	}
	.sec-07__phone {
		width: calc(50% - 6px) !important;
		max-width: 160px !important;
		position: static !important;
	}
	.sec-07__coupon-card {
		/* display: none !important; */
		width: 180px;
		left: -3%;
	}
	.sec-07__coupon-card--top {
		bottom: 100px;
	}
}

/* =============================================
   HERO ENTRANCE ANIMATIONS
============================================= */
.hero-item {
	opacity: 0;
	transform: translateY(28px);
	animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(var(--i, 0) * 0.13s + 0.15s);
}

@keyframes heroFadeUp {
	to {
		opacity: 1;
		transform: none;
	}
}

/* =============================================
   MARQUEE ANIMATIONS & BASE STYLES
============================================= */
@keyframes text-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* 모바일 지그재그 슬라이드 — 데스크탑에서 숨김 */
.sec-06__mo-slider {
	display: none;
}

/* sec-08 모바일 Swiper — 데스크탑에서 숨김 (mobile_view로 제어) */

/* sec-02-bottom 래퍼 — 데스크탑에서는 오버플로우 허용 */
.sec-02__bottom-wrap {
	overflow: visible;
}

/* =============================================
   SCROLL REVEAL
============================================= */
[data-reveal] {
	opacity: 0;
	transition:
		opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal]:not([data-dir]) {
	transform: translateY(36px);
}

[data-reveal][data-dir='left'] {
	transform: translateX(-44px);
	text-align: left;
}

[data-reveal][data-dir='right'] {
	transform: translateX(44px);
}

[data-reveal].is-revealed {
	opacity: 1;
	transform: none;
	text-align: left;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	[data-reveal],
	.hero-item {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
}

/* =============================================
   HEADER SCROLL STATE
============================================= */
.header.is-scrolled {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

/* =============================================
   HAMBURGER BUTTON
============================================= */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 4px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 110;
	border-radius: 8px;
	transition: background 0.2s;
}

.hamburger:hover {
	background: rgba(37, 99, 235, 0.06);
}

.hamburger span {
	display: block;
	height: 2px;
	background: var(--text-dark);
	border-radius: 2px;
	transition:
		transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.25s ease;
	transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE NAV OVERLAY
============================================= */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
	opacity: 1;
	pointer-events: all;
}

.mobile-nav__logo {
	position: absolute;
	top: 20px;
	left: 24px;
	height: 32px;
	width: auto;
}

.mobile-nav__cta {
	display: inline-flex;
	align-items: center;
	padding: 16px 52px;
	background: var(--blue-primary);
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	border-radius: 50px;
	transition:
		background 0.2s,
		transform 0.15s;
}

.mobile-nav__cta:hover {
	background: var(--blue-dark);
	transform: translateY(-2px);
}

body.nav-open {
	overflow: hidden;
}

/* =============================================
   HERO GRADIENT BLOBS (paint-mixing)
============================================= */
.hero-blobs {
	position: absolute;
	inset: 0;
	z-index: -99999991;
	overflow: hidden;
	pointer-events: none;
	filter: blur(80px);
	will-change: filter;
}

.hero-blob {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
	will-change: transform;
	z-index: -99999999;
}

.hero-blob--1 {
	width: 720px;
	height: 720px;
	top: -20%;
	left: -12%;
	background: radial-gradient(circle, #93c5fd 0%, #3b82f6 55%, transparent 100%);
	animation: paint-drift-a 14s ease-in-out infinite alternate;
}

.hero-blob--2 {
	width: 600px;
	height: 600px;
	top: 15%;
	right: -8%;
	background: radial-gradient(circle, #a5b4fc 0%, #6366f1 55%, transparent 100%);
	animation: paint-drift-b 11s ease-in-out infinite alternate;
}

.hero-blob--3 {
	width: 540px;
	height: 540px;
	bottom: -12%;
	left: 18%;
	background: radial-gradient(circle, #7dd3fc 0%, #0ea5e9 55%, transparent 100%);
	animation: paint-drift-c 18s ease-in-out infinite alternate;
}

.hero-blob--4 {
	width: 460px;
	height: 460px;
	top: 8%;
	left: 38%;
	background: radial-gradient(circle, #c7d2fe 0%, #818cf8 55%, transparent 100%);
	animation: paint-drift-d 9s ease-in-out infinite alternate;
}

.hero-blob--5 {
	width: 420px;
	height: 420px;
	bottom: 8%;
	right: 8%;
	background: radial-gradient(circle, #bfdbfe 0%, #60a5fa 55%, transparent 100%);
	animation: paint-drift-a 16s ease-in-out 3s infinite alternate;
}

@keyframes paint-drift-a {
	0% {
		transform: translate(0px, 0px) scale(1);
	}
	25% {
		transform: translate(180px, -160px) scale(1.3);
	}
	60% {
		transform: translate(-140px, 120px) scale(0.78);
	}
	100% {
		transform: translate(100px, -80px) scale(1.18);
	}
}

@keyframes paint-drift-b {
	0% {
		transform: translate(0px, 0px) scale(1);
	}
	40% {
		transform: translate(-220px, 150px) scale(1.35);
	}
	100% {
		transform: translate(130px, -130px) scale(0.75);
	}
}

@keyframes paint-drift-c {
	0% {
		transform: translate(0px, 0px) scale(1);
	}
	33% {
		transform: translate(200px, 170px) scale(1.28);
	}
	66% {
		transform: translate(-160px, -190px) scale(0.72);
	}
	100% {
		transform: translate(80px, 110px) scale(1.15);
	}
}

@keyframes paint-drift-d {
	0% {
		transform: translate(0px, 0px) scale(1);
	}
	50% {
		transform: translate(-200px, -170px) scale(1.4);
	}
	100% {
		transform: translate(150px, 180px) scale(0.7);
	}
}

/* =============================================
   sec-09 SLIDER DOTS
============================================= */
.sec-09__dots {
	display: none;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.sec-09__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(37, 99, 235, 0.2);
	cursor: pointer;
	padding: 0;
	transition:
		background 0.25s,
		transform 0.25s;
}

.sec-09__dot.is-active {
	background: var(--blue-primary);
	transform: scale(1.3);
}

/* =============================================
   SEC-05 MOBILE SLIDER
============================================= */
.sec-05__slider-wrap {
	display: flex;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	scrollbar-width: none;
	width: 100%;
}
.sec-05__slider-wrap::-webkit-scrollbar {
	display: none;
}
.sec-05_slider {
	margin: 0 auto;
	flex: 0 0 100%;
	scroll-snap-align: start;
}
.sec-05_slider .slider_item {
	width: 165px;
	margin: 0 auto;
}
.sec-05__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	padding-bottom: 8px;
}
.sec-05__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.25s;
}
.sec-05__dot.is-active {
	background: #ffffff;
	width: 22px;
	border-radius: 4px;
}

/* =============================================
   MOCKUP HOVER LIFT
============================================= */
.sec-feature__mockup img {
	transition:
		transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.45s ease;
	/* filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.2)); */
}

.sec-feature__mockup:hover img {
	transform: translateY(-8px) scale(1.02);
}

/* =============================================
   RESPONSIVE — HAMBURGER VISIBILITY
============================================= */
@media (max-width: 768px) {
	.btn-download {
		display: inline-flex;
		font-size: 14px;
		padding: 8px 16px;
	}

	.hamburger {
		display: none;
	}

	/* 모바일: 헤더 고정 + 배경 */
	.header {
		/* position: fixed; */
		/* background: rgba(255, 255, 255, 0.96); */
		/* backdrop-filter: blur(12px); */
		-webkit-backdrop-filter: blur(12px);
		/* box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08); */
		width: 100%;
	}
}

/* =============================================
   CARD STACK SCROLL
============================================= */

/* Wrapper resets -no fixed positioning */
#fp-wrap,
#fp-container {
	position: relative;
}

/* Each card-section stacks and slides up */
.card-section {
	position: sticky;
	top: 0;
	/* height: 100vh; */
	will-change: transform;
}

/* =============================================
   SECTION 08 — 교육 현장 플로우
============================================= */
.sec-08 {
	background: #ffffff url(./img/grid.png) repeat;
	padding: 100px 0 200px;
}

.sec-08__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 70px;
	padding: 0;
}

/* 상단 헤드 — 중앙 정렬 */
.sec-08__head {
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-08__head.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.sec-08__title {
	font-family: 'Pretendard', sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.25;
	letter-spacing: -1px;
	margin-bottom: 24px;
}

.sec-08__title em {
	color: var(--blue-primary);
}

.sec-08__desc {
	font-family: 'Pretendard', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--text-muted);
	line-height: 1.8;
	text-align: center;
}

/* 하단 플로우 — 메인 폰 + 3스텝 */
.sec-08__flow {
	display: flex;
	align-items: flex-end;
	gap: 70px;
	width: 100%;
	justify-content: space-between;
	overflow: visible;
}

/* 메인 폰 (큰 폰) */
.sec-08__main-phone {
	flex-shrink: 0;
	width: 324px;
	opacity: 0;
	transform: translateX(-40px);
	filter: drop-shadow(0px 20px 40px rgba(23, 59, 88, 0.25));
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: visible;
}

.sec-08__main-phone.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

.sec-08__main-phone img {
	width: 100%;
}

/* 3스텝 영역 */
.sec-08__steps {
	position: relative;
	display: flex;
	align-items: flex-end;
	gap: 16px;
	flex: 1;
	max-width: 720px;
	filter: drop-shadow(0px 10px 20px rgba(23, 59, 88, 0.25));
}

/* 점선 연결선 — 스텝 라벨 위에 수평으로 */
.sec-08__connector {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	padding: 0 calc((100% - 32px) / 6 - 6.5px);
	pointer-events: none;
}

.sec-08__dot {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #2563eb;
	flex-shrink: 0;
	position: relative;
}

.sec-08__dot::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid #2563eb;
	opacity: 0;
	animation: marker-ring 2s ease-in-out infinite;
}

.sec-08__line {
	flex: 1;
	height: 2px;
	background: repeating-linear-gradient(to right, var(--blue-primary) 0px, var(--blue-primary) 6px, transparent 6px, transparent 13px);
}

/* 스텝 개별 */
.sec-08__step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding-top: 28px;
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-08__step.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.sec-08__step-label {
	font-family: 'Pretendard', sans-serif;
	color: var(--FinalMainColor, #2563eb);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px; /* 177.778% */
	letter-spacing: -0.54px;
	border-radius: 15px;
	background: var(--Blue-Background, #edf7ff);
	padding: 6px 18px;
	white-space: nowrap;
	text-align: center;
}

.sec-08__step-phone img {
	width: 100%;
	filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.12));
}

/* =============================================
   SECTION 08 — z-index & card-section
============================================= */

/* Z-index stacking */
.sec-01.card-section {
	z-index: 10;
}
.sec-02.card-section {
	z-index: 20;
}
.sec-04.card-section {
	z-index: 40;
}
.sec-05.card-section {
	z-index: 50;
}
.sec-06.card-section {
	z-index: 60;
}
.sec-07.card-section {
	z-index: 65;
	height: 100vh;
}
.sec-08.card-section {
	z-index: 67;
}
.sec-09.card-section {
	z-index: 70;
}
.sec-bottom.card-section {
	z-index: 80;
}

/* Full-page scroll sections — no sticky stacking */
.sec-01.card-section,
.sec-02.card-section,
.sec-03.card-section,
.sec-04.card-section,
.sec-05.card-section,
.sec-06.card-section,
.sec-07.card-section,
.sec-08.card-section,
.sec-09.card-section,
.sec-bottom.card-section {
	position: relative;
	top: auto;
	overflow: hidden;
}

/* entrance animation removed — translateY exposes sec-01 behind */

/* =============================================
   SEC-01 — full-screen hero adjustments
============================================= */
.sec-01.card-section {
	border-radius: 0;
	box-shadow: none;
	height: 200vh;
}

.sec-01.card-section .inner {
	padding-top: 0;
	padding-bottom: 236px;
	margin: 200px auto 0;
	height: 100%;
	padding: 0;
}

/* =============================================
   SEC-02 — center vertically below fixed header
============================================= */
.sec-02.card-section {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-bottom: 0;
	box-sizing: border-box;
	height: 350vh;
	overflow: hidden;
}
.sec-02.card-section::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	/* top: 81%; */
	/* background-position: center; */
	z-index: -1;
	background: url(./img/gradient.png);
}

.sec-02.card-section .inner {
	width: 100%;
}

.sec-02.card-section .sec-title {
	margin-bottom: 40px;
}

/* =============================================
   SEC-02 NEW LAYOUT — phone + content side by side
============================================= */
.sec-02__layout {
	display: flex;
	gap: 160px;
	max-width: 1260px;
	margin: 0 auto;
	padding: 60px 0;
	/* min-height: 200vh; */
	box-sizing: border-box;
}

/* Left: phone mockup */
.sec-02__phone {
	flex: 0 0 auto;
	width: 320px;
	display: flex;
	gap: 60px;
	align-items: flex-start;
	justify-content: center;
	opacity: 0;
	transform: translateX(-40px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
	flex-direction: column;
}
.sec-02__phone.is-revealed {
	opacity: 1;
	transform: translateX(0);
}
.sec-02__phone img {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(0, 80, 200, 0.15));
}

/* Right: content */
.sec-02__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: left;
	padding: 170px 0 0;
	align-items: flex-start;
	position: relative;
}

/* Label */
.sec-02__lbl {
	font-size: 24px;
	font-weight: 700;
	line-height: 160%;
	color: #2563eb;
	display: flex;
	align-items: center;
	align-self: flex-start;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.sec-02__lbl.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-02__lbl span {
	/* margin-left: 12px; */
	width: 180px;
	height: 34px;
	display: flex;
	align-items: center;
	color: #94a3b8;
	color: var(--FinalMainColor, #2563eb);
	font-family: 'Pretendard';
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 100px;
	border-radius: 10px;
	background: #edf7ff;
	justify-content: center;
}

/* Big title */
.sec-02__big-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 52px;
	font-weight: 800;
	line-height: 68px;
	color: #121212;
	letter-spacing: -0.5px;
	padding-bottom: 80px;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s ease 0.1s,
		transform 0.7s ease 0.1s;
}
.sec-02__big-title.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-02__big-title em {
	color: #2563eb;
	font-style: normal;
}

/* 2x2 Cards grid */
.sec-02__cards-grid {
	display: flex;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: 100%;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.sec-02__cards-grid div {
	max-width: 300px;
	width: 100%;
}
.sec-02__cards-grid div:nth-child(1) {
	padding-top: 54px;
	max-width: 300px;
	/* float: left; */
	width: 100%;
	/* display: inline-block; */
	margin-left: 100px;
}

.sec-02__card-img {
	border-radius: 16px;
	overflow: hidden;
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.sec-02__card-img.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-02__card-img:nth-child(even) {
	margin-top: 0;
}
.sec-02__card-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Gradient background deco */
.sec-02__gradient-bg {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 420px;
	height: auto;
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
	user-select: none;
}

/* Timeline divider: marker + dotted line */
.sec-02__timeline {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	/* margin: 4px 0; */
	height: 170px;
	width: 80%;
	position: absolute;
	/* float: right; */
	left: -8%;
	top: 40%;
	justify-content: flex-start;
}
.sec-02__timeline::after {
	position: absolute;
	content: '';
	flex: 1;
	border-left: 2px dashed #93c5fd;
	/* width: 50px; */
	display: flex;
	height: 160px;
	left: 50%;
	transform: translateX(-50%);
}

/* Pulsing blue marker */
.sec-02__marker {
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #2563eb;
	flex-shrink: 0;
	position: absolute;
	left: 50%;
	top: -20%;
	transform: translateX(-50%);
	/* position: relative; */
	/* animation: marker-pulse 2s ease-in-out infinite; */
}
.sec-02__marker::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid #2563eb;
	/* left: 50%; */
	opacity: 0;
	/* z-index: 9; */
	animation: marker-ring 2s ease-in-out infinite;
}

@keyframes marker-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.35);
	}
}
@keyframes marker-ring {
	0% {
		transform: scale(0.7);
		opacity: 0.7;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

/* Rec row: 좌측 side timeline + 우측 텍스트 */
.sec-02__rec-row {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 52%;
	height: fit-content;
	left: 100px;
	top: 74%;
	opacity: 0;
	position: absolute;
	transform: translateY(20px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.sec-02__rec-row.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-02__side-timeline {
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	padding-top: 3px;
	position: absolute;
	left: -71%;
	top: 100px;
	justify-content: center;
}
.sec-02__side-timeline::after {
	content: '';
	position: absolute;
	top: 24px; /* marker(13px) + padding(3px) + gap(8px) */
	top: 50%;
	left: 245%;
	/* transform: translateY(-50%); */
	width: 0;
	border-top: 2px dashed #93c5fd;
	width: 200px;
	/* height: 5px; */
}
.sec-02__marker--inline {
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	transform: none !important;
}

/* Recommendation text */
.sec-02__recommend {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	width: 100%;
	padding: 160px 100px;
	display: flex;
	flex-direction: column;
}
.sec-02__recommend.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-02__rec-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #2563eb;
	margin-bottom: 10px;
}
.sec-02__rec-desc {
	font-family: 'Pretendard', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #4b5563;
	line-height: 1.7;
}
.sec-02__rec-desc--mt {
	margin-top: 12px;
}

.sec-02__rec-row .sec-02__rec-desc {
	/* height: 160px; */
	position: absolute;
	top: 100px;
}

/* =============================================
   SECTIONS 03-6 feature: fill 100vh
============================================= */
.sec-feature.card-section .sec-feature__inner {
	min-height: unset;
	height: auto;
	padding-top: 0;
	padding-bottom: 0;
	/* background: transparent; */
}

/* =============================================
   sec-09 — center vertically below fixed header
============================================= */
.sec-09.card-section {
	overflow: visible;
	overflow-x: unset;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 68px;
	box-sizing: border-box;
	text-align: center;
	height: 100vh;
	position: relative;
}

.sec-09 .sec-feature__bg {
	max-width: 1580px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	top: -10%;
	justify-content: space-between;
	width: 100%;
}

.sec-09 .sec-feature__bg img {
	display: block;
	object-fit: cover;
	width: 20%;
}

.sec-09 .sec-label span {
	color: var(--blue-primary);
	margin-left: 10px;
}

.sec-09 .sec-label {
	color: #252525;
	text-align: center;
	font-family: 'Pretendard';
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: 72px; /* 144% */
	letter-spacing: -0.5px;
}
.sec-09 .sec-title {
	color: #202020;
	text-align: center;
	font-family: 'Pretendard';
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
	word-break: keep-all;
}

.sec-09.card-section .inner {
	width: 100%;
	max-width: 1340px;
}

.sec-09.card-section .sec-title {
	margin-bottom: 40px;
}

.sec-09__list li {
	width: 289px;
	height: 390px;
	border-radius: 43px;
	border: 1px solid #fff;
	box-shadow: 0 8px 27.5px 0 rgba(198, 211, 232, 0.6);
	backdrop-filter: blur(35px);
}
.sec-09__list li img {
	width: 219px;
	height: 167px;
	aspect-ratio: 80/61;
}

.sec-09__list li:nth-child(1) {
	background: linear-gradient(179deg, #839fff -6.74%, #c4e3ff 51.84%, #b4cbff 96.51%);
}

.sec-09__list li:nth-child(2) {
	background: linear-gradient(0deg, #aee1e1 -2.92%, #d2f4fe 51.43%, #8ccff0 95.13%);
}

.sec-09__list li:nth-child(3) {
	background: linear-gradient(180deg, #c7b8ea 0%, #c9dcff 61.81%, #92a3ff 105.47%);
}

.sec-09__list li:nth-child(4) {
	background: linear-gradient(180deg, #c2f9ff 0%, #e8ffe8 54.58%, #a0efe2 103.21%);
}

/* =============================================
   SEC-BOTTOM flex column (CTA + footer)
============================================= */
.sec-bottom.card-section {
	display: flex;
	flex-direction: column;
	align-items: unset;
	height: 100vh;
	justify-content: space-between;
}

.sec-bottom.card-section .sec-bottom__inner {
	flex: 1;
	display: flex;
	align-items: center;
}

/* =============================================
   FOOTER INSIDE BOTTOM SECTION
============================================= */
.footer--inset {
	position: relative;
	z-index: 2;
	/* background: rgba(0, 0, 0, 0.3); */
	padding: 20px 0;
}

.footer--inset .footer__copy {
	color: rgba(255, 255, 255, 0.4);
}
/* =============================================
 TABLET— DISABLE CARD STACK (≤1400px)
============================================= */
@media (max-width: 1400px) {
	.sec-01.card-section {
		height: 170vh;
		min-height: auto;
	}

	.sec-02__inner .sec-02 {
		align-items: center;
		border-radius: 0;
	}

	.sec-02__title,
	.sec-02__title em {
		font-size: 40px;
		line-height: 52px;
	}

	.sec-02__desc {
		font-size: 18px;
		line-height: 160%;
	}

	.sec-02__bottom {
		font-size: 24px;
	}

	.sec-02__list {
		gap: 20px;
	}

	.sec-02__item {
		flex: 0 0 calc(50% - 16px);
		width: 280px;
		height: 320px;
	}

	.sec-02__list li {
		width: 50%;
	}

	.sec-02__list li:nth-child(1) {
		transform: translateY(140px);
	}

	.sec-02__list li:nth-child(2) {
		transform: translateY(-30px);
	}

	.sec-02__list li:nth-child(3) {
		transform: translateY(-35px);
	}

	.sec-02__icon {
		width: 150px;
		height: auto;
		margin: 0 auto 16px;
	}

	.sec-02__item h3 {
		font-size: 18px;
		line-height: 160%;
		margin-bottom: 12px;
	}
}
/* =============================================
   MOBILE — DISABLE CARD STACK (≤960px)
============================================= */
@media (max-width: 1024px) {
	section {
		overflow: hidden;
	}
	.card-section {
		position: relative;
		height: auto;
		border-radius: 0 !important;
		box-shadow: none !important;
	}

	.sec-01.card-section {
		height: 100vh;
		gap: 160px;
		justify-content: flex-end;
	}

	.sec-01.card-section .inner {
		padding-top: 80px;
		padding-bottom: 320px;
		max-width: 100%;
		padding: 20px 30px 0;
		margin: 100px auto 0;
		height: auto;
	}

	.sec-01.card-section .sec-02__inner {
		padding: 0 30px;
		margin: 0 auto !important;
	}
	.sec-02__list li {
		height: 250px;
		padding: 20px 8px 25px;
	}

	.sec-02__icon {
		width: 100px;
	}

	.sec-02.card-section {
		display: block;
		padding: 60px 0;
		height: auto;
		/* height: 200vh; */
	}

	.sec-02__layout {
		/* flex-direction: column; */
		gap: 80px;
		padding: 60px 24px;
		min-height: unset;
		max-width: 960px;
	}

	.sec-02__phone {
		width: 280px;
		margin: 0 auto;
	}

	.sec-02__big-title {
		font-size: 28px;
	}

	.sec-02__cards-grid {
		max-width: 100%;
	}

	.sec-09.card-section {
		display: block;
		padding: 72px 0;
		height: 80vh;
	}

	.sec-02__header {
		padding: 0 20px;
	}

	.sec-02.card-section .inner {
		padding: 0;
		top: 54%;
		padding: 0 30px;
	}

	.sec-02__cards-grid {
		gap: 10px;
	}

	.sec-02__cards-grid div {
		max-width: 220px;
		width: 100%;
	}
	.sec-02__cards-grid div:nth-child(1) {
		padding-top: 54px;
		max-width: 200px;
		/* float: left; */
		width: 100%;
		/* display: inline-block; */
		margin-left: 100px;
	}
	.sec-02__timeline {
		top: 54%;
	}
	.sec-02__side-timeline {
		left: -93%;
	}

	.sec-feature.card-section .sec-feature__inner {
		height: auto;
		max-width: 900px;
		gap: 30px;
	}

	.sec-feature__mockup img {
		filter: drop-shadow(0 37px 10px rgba(0, 0, 0, 0.2));
	}

	.sec-06 .sec-feature__mockup {
		min-height: 400px;
	}

	.sec-09 .sec-label {
		flex-direction: column;
		/* flex-direction: row; */
		font-size: 32px;
		line-height: 1.4;
		font-size: 40px !important;
	}

	.sec-09 .sec-title {
		font-size: 18px;
		line-height: 1.6;
		padding: 0 20px;
	}

	.sec-09 .sec-label span {
		margin-left: 0;
	}

	.sec-09__list li {
		width: 100%;
		height: 390px;
		border-radius: 43px;
		border: 1px solid #fff;
		box-shadow: 0 8px 27.5px 0 rgba(198, 211, 232, 0.6);
		backdrop-filter: blur(35px);
	}

	.sec-09__list li img {
		width: 180px;
		height: auto;
		aspect-ratio: auto;
	}

	.sec-09__item h6 {
		margin-bottom: 0;
	}

	.sec-09__item p {
		line-height: 1.6;
	}
}

/* =============================================
   SEC-03 LAYOUT — 지역 상점 연계 혜택
============================================= */
.sec-03__layout {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 60px auto 0;
	padding: 60px 0 0;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}

.sec-03__lbl {
	font-size: 22px;
	font-weight: 700;
	color: #121212;
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
	flex-direction: row;
}
.sec-03__lbl.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-03__lbl span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 16px;
	border-radius: 10px;
	background: #edf7ff;
	color: #2563eb;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.sec-03__top {
	display: flex;
	gap: 80px;
	align-items: flex-start;
}

.sec-03__title-col {
	flex: 0 0 auto;
	width: 45%;
	opacity: 0;
	transform: translateX(-30px);
	transition:
		opacity 0.7s ease 0.1s,
		transform 0.7s ease 0.1s;
}
.sec-03__title-col.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

.sec-03__big-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.3;
	color: #121212;
	letter-spacing: -0.5px;
}
.sec-03__big-title em {
	color: #2563eb;
	font-style: normal;
}

.sec-03__desc-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 8px;
	opacity: 0;
	transform: translateX(30px);
	transition:
		opacity 0.7s ease 0.2s,
		transform 0.7s ease 0.2s;
}
.sec-03__desc-col.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

.sec-03__desc {
	font-family: 'Pretendard', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #4b5563;
	line-height: 1.8;
	word-break: keep-all;
}
.sec-03__desc--bold {
	font-weight: 600;
	color: #121212;
}

.sec-03__mockup-wrap {
	position: absolute;
	width: 100%;
	display: flex;
	top: 59%;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.9s ease 0.2s,
		transform 0.9s ease 0.2s;
	overflow: hidden;
	z-index: -1;
}
.sec-03__mockup-wrap.is-revealed {
	opacity: 1;
	transform: translateY(0);
	height: auto;
}
.sec-03__mockup-wrap > img {
	width: 83%;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 4px 6.4px #bdcee3);
}
.sec-03__mockup-caption {
	color: #3c79ff;
	text-align: center;
	font-family: 'Pretendard Variable';
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
	line-height: 1.7;
	padding: 24px 0 40px;
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.6s ease 0.4s,
		transform 0.6s ease 0.4s;
	position: absolute;
	top: 77%;
	right: 37%;
	z-index: 99999;
}
.sec-03__mockup-caption.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Decorative blobs — inside mockup-wrap */
.sec-03__blob {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}
.sec-03__blob--left {
	width: 580px;
	height: 580px;
	background: #2563eb;
	left: -17%;
	bottom: 13%;
	z-index: 99999999;
}
.sec-03__blob--right {
	width: 480px;
	height: 480px;
	background: #2563eb;
	right: -7%;
	top: 8%;
	z-index: 999;
}

.sec-03__benefit-card::before {
	content: '';
	position: absolute;
	top: 20%;
	right: 160%; /* 카드 오른쪽 */
	width: 0;
	height: 80px;
	border-left: 2px dashed #93c5fd;
	pointer-events: none;
}
/* 수평 점선: 수직선 꼭대기에서 오른쪽으로 꺾임 */
.sec-03__benefit-card::after {
	content: '';
	position: absolute;
	top: 20%;
	right: 103%; /* 오른쪽 바깥으로 뻗는 길이 */
	width: 150px;
	height: 0;
	border-top: 2px dashed #93c5fd;
	pointer-events: none;
}

/* 마커 dot: 수평선 오른쪽 끝 */
.sec-03__connector {
	position: absolute;
	top: 18%; /* 수평선 top - 마커 반지름 */
	right: 93%; /* ::after 오른쪽 끝 */
	width: 13px;
	height: 13px;
	z-index: 15;
	pointer-events: none;
}
.sec-03__connector-marker {
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #2563eb;
	position: relative;
}
.sec-03__connector-marker::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid #2563eb;
	opacity: 0;
	animation: marker-ring 2s ease-in-out infinite;
}

/* 제품 혜택 카드 */
.sec-03__benefit-card {
	position: absolute;
	bottom: 200px;
	right: 20%;
	z-index: 10;
	width: 260px;
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s ease 0.5s,
		transform 0.7s ease 0.5s;
}
.sec-03__benefit-card.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.sec-03__benefit-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #121212;
	margin: 0;
}
.sec-03__benefit-sub {
	font-family: 'Pretendard', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}
.sec-03__benefit-label {
	font-family: 'Pretendard', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin: 4px 0 0;
}
.sec-03__benefit-tag {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.sec-03__benefit-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 26px;
	padding: 0 10px;
	border-radius: 20px;
	background: #dbeafe;
	color: #2563eb;
	font-family: 'Pretendard', sans-serif;
	font-size: 12px;
	font-weight: 600;
	align-self: flex-start;
}
.sec-03__benefit-badge em {
	font-style: normal;
	background: #2563eb;
	color: #fff;
	border-radius: 10px;
	padding: 0 6px;
	font-size: 11px;
}
.sec-03__benefit-hint {
	font-family: 'Pretendard', sans-serif;
	font-size: 11px;
	color: #9ca3af;
	margin: 0;
	line-height: 1.5;
}
.sec-03__benefit-actions {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 4px;
}
.sec-03__benefit-btn {
	flex: 1;
	height: 38px;
	border: none;
	border-radius: 10px;
	background: #2563eb;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.sec-03__benefit-share {
	width: 38px;
	height: 38px;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	color: #374151;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 1400px) {
	/*Sec-02*/
	.sec-02.card-section {
		height: 280vh;
	}
	.sec-02__phone {
		gap: 30px;
	}
	.sec-02__big-title {
		font-size: 40px;
		line-height: 160%;
	}

	.sec-03__mockup-wrap {
		top: 65%;
	}
	.sec-03__layout {
		top: 53%;
	}

	.sec-03__blob--left {
		width: 380px;
		height: 380px;
		left: -10%;
		bottom: 13%;
	}
	.sec-03__blob--right {
		width: 300px;
		height: 300px;
		right: -7%;
		top: 16%;
	}
	.sec-03__benefit-card {
		bottom: 5%;
		right: 7%;
	}
	.sec-03__mockup-caption {
		right: 29%;
		font-size: 18px;
		top: 80%;
		line-height: 160%;
	}

	.sec-05__inner {
		max-width: 1200px;
		padding: 50px 50px 0;
	}

	.sec-05__title {
		font-size: 40px;
		line-height: 160%;
	}
	.sec-05__lbl {
		margin-bottom: 35px;
	}

	.sec-05__info {
		padding-top: 55px;
	}

	.sec-05__quote {
		font-size: 22px;
		line-height: 160%;
	}

	.sec-05__desc {
		font-size: 18px;
		line-height: 160%; /* 145.455% */
	}

	.sec-05__gps-label {
		font-size: 20px;
	}
	.sec-05__chips {
		gap: 6px;
	}
	.sec-05__chips span {
		width: 92px;
		padding: 5px;
		height: 88px;
		font-size: 16px;
		line-height: 160%;
	}
	.sec-05__gps-caption {
		font-size: 16px;
	}

	/*sec-06*/
	.sec-06 .sec-feature__text {
		max-width: 400px;
	}

	.sec-title {
		font-size: 40px;
		line-height: 160%;
	}

	.sec-feature__desc {
		font-size: 16px;
		line-height: 160%;
	}

	/*sec-07*/
	.sec-08__title {
		font-size: 40px;
		line-height: 1.25;
		margin-bottom: 20px;
	}

	.sec-08__desc {
		font-size: 16px;
		line-height: 160%;
	}
	.sec-09 .sec-label {
		font-size: 40px;
		line-height: 160%;
	}
	.sec-09 .sec-title {
		font-size: 16px;
		line-height: 160%;
	}
	.sec-09__item {
		gap: 10px;
	}
	.sec-09__item h6 {
		font-size: 24px;
	}

	.sec-bottom__inner {
		max-height: 1000px;
	}
}
@media (max-width: 1024px) {
	.sec-02.card-section {
		height: 200vh;
	}
	.sec-03__layout {
		padding: 40px 24px;
		gap: 28px;
		margin: 40px auto;
	}
	.sec-03__top {
		flex-direction: column;
		gap: 24px;
	}
	.sec-03__title-col {
		width: 100%;
	}
	.sec-03__big-title {
		font-size: 40px;
	}
	.sec-03__mockup-wrap > img {
		width: 100%;
	}
	.sec-03__benefit-card {
		bottom: 9%;
		right: 2%;
	}
	.sec-03__blob--left {
		width: 200px;
		height: 200px;
		left: -80px;
		bottom: 25%;
	}
	.sec-03__blob--right {
		width: 200px;
		height: 200px;
		right: -60px;
	}
	.sec-03__mockup-wrap {
		top: 68%;
	}
	.sec-03__mockup-caption {
		top: 75%;
	}
	.sec-06.card-section,
	.sec-07.card-section {
		height: 50vh;
	}
	.sec-06__main-phone {
		width: 180px;
		left: 130px;
		top: 0;
	}
	.sec-06__stamp-card {
		width: 110px;
	}

	.sec-06__stamp-card--right {
		right: 42px;
	}

	.sec-06__stamp-card--right-top {
		right: -16%;
	}

	.sec-05__inner {
		max-width: 960px;
	}
	.sec-07__phone {
		width: 200px;
	}
	.sec-08__flow {
		padding: 30px;
	}
	.sec-bottom.card-section {
		height: 50vh;
		min-height: 680px;
	}

	.sec-bottom__inner {
		height: 500px !important;
	}
}

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

	.mobile_view {
		display: block !important;
	}

	.sec-01.card-section {
		height: auto;
		gap: 0;
	}

	.sec-01.card-section .inner {
		height: auto;
		padding: 0;
	}

	.sec-01__hero-inner {
		height: 100vh !important;
		padding-top: 60px !important;
		padding-bottom: 0 !important;
	}

	.sec-01.card-section .sec-02__inner {
		height: auto;
		margin: 0 auto !important;
		padding: 0 20px;
	}

	.sec-01__mockup picture img {
		display: none;
	}

	.sec-02__title,
	.sec-02__title em {
		font-size: 32px;
		line-height: 160%;
	}

	.sec-02.card-section .inner {
		gap: 35px;
		min-height: 100vh;
		height: auto;
	}
	.sec-02__content {
		text-align: center;
		align-items: center;
		/* position: absolute; */
	}
	.sec-02__lbl {
		flex-direction: column;
		align-items: center;
		align-self: center;
		font-size: 14px;
	}
	.sec-02__lbl span {
		font-size: 14px;
	}
	.sec-02__big-title {
		text-align: center !important;
		font-size: 32px !important;
		padding: 40px 22px;
	}

	.sec-02__phone {
		max-width: 100%;
	}

	.sec-02__recommend {
		display: flex;
		padding: 0;
	}

	.sec-02__recommend.pc_view {
		display: none;
	}

	.sec-02__phone-img {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.sec-02__card-img {
		position: absolute;
		top: 25%;
		transform: translateY(-50%);
		z-index: -1;
	}
	.sec-02__rec-desc,
	.sec-02__rec-title {
		text-align: center;
		padding: 0 40px 40px;
	}
	.sec-02__rec-title {
		padding-bottom: 0;
		font-size: 16px;
	}
	.sec-02__rec-row .sec-02__rec-desc {
		font-size: 14px;
		padding: 0;
		word-break: keep-all;
		position: relative;
		top: 0;
	}

	.sec-02__rec-row {
		position: relative;
		top: 0;
		width: 100%;
		left: unset;
		padding: 50px;
		/* transform: translateX(10px); */
	}

	.sec-02.card-section .sec-03__layout {
		position: relative;
		padding: 0;
	}
	.sec-02__timeline {
		display: none;
	}

	.sec-02.card-section {
		padding: 70px 0 30px;
	}

	.sec-03__lbl {
		flex-direction: column;
		font-size: 14px;
	}
	.sec-03__lbl span {
		font-size: 14px;
	}

	.sec-03__big-title {
		font-size: 36px;
		text-align: center;
	}

	.sec-03__desc {
		text-align: center;
		letter-spacing: -0.6px;
		word-break: keep-all;
		font-size: 14px;
	}
	.sec-03__mockup-wrap {
		top: 0;
		position: relative;
		padding: 0;
		left: unset;
	}

	.sec-03__benefit-card {
		bottom: unset;
		position: relative;
		right: unset;
		width: 205px;
		box-shadow: unset;
		padding: 0;
		margin: 0 auto;
	}

	.sec-03__benefit-card::before {
		display: none;
	}

	.sec-03__benefit-card::after {
		display: none;
	}
	.sec-03__mockup-caption {
		position: relative;
		margin: 0 auto;
		left: unset;
		width: fit-content;
		right: unset;
	}

	.sec-05 {
		padding: 0 20px;
	}

	.sec-title {
		font-size: 32px;
		line-height: 160%;
		margin-bottom: 16px;
		text-align: center;
	}

	.sec-feature__desc {
		font-size: 14px;
		line-height: 1.75;
		margin: 12px auto 0;
		text-align: center;
	}

	.sec-07.card-section {
		min-height: 100vh;
		height: auto;
	}

	.sec-07__lbl {
		padding-bottom: 70px;
	}

	.sec-08__title {
		font-size: 32px;
	}
	.sec-08__flow {
		padding: 0;
	}
	.sec-08__steps {
		max-width: 100%;
	}
	.sec-08 {
		padding-bottom: 50px;
	}

	.sec-09.card-section {
		padding: 50px 0;
	}
	.sec-09 .sec-feature__bg {
		top: -4%;
	}
	.sec-09 .sec-feature__bg img {
		width: 30%;
	}

	.sec-09 .sec-label {
		font-size: 32px !important;
	}

	.sec-09 .sec-title {
		font-size: 14px;
		padding: 20px 100px 0;
	}

	.sec-09__list li {
		height: 354px;
	}
	.sec-bottom.card-section {
		height: 30vh;
		min-height: 490px;
	}
	.sec-bottom__inner {
		height: 360px !important;
	}

	.sec-02 .sec-feature__bg {
		width: 180px;
		top: -1%;
	}

	.sec-07 .sec-feature__bg {
		width: 180px;
		right: -10%;
	}
	.sec-0506-wrap::before {
		background: url(./img/mo_bg.png) no-repeat center center / cover;
		filter: none;
	}

	.sec-02.card-section::before {
		background: url(./img/mo_bg.png) no-repeat center top / cover;
	}
}
