/* ========================================
   CSS Variables
======================================== */
:root {
	--primary: #7B68EE;
	--primary-light: #9D8DF1;
	--primary-dark: #5A4FCF;
	--text: #2C3E50;
	--text-light: #5D6D7E;
	--accent: #FF6B35;
	--accent-light: #FF8A5B;
	--bg-light: #F8F9FA;
	--bg-white: #FFFFFF;
	--border: #E9ECEF;
	--success: #27AE60;
	--error: #E74C3C;
}

/* ========================================
   Reset & Base
======================================== */

/* ========================================
   Header
======================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	transition: all 0.3s ease;
}

.header.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }
.header-logo { font-size: 18px; font-weight: 700; color: var(--primary); }
.header-cta {
	padding: 8px 16px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}
.header-cta:active { transform: scale(0.96); }

/* ========================================
   Hero Section
======================================== */
.hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 100px 20px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero::before, .hero::after {
	content: '';
	position: absolute;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}
.hero::before { top: -50%; right: -30%; width: 500px; height: 500px; }
.hero::after { bottom: -20%; left: -20%; width: 350px; height: 350px; animation-duration: 6s; animation-direction: reverse; }

@keyframes float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(20px, 20px); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
	animation: fadeInUp 0.6s ease;
}
.hero h1 { font-size: 28px; font-weight: 700; margin-bottom: 16px; line-height: 1.4; animation: fadeInUp 0.6s ease 0.1s both; }
.hero p { font-size: 15px; opacity: 0.9; margin-bottom: 32px; line-height: 1.7; animation: fadeInUp 0.6s ease 0.2s both; }

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; animation: fadeInUp 0.6s ease 0.3s both; }
.stat-item { text-align: center; padding: 16px 8px; background: rgba(255, 255, 255, 0.1); border-radius: 12px; backdrop-filter: blur(10px); }
.stat-value { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.stat-label { font-size: 11px; opacity: 0.8; }

.hero .scroll-indicator { display: block; position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.hero .scroll-indicator span { display: block; width: 24px; height: 24px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); opacity: 0.6; }

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   Main Content
======================================== */
.main-content { max-width: 1200px; margin: 0 auto; padding: 40px 16px 60px; }

.section-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.section-title::before { content: ''; width: 4px; height: 24px; background: var(--primary); border-radius: 2px; }

/* ========================================
   Info Cards
======================================== */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
.info-card {
	background: var(--bg-white);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:active { transform: scale(0.98); }

.info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.info-card-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.info-card-title { font-size: 18px; font-weight: 600; color: var(--text); }
.info-card-content { color: var(--text-light); font-size: 16px; }
.info-card-content ul { list-style: none; }
.info-card-content li {
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}
.info-card-content li:last-child { border-bottom: none; padding-bottom: 0; }
.info-card-content li::before { content: '✓'; color: var(--primary); font-weight: 600; flex-shrink: 0; }

.location-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.location-tag { background: var(--bg-light); padding: 6px 12px; border-radius: 16px; font-size: 14px; white-space: nowrap; min-width: calc(25% - 6px); text-align: center; box-sizing: border-box; }

/* ========================================
   Salary Highlight
======================================== */
.salary-highlight {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
	border-radius: 20px;
	padding: 24px 16px;
	color: white;
	margin-bottom: 32px;
	position: relative;
	overflow: hidden;
}
.salary-highlight::before { content: '💰'; position: absolute; top: -20px; right: -10px; font-size: 100px; opacity: 0.1; }

.salary-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; position: relative; z-index: 1; }
.salary-header h3 { font-size: 18px; font-weight: 700; }

.salary-message {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 20px 16px;
	background: rgba(255,255,255,0.2);
	border-radius: 16px;
	backdrop-filter: blur(10px);
}
.salary-main-text {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 12px;
}
.salary-main-text strong {
	font-size: 22px;
	font-weight: 800;
}
.salary-sub-text {
	font-size: 14px;
	opacity: 0.9;
}

/* ========================================
   Benefits Section (강사 혜택)
======================================== */
.benefits-section {
	background: var(--bg-white);
	border-radius: 20px;
	padding: 24px 18px;
	margin-bottom: 32px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.benefits-section h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.benefits-desc { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

/* 2x2 Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 20px;
}
.benefit-card-small {
	display: flex;
	gap: 12px;
	padding: 16px 14px;
	background: var(--bg-light);
	border-radius: 12px;
	border-left: 3px solid var(--primary);
}
.benefit-card-small .benefit-number {
	font-size: 20px;
	font-weight: 800;
	color: var(--primary);
	opacity: 0.4;
	line-height: 1;
	flex-shrink: 0;
}
.benefit-card-small .benefit-detail h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.4;
}
.benefit-card-small .benefit-detail p {
	font-size: 13px;
	color: var(--text-light);
	line-height: 1.6;
	margin: 0;
}
.benefit-card-small .benefit-detail strong { color: var(--primary); font-weight: 600; }

/* 5번 하이라이트 */
.benefit-highlight {
	background: linear-gradient(135deg, rgba(123, 104, 238, 0.08) 0%, rgba(123, 104, 238, 0.03) 100%);
	border: 2px solid var(--primary);
	border-radius: 16px;
	padding: 20px 16px;
	position: relative;
}
.benefit-highlight-badge {
	position: absolute;
	top: -12px;
	left: 20px;
	background: var(--primary);
	color: white;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
}
.benefit-highlight-number {
	font-size: 28px;
	font-weight: 800;
	color: var(--primary);
	opacity: 0.3;
	margin-bottom: 8px;
}
.benefit-highlight-content h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 12px;
	line-height: 1.4;
}
.benefit-highlight-desc p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.7;
	margin: 0 0 16px 0;
}
.benefit-highlight-desc strong { color: var(--primary); font-weight: 600; }

.benefit-highlight-points {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}
.highlight-point {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	background: var(--bg-white);
	border-radius: 10px;
	font-size: 13px;
	color: var(--text);
	line-height: 1.6;
}
.highlight-point .point-icon {
	font-size: 18px;
	flex-shrink: 0;
}
.highlight-point strong { color: var(--primary); font-weight: 600; }

.benefit-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 12px 14px;
	background: rgba(255, 107, 53, 0.08);
	border-radius: 10px;
	font-size: 12px;
	color: var(--text-light);
	line-height: 1.5;
}
.benefit-note span { flex-shrink: 0; }

