/* Font Face Declarations */
@font-face {
	font-family: 'Gmarket Sans';
	font-weight: 500;
	font-style: normal;
	src: url('../font/GmarketSansMedium.woff') format('woff');
	font-display: swap;
}

@font-face {
	font-family: 'Gmarket Sans';
	font-weight: 700;
	font-style: normal;
	src: url('../font/GmarketSansBold.woff') format('woff');
	font-display: swap;
}

@font-face {
	font-family: 'MaruBuri';
	font-weight: 600;
	font-style: normal;
	src: url('../font/MaruBuri-SemiBold.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'MaruBuri';
	font-weight: 700;
	font-style: normal;
	src: url('../font/MaruBuri-Bold.woff2') format('woff2');
	font-display: swap;
}

@font-face {
    font-family: 'PhoneLine';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2202-2@1.0/JeonHwaseon.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Gmarket Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: #ffffff;
	width: 100%;
	min-height: 100vh;
}

/* Container - fixed 700px on desktop */
.container {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	background-color: #ffffff;
}

/* Header */
.header {
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.header-logo {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	padding: 10px 15px;
	width: 100%;
	max-width: 200px;
}

.header-logo img {
	width: 100%;
	height: auto;
}

.header-banner {
	background-color: #006934;
	width: 100%;
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: flex-end;
	padding: 16px 0;
	font-size: 16px;
	color: white;
	font-weight: bold;
	line-height: 26px;
}

.header-banner p {
	white-space: pre;
}

.banner-arrow {
	width: 15.299px;
	height: 8.999px;
}

/* Marquee Animation */
.marquee-container {
	overflow: hidden;
	width: 100%;
	display: flex;
}

.marquee-content {
	display: flex;
	gap: 10px;
	align-items: center;
	animation: marquee 30s linear infinite;
	white-space: nowrap;
	padding-right: 10px;
}

.marquee-item {
	display: flex;
	gap: 10px;
	align-items: center;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Visual */
.visual {
	background-color: #efefef;
	height: 900px;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.visual-image-container {
	position: absolute;
	left: 42%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 450px;
	height: auto;
	z-index: 5;
}

.visual-image-container img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.visual-flower {
	position: absolute;
	right: 0;
	top: 0;
	width: 90px;
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}

.visual-flower img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.visual-text {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 10;
}

.visual-text-top {
	font-size: 18px;
	color: #e84a73;
	line-height: 30px;
	text-decoration: underline;
	margin-bottom: 3px;
	font-weight: bold;
}

.visual-title {
	display: flex;
	align-items: flex-start;
	font-size: 60px;
	line-height: 70px;
	width: 285px;
	font-weight: bold;
}

.visual-title .text-pink {
	color: #e84a73;
}

.visual-title .text-gradient {
	background: linear-gradient(to right, #f57b9a 5.714%, #fa7497 50%, #f83a6b 94.286%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.visual-text-sub {
	font-size: 18px;
	color: #e84a73;
	line-height: 30px;
	margin-top: 3px;
	font-weight: bold;
}

.visual-text-bottom {
	position: absolute;
	right: 70px;
	bottom: 85px;
	font-size: 18px;
	color: #e84a73;
	line-height: 30px;
	white-space: pre-wrap;
	font-weight: bold;
	z-index: 10;
}

/* Content */
.content {
	width: 100%;
	padding: 0;
	position: relative;
}

.content-top-bg {
	width: 100%;
	display: block;
	line-height: 0;
	background-color: #efefef;
}

.content-top-bg img {
	width: 100%;
	height: auto;
	display: block;
}

.content-bottom-bg {
	width: 100%;
	display: block;
	line-height: 0;
}

.content-bottom-bg img {
	width: 100%;
	height: auto;
	display: block;
}

.content-inner {
	background-color: #e84a73;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	padding: 20px 15px;
}

.step-badge {
	border: 1px solid white;
	border-radius: 100px;
	padding: 8px 20px;
	display: inline-flex;
	gap: 10px;
	align-items: center;
}

.step-badge p {
	font-size: 11px;
	color: white;
	font-weight: bold;
	line-height: 14px;
	text-align: center;
	white-space: pre;
}

.content-title {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.content-heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	text-align: center;
	color: white;
}

.content-heading h1 {
	font-size: 24px;
	line-height: 34px;
	font-weight: bold;
	white-space: pre;
}

.content-heading p {
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	white-space: pre-wrap;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.form-label {
	display: flex;
	gap: 8px;
	align-items: center;
}

.form-label-icon {
	width: 15.299px;
	height: 8.999px;
}

.form-label p {
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	color: white;
	white-space: pre;
}

.form-input {
	background-color: white;
	border: 1px solid #111111;
	border-radius: 10px;
	padding: 12px;
	width: 100%;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	color: #222222;
}

.form-input::placeholder {
	color: #222222;
}

.form-select-group {
	display: flex;
	gap: 4px;
	width: 100%;
}

.form-select-wrapper {
	flex: 1;
	position: relative;
}

.form-select {
	background-color: white;
	border: 1px solid #111111;
	border-radius: 10px;
	padding: 12px;
	width: 100%;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	color: #222222;
	appearance: none;
	cursor: pointer;
}

.select-arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	width: 8px;
	height: 6px;
}

.button-group {
	display: flex;
	gap: 4px;
	width: 100%;
}

.btn {
	flex: 1;
	border-radius: 100px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	border: none;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
	background-color: #111111;
	color: white;
}

.btn-secondary {
	background-color: white;
	color: #222222;
	border: 2px solid #191919;
}

.btn-icon {
	width: 16px;
	height: 16px;
	transform: rotate(90deg);
}

/* Footer */
.footer {
	width: 100%;
}

.footer-top {
	width: 100%;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
	width: 100%;
	max-width: 160px;
}

.footer-logo img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.footer-buttons {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.footer-btn-link {
	width: 46px;
	height: 46px;
	background-color: #E84A73;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
	cursor: pointer;
}

.footer-btn-link:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

.footer-btn {
	width: 24px;
	height: 24px;
}

.footer-bottom {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
	border-top: 1px solid #dddddd;
}

.footer-partner-logo {
	height: 28px;
	width: auto;
}

/* PC 스타일 (701px 이상) */
@media (min-width: 700px) {
	.container {
		width: 700px;
		box-shadow: 0 0 0 1px #ddd;
	}

	body {
		background-color: #f5f5f5;
	}

	/* Header 확대 */
	.header {
		padding-top: 24px;
		gap: 12px;
	}

	.header-logo {
		max-width: 270px;
		padding: 12px 15px;
	}

	.header-logo img {
		width: 100%;
	}

	.header-banner {
		padding: 12px 0;
		font-size: 14px;
		line-height: 24px;
	}

	.banner-arrow {
		width: 20px;
		height: 12px;
	}

	/* Visual 확대 */
	.visual {
		height: 750px;
	}

	.visual-image-container {
		width: 410px;
	}

	.visual-flower {
		width: 80px;
	}

	.visual-text {
		left: 35px;
		top: 35px;
	}

	.visual-text-top {
		font-size: 15px;
		line-height: 26px;
		margin-bottom: 4px;
	}

	.visual-title {
		font-size: 52px;
		line-height: 60px;
		width: 260px;
	}

	.visual-text-sub {
		font-size: 15px;
		line-height: 26px;
		margin-top: 4px;
	}

	.visual-text-bottom {
		right: 130px;
		bottom: 105px;
		font-size: 16px;
		line-height: 24px;
	}

	/* Content 확대 */
	.content-inner {
		gap: 32px;
		padding: 40px 30px;
	}

	.content-title {
		gap: 14px;
	}

	.step-badge {
		padding: 12px 30px;
		border-width: 2px;
	}

	.step-badge p {
		font-size: 15px;
		line-height: 20px;
	}

	.content-heading {
		gap: 8px;
	}

	.content-heading h1 {
		font-size: 34px;
		line-height: 44px;
	}

	.content-heading p {
		font-size: 17px;
		line-height: 26px;
	}

	.form-group {
		gap: 12px;
	}

	.form-label {
		gap: 12px;
	}

	.form-label-icon {
		width: 20px;
		height: 12px;
	}

	.form-label p {
		font-size: 19px;
		line-height: 24px;
	}

	.form-input {
		padding: 16px 18px;
		font-size: 16px;
		line-height: 24px;
		border-radius: 12px;
	}

	.form-select {
		padding: 16px 18px;
		font-size: 16px;
		line-height: 24px;
		border-radius: 12px;
	}

	.form-select-group {
		gap: 6px;
	}

	.button-group {
		gap: 6px;
	}

	.btn {
		padding: 22px 28px;
		font-size: 19px;
		line-height: 24px;
	}

	.btn-icon {
		width: 20px;
		height: 20px;
	}

	/* Footer 확대 */
	.footer-top {
		padding: 40px 50px;
	}

	.footer-logo {
		max-width: 180px !important;
		gap: 8px;
	}

	.footer-logo img {
		width: 100% !important;
		max-width: 100% !important;
	}

	.footer-buttons {
		gap: 9px;
	}

	.footer-btn-link {
		width: 52px;
		height: 52px;
	}

	.footer-btn {
		width: 28px;
		height: 28px;
	}

	.footer-bottom {
		padding: 30px 0;
		gap: 50px;
	}

	.footer-partner-logo {
		height: 30px;
	}

	.footer-partner-logo:first-child {
		height: 38px;
	}
}

/* 태블릿 스타일 (699px 이하) */
@media (max-width: 699px) {
	/* Header */
	.header-logo {
		max-width: 190px;
		padding: 8px 12px;
	}

	.header-banner {
		padding: 12px 0;
		font-size: 13px;
		line-height: 22px;
	}

	.banner-arrow {
		width: 14px;
		height: 8px;
	}

	/* Visual */
	.visual {
		height: 700px;
	}

	.visual-image-container {
		width: 350px;
	}

	.visual-flower {
		width: 75px;
	}

	.visual-text {
		left: 25px;
		top: 25px;
	}

	.visual-text-top {
		font-size: 15px;
		line-height: 26px;
	}

	.visual-title {
		font-size: 50px;
		line-height: 58px;
		width: 250px;
	}

	.visual-text-sub {
		font-size: 15px;
		line-height: 26px;
	}

	.visual-text-bottom {
		right: 85px;
		bottom: 70px;
		font-size: 15px;
		line-height: 26px;
	}

	/* Footer */
	.footer-top {
		padding: 18px 15px;
	}

	.footer-logo {
		max-width: 150px;
	}

	.footer-btn-link {
		width: 42px;
		height: 42px;
	}

	.footer-btn {
		width: 22px;
		height: 22px;
	}

	.footer-bottom {
		padding: 18px 0;
		gap: 22px;
	}

	.footer-partner-logo {
		height: 26px;
	}
}

/* 모바일 스타일 (500px 이하) */
@media (max-width: 500px) {
	/* Header */
	.header {
		padding-top: 10px;
		gap: 8px;
	}

	.header-logo {
		max-width: 160px;
		padding: 6px 10px;
	}

	.header-banner {
		padding: 10px 0;
		font-size: 11px;
		line-height: 18px;
	}

	.banner-arrow {
		width: 12px;
		height: 7px;
	}

	/* Visual */
	.visual {
		height: 550px;
	}

	.visual-image-container {
		width: 280px;
	}

	.visual-flower {
		width: 60px;
	}

	.visual-text {
		left: 15px;
		top: 15px;
	}

	.visual-text-top {
		font-size: 13px;
		line-height: 22px;
	}

	.visual-title {
		font-size: 42px;
		line-height: 50px;
		width: 210px;
	}

	.visual-text-sub {
		font-size: 13px;
		line-height: 22px;
	}

	.visual-text-bottom {
		right: 65px;
		bottom: 50px;
		font-size: 13px;
		line-height: 22px;
	}

	/* Form */
	.form-input {
		font-size: 14px;
	}

	.form-select {
		font-size: 14px;
	}

	/* Footer */
	.footer-top {
		padding: 15px 12px;
	}

	.footer-logo {
		max-width: 110px;
	}

	.footer-btn-link {
		width: 38px;
		height: 38px;
	}

	.footer-btn {
		width: 20px;
		height: 20px;
	}

	.footer-buttons {
		gap: 7px;
	}

	.footer-bottom {
		gap: 18px;
		padding: 15px 0;
	}

	.footer-partner-logo {
		height: 22px;
	}
}

