@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800');

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background:
		radial-gradient(circle at top left, #ffe3da 0%, transparent 28%),
		radial-gradient(circle at bottom right, #ffd7e7 0%, transparent 22%),
		linear-gradient(135deg, #f6f8fc 0%, #fff8f5 100%);
	color: #222;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* TOP BAR */
.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 18px 32px;
	background: #ffffff;
	border-bottom: 1px solid #f0eaea;
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	position: sticky;
	top: 0;
	z-index: 50;
}

.topbar-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.topbar-left h1 {
	font-size: 20px;
	margin: 0 0 4px;
	color: #1d1d1d;
}

.topbar-left p {
	margin: 0;
	font-size: 12px;
	color: #777;
}

.topbar-logo {
	width: 70px;
	height: 50px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.topbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.topbar-btn {
	border: none;
	border-radius: 12px;
	padding: 11px 16px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.2s ease;
}

.topbar-btn.line {
	background: #06C755;
	color: #fff;
}

.topbar-btn.line:hover {
	opacity: 0.92;
}

/* PAGE */
.page-wrap {
	flex: 1;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 12px 24px 28px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 24px;
	width: 100%;
	max-width: 100%;
	align-items: start;
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.hero-right {
	display: flex;
	align-items: flex-start;
	width: 100%;
	max-width: 100%;
}

.hero-content {
	width: 100%;
	max-width: 100%;
	padding: 20px 10px 20px 10px;
}

/* RIGHT CONTENT */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #fff;
	color: #ff5a36;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	margin-bottom: 18px;
}

.hero-title {
	font-size: 42px;
	line-height: 1.2;
	margin: 0 0 16px;
	color: #1f1f1f;
	max-width: 900px;
}

.hero-title span {
	display: block;
	font-size: 20px;
	color: #555;
	font-weight: 600;
	margin-top: 12px;
	line-height: 1.5;
}

.hero-desc {
	max-width: 900px;
	font-size: 15px;
	line-height: 1.9;
	color: #666;
	margin-bottom: 24px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 28px;
}

.hero-btn {
	border: none;
	border-radius: 14px;
	padding: 14px 22px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.2s ease;
}

.hero-btn.primary {
	background: linear-gradient(90deg, #ff4b2b, #ff416c);
	color: #fff;
	box-shadow: 0 10px 24px rgba(255, 75, 43, 0.25);
}

.hero-btn.primary:hover {
	transform: translateY(-1px);
}

/* LOGIN PANEL */
.login-panel {
	width: 100%;
	max-width: 420px;
	margin-top: 0 !important;
	margin-right: 0;
	align-self: flex-start;
	background: rgba(255,255,255,0.96);
	backdrop-filter: blur(8px);
	border-radius: 28px;
	padding: 24px;
	box-shadow: 10px 0 24px rgba(0,0,0,0.05), 0 18px 50px rgba(0,0,0,0.09);
	border: 1px solid #f2ebeb;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.login-panel-top {
	text-align: center;
	margin-bottom: 18px;
}

.login-logo-wrap {
	margin-bottom: 12px;
}

.login-logo {
	width: 140px;
	max-width: 100%;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.login-panel-top h3 {
	margin: 0 0 8px;
	font-size: 24px;
	color: #222;
}

.login-panel-top p {
	margin: 0;
	font-size: 13px;
	color: #777;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.input-group label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #444;
}

.input-icon {
	position: relative;
}

.input-icon i {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 14px;
}

.input-icon input {
	width: 100%;
	height: 48px;
	border-radius: 14px;
	border: 1px solid #e6e0e0;
	background: #fafafa;
	padding: 0 14px 0 42px;
	font-size: 14px;
	transition: 0.2s ease;
}

.input-icon input:focus {
	outline: none;
	background: #fff;
	border-color: #ff6a4a;
	box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.10);
}

.login-submit {
	height: 48px;
	border: none;
	border-radius: 14px;
	background: linear-gradient(90deg, #ff4b2b, #ff416c);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(255, 75, 43, 0.22);
	transition: 0.2s ease;
}

.login-submit:hover {
	transform: translateY(-1px);
}

.message-box {
	min-height: 18px;
	font-size: 13px;
	margin: 0;
	text-align: center;
}

/* LINE SUPPORT BOX */
.line-support-box {
	margin-top: 8px;
	background: linear-gradient(135deg, #f8fff9, #ffffff);
	border: 1px solid #e8f7ed;
	border-radius: 20px;
	padding: 16px;
	text-align: center;
}

.line-support-text h4 {
	margin: 0 0 6px;
	font-size: 16px;
	color: #222;
}

.line-support-text p {
	margin: 0 0 12px;
	font-size: 12px;
	color: #666;
}

.line-qr-thumb {
	width: 115px;
	height: 115px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid #eee;
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	margin-bottom: 12px;
}

.line-support-btn {
	width: 100%;
	height: 46px;
	border: none;
	border-radius: 14px;
	background: #06C755;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: 0.2s ease;
}

.line-support-btn:hover {
	opacity: 0.92;
}

/* FEATURE + VIDEO LAYOUT */
.feature-layout {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 24px;
	margin-top: 20px;
	align-items: start;
}

.feature-left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feature-right {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.feature-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: rgba(255,255,255,0.92);
	border: 1px solid #f1ebeb;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.feature-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #ffefe9, #ffe8f1);
	color: #ff4b2b;
	font-size: 18px;
	flex-shrink: 0;
}

.feature-item h3 {
	margin: 2px 0 6px;
	font-size: 15px;
}

.feature-item p {
	margin: 0;
	font-size: 12px;
	color: #777;
	line-height: 1.7;
}

/* VIDEO CARD */
.guide-video-card {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.92);
	border: 1px solid #f1ebeb;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.guide-video-head h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: #1f1f1f;
	display: flex;
	align-items: center;
	gap: 8px;
}

.guide-video-head p {
	margin: 0 0 14px;
	font-size: 13px;
	color: #6b7280;
	line-height: 1.7;
}

.guide-video-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
}

.guide-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* MINI DASHBOARD */
.mini-dashboard {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 18px;
}

.mini-card {
	background: #fff;
	border-radius: 20px;
	padding: 18px;
	border: 1px solid #f0e9e9;
	box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.mini-label {
	font-size: 11px;
	font-weight: 700;
	color: #ff5a36;
	display: inline-block;
	margin-bottom: 8px;
}

.mini-card strong {
	display: block;
	font-size: 17px;
	margin-bottom: 8px;
	color: #1d1d1d;
}

.mini-card p {
	margin: 0;
	font-size: 12px;
	line-height: 1.7;
	color: #777;
}

/* FOOTER */
.footer {
	text-align: center;
	padding: 14px 20px 22px;
	font-size: 13px;
	color: #777;
}

/* MODAL */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	background: rgba(0,0,0,0.56);
}

.modal-content {
	background: #fff;
	width: 420px;
	max-width: 95%;
	margin: 5% auto;
	border-radius: 22px;
	padding: 28px 22px;
	text-align: center;
	position: relative;
	box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.close {
	position: absolute;
	right: 16px;
	top: 10px;
	font-size: 28px;
	font-weight: bold;
	color: #888;
	cursor: pointer;
}

.close:hover {
	color: #ff4b2b;
}

.line-qr-large {
	width: 230px;
	max-width: 100%;
	border-radius: 16px;
	border: 1px solid #eee;
	box-shadow: 0 8px 22px rgba(0,0,0,0.10);
	margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.hero-left {
		justify-content: flex-start;
		align-items: stretch;
	}

	.hero-right {
		margin: 0;
		padding: 0;
	}

	.hero-content {
		padding: 10px 0 0;
	}

	.hero-title {
		font-size: 34px;
	}

	.hero-title span {
		font-size: 18px;
	}

	.feature-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.topbar {
		padding: 14px 16px;
		flex-direction: column;
		align-items: flex-start;
	}

	.page-wrap {
		padding: 12px 14px 20px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.hero-title {
		font-size: 28px;
	}

	.mini-dashboard {
		grid-template-columns: 1fr;
	}

	.login-panel {
		padding: 18px;
		border-radius: 22px;
		max-width: 100%;
		box-shadow: 0 18px 50px rgba(0,0,0,0.09);
	}

	.feature-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.topbar-left {
		align-items: flex-start;
	}

	.topbar-logo {
		width: 58px;
		height: 44px;
	}

	.topbar-left h1 {
		font-size: 16px;
	}

	.hero-title {
		font-size: 24px;
	}

	.hero-title span {
		font-size: 16px;
	}

	.hero-desc {
		font-size: 14px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-btn {
		width: 100%;
		justify-content: center;
	}

	.modal-content {
		padding: 24px 16px;
	}
}