.program-link {
	display: block;
	text-align: center;
	margin-top: 20px;
	padding: 14px;
	background: rgba(123, 104, 238, 0.1);
	border-radius: 10px;
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}
.program-link:active { background: rgba(123, 104, 238, 0.2); }

/* ========================================
   Application Form
======================================== */
.form-section {
	background: var(--bg-white);
	border-radius: 20px;
	padding: 20px 14px 24px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.form-header { text-align: center; margin-bottom: 20px; }
.form-header h2 { font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-header p { color: var(--text-light); font-size: 13px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-label .required { color: var(--accent); margin-left: 4px; }
.form-label small { color: var(--text-light); font-weight: 400; }

.form-input {
	width: 100%;
	padding: 10px 12px;
	border: 2px solid var(--border);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: var(--bg-white);
}
input[type="text"].form-input {
	height: unset;
	line-height: unset;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(123, 104, 238, 0.1); }
.form-input::placeholder { color: #AEB6BF; }
textarea.form-input { min-height: 90px; resize: vertical; line-height: 1.5; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr; gap: 12px; }

.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0 16px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: 13px; font-weight: 600; color: var(--text-light); white-space: nowrap; }

/* ========================================
   Checkbox & Radio
======================================== */
.checkbox-group, .radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-item, .radio-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: var(--bg-light);
	border: 2px solid var(--border);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s;
	flex: 1;
	min-width: 100%;
	font-size: 14px;
}
.checkbox-item:active, .radio-item:active { transform: scale(0.98); }
.checkbox-item.selected, .radio-item.selected { background: rgba(123, 104, 238, 0.1); border-color: var(--primary); }
.checkbox-item input, .radio-item input { display: none; }

.custom-checkbox, .custom-radio {
	width: 18px;
	height: 18px;
	border: 2px solid var(--border);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
}
.custom-radio { border-radius: 50%; }
.checkbox-item.selected .custom-checkbox, .radio-item.selected .custom-radio { background: var(--primary); border-color: var(--primary); }
.custom-checkbox::after, .custom-radio::after { content: '✓'; color: white; font-size: 12px; font-weight: 700; opacity: 0; transition: opacity 0.2s; }
.checkbox-item.selected .custom-checkbox::after, .radio-item.selected .custom-radio::after { opacity: 1; }

/* Inline Variations */
.radio-inline .radio-item { min-width: calc(50% - 4px); font-size: 14px; }
.checkbox-inline-3 .checkbox-item { min-width: calc(33.333% - 6px); padding: 10px 6px; font-size: 13px; justify-content: center; }
.checkbox-inline-3 .custom-checkbox { width: 18px; height: 18px; }
.checkbox-inline-4 .checkbox-item { min-width: calc(25% - 6px); padding: 10px 4px; font-size: 13px; justify-content: center; }
.checkbox-inline-4 .custom-checkbox { width: 18px; height: 18px; }

#teacherOptions { overflow: hidden; transition: all 0.3s ease; }

/* ========================================
   Photo Upload
======================================== */
.photo-upload-area { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.photo-preview {
	width: 100px;
	height: 130px;
	background: var(--bg-light);
	border: 2px dashed var(--border);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	overflow: hidden;
}
.photo-preview:active { transform: scale(0.98); border-color: var(--primary); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview .placeholder { text-align: center; color: var(--text-light); }
.photo-preview .placeholder span { font-size: 28px; display: block; margin-bottom: 4px; }
.photo-preview .placeholder small { font-size: 11px; }
.photo-info { text-align: center; }
.photo-info p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ========================================
   File Upload
======================================== */
.file-upload-area {
	border: 2px dashed var(--border);
	border-radius: 12px;
	padding: 20px 16px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
}
.file-upload-area:active { border-color: var(--primary); background: rgba(123, 104, 238, 0.03); }
.file-upload-area.dragover { border-color: var(--primary); background: rgba(123, 104, 238, 0.08); }
.file-upload-icon { font-size: 32px; margin-bottom: 8px; }
.file-upload-text { font-size: 13px; color: var(--text); margin-bottom: 4px; }
.file-upload-hint { font-size: 11px; color: var(--text-light); }

.file-list { margin-top: 10px; }
.file-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--bg-light); border-radius: 8px; margin-top: 6px; }
.file-item-info { display: flex; align-items: center; gap: 8px; overflow: hidden; }
.file-item-name { font-size: 12px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item-size { font-size: 10px; color: var(--text-light); flex-shrink: 0; }
.file-remove-btn { background: none; border: none; color: var(--error); cursor: pointer; font-size: 18px; padding: 2px 6px; flex-shrink: 0; }

/* ========================================
   Tabs
======================================== */
.input-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.tab-btn {
	flex: 1;
	padding: 10px 14px;
	background: var(--bg-light);
	border: 2px solid var(--border);
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-light);
	cursor: pointer;
	transition: all 0.2s;
}
.tab-btn:active { transform: scale(0.98); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ========================================
   Submit Section
======================================== */
.submit-section { margin-top: 24px; text-align: center; }
.privacy-agree { display: flex; align-items: flex-start; justify-content: center; gap: 8px; margin-bottom: 16px; text-align: left; }
.privacy-agree input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.privacy-agree label { font-size: 12px; color: var(--text-light); line-height: 1.4; }
.privacy-agree a { color: var(--primary); text-decoration: underline; }

.submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	padding: 14px 20px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}
.submit-btn:active { transform: scale(0.98); box-shadow: 0 2px 10px rgba(123, 104, 238, 0.3); }

/* ========================================
   Toast & Loading
======================================== */
.toast {
	position: fixed;
	bottom: 40%;
	left: 16px;
	right: 16px;
	background: var(--text);
	color: white;
	padding: 16px 20px;
	border-radius: 14px;
	font-size: 14px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	z-index: 2000;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	text-align: center;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.loading-overlay.show { opacity: 1; visibility: visible; }
.loading-spinner { width: 48px; height: 48px; border: 4px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { margin-top: 16px; font-size: 15px; color: var(--text); }

/* ========================================
   Back to Top
======================================== */
.back-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:active { transform: scale(0.9); }

/* ========================================
   Responsive - Tablet (600px+)
======================================== */
@media (min-width: 600px) {
	.hero { padding: 120px 24px 80px; }
	.hero h1 { font-size: 36px; }
	.hero p { font-size: 17px; }
	.hero-stats { gap: 20px; }
	.stat-item { padding: 20px 16px; }
	.stat-value { font-size: 24px; }
	.stat-label { font-size: 13px; }

	.main-content { padding: 48px 24px 80px; }
	.info-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

	.salary-message { padding: 24px 20px; }
	.salary-main-text { font-size: 20px; }
	.salary-main-text strong { font-size: 26px; }

	.benefits-section { padding: 28px 24px; }
	.benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.benefit-card-small .benefit-detail h4 { font-size: 15px; }
	.benefit-highlight { padding: 24px 20px; }
	.benefit-highlight-content h4 { font-size: 18px; }
	.highlight-point { font-size: 14px; }

	.form-section { padding: 40px 32px; }
	.form-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.form-row-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
	.checkbox-item, .radio-item { min-width: auto; flex: none; }
	.checkbox-group, .radio-group { flex-wrap: wrap; }
	.checkbox-group .checkbox-item, .radio-group .radio-item { flex: 0 0 auto; }

	.photo-upload-area { flex-direction: row; align-items: flex-start; gap: 24px; }
	.photo-info { text-align: left; }

	.submit-btn { max-width: 360px; padding: 18px 60px; }

	.toast { left: 50%; right: auto; transform: translateX(-50%) translateY(20px); min-width: 320px; }
	.toast.show { transform: translateX(-50%) translateY(0); }
}

/* ========================================
   Responsive - Desktop (1024px+)
======================================== */
@media (min-width: 1024px) {
	.header { height: 70px; padding: 0 40px; }
	.header-logo { font-size: 20px; }

	.hero { padding: 140px 40px 100px; }
	.hero h1 { font-size: 42px; }
	.hero p { font-size: 18px; }
	.stat-value { font-size: 28px; }

	.main-content { padding: 60px 40px 100px; }
	.section-title { font-size: 28px; }
	.info-grid { gap: 24px; }
	.info-card { padding: 28px; }
	.info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

	.salary-highlight { padding: 32px; }
	.salary-header h3 { font-size: 22px; }
	.salary-message { padding: 28px 24px; }
	.salary-main-text { font-size: 22px; }
	.salary-main-text strong { font-size: 30px; }

	.benefits-section { padding: 36px 32px; }
	.benefits-grid { gap: 20px; }
	.benefit-card-small { padding: 20px 18px; }
	.benefit-card-small:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
	.benefit-card-small .benefit-detail h4 { font-size: 16px; }
	.benefit-card-small .benefit-detail p { font-size: 14px; }
	.benefit-highlight { padding: 28px 24px; }
	.benefit-highlight:hover { box-shadow: 0 8px 30px rgba(123, 104, 238, 0.15); }
	.benefit-highlight-content h4 { font-size: 20px; }
	.benefit-highlight-desc p { font-size: 15px; }
	.highlight-point { font-size: 14px; padding: 14px 16px; }
	.program-link:hover { background: rgba(123, 104, 238, 0.15); }

	.form-section { padding: 48px; border-radius: 28px; }
	.form-header h2 { font-size: 34px; }
	.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(123, 104, 238, 0.4); }
}

/* ========================================
   iOS Safe Area
======================================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
	.toast { bottom: calc(70% + env(safe-area-inset-bottom)); }
	.back-to-top { bottom: calc(24px + env(safe-area-inset-bottom)); }
}