:root {
	--primary: #1e3d6f;
	--secondary: #ff6b35;
	--accent: #4ecdc4;
	--dark: #2c3e50;
	--light: #f8f9fa;
	--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #1e3d6f 0%, #0a2351 100%);
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
	background-size: cover;
	animation: wave 20s linear infinite;
}

@keyframes wave {
	0% { transform: translateX(0) translateY(0); }
	100% { transform: translateX(-50%) translateY(-50px); }
}

.container {
	max-width: 1200px;
	width: auto;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
.container.fixed_header {
	margin-top: unset;
}

.hero-content {
	text-align: center;
	color: white;
	animation: fadeInUp 1s ease-out;
}

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

.badge {
	display: inline-block;
	background: rgba(255, 107, 53, 0.2);
	color: #ff6b35;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 14px;
	margin-bottom: 20px;
	border: 1px solid #ff6b35;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
	background: linear-gradient(45deg, #fff, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
	font-size: 1.4rem;
	margin-bottom: 40px;
	opacity: 0.9;
	font-weight: 300;
}

.cta-group {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
	padding: 18px 40px;
	font-size: 1.1rem;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.cta-primary {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.cta-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Stats Section */
.stats {
	background: #f8f9fa;
	padding: 80px 0;
	position: relative;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.stat-card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient);
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
	font-size: 3rem;
	line-height: 160%;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 10px;
	display: block;
}

.stat-label {
	font-size: 1.1rem;
	color: #666;
}

/* Features Section */
.features {
	padding: 100px 0;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 2.5rem;
	line-height: 160%;
	color: var(--dark);
	margin-bottom: 20px;
	font-weight: 800;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.feature-card {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 40px;
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	opacity: 0;
}

.feature-card:hover::after {
	opacity: 1;
	top: -100%;
	right: -100%;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--dark);
}

.feature-desc {
	color: #666;
	line-height: 1.8;
}

/* Partner Benefits */
.benefits {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 100px 0;
	color: white;
	position: relative;
	overflow: hidden;
}

.benefits::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	top: -150px;
	right: -150px;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-20px) scale(1.1); }
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.benefit-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.benefit-icon {
	font-size: 40px;
	margin-bottom: 20px;
}

.benefit-title {
	font-size: 1.3rem;
	margin-bottom: 10px;
	font-weight: 600;
}

/* Success Stories */
.success {
	padding: 100px 0;
	background: #f8f9fa;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.testimonial-card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
	font-size: 40px;
	color: var(--primary);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	right: 20px;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 20px;
}

.author-info h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.author-info p {
	color: #666;
	font-size: 0.9rem;
}

/* Partner Types */
.partner-types {
	padding: 100px 0;
	background: white;
}

.partner-types .container {
	max-width: 1400px;
}

.types-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
	min-width: 1300px;
}

.types-container {
	overflow-x: auto;
	padding-bottom: 20px;
}

.types-container::-webkit-scrollbar {
	height: 8px;
}

.types-container::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.types-container::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

.types-container::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.type-card {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 20px;
	padding: 40px 25px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.type-card.featured {
	border-color: var(--secondary);
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
	transform: scale(1.05);
	box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.type-card.featured .type-features li {
	color: white;
	border-bottom-color: rgba(255, 255, 255, 0.3);
}

.type-card.featured .type-price {
	color: white;
}

.type-card.featured .type-name {
	color: white;
}

.type-card.featured::before {
	content: '인기';
	position: absolute;
	top: 20px;
	right: -30px;
	background: rgba(255, 255, 255, 0.3);
	color: white;
	padding: 5px 40px;
	transform: rotate(45deg);
	font-size: 14px;
	font-weight: 600;
}

.type-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--primary);
}

.type-name {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 10px;
}

.type-price {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 25px;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.type-features {
	list-style: none;
	margin-bottom: 30px;
	text-align: left;
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
	flex-grow: 1;
}

.type-features li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
}

.type-features li:last-child {
	border-bottom: none;
}

.type-features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: bold;
	margin-right: 10px;
}

/* FAQ Section */
.faq {
	padding: 100px 0;
	background: #f8f9fa;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 20px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--dark);
	transition: all 0.3s ease;
}

.faq-question:hover {
	color: var(--primary);
}

.faq-icon {
	transition: transform 0.3s ease;
	font-size: 20px;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 30px;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 0 30px 25px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

/* CTA Section */
.final-cta {
	background: linear-gradient(135deg, #1e3d6f 0%, #0a2351 100%);
	padding: 100px 0;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 4s ease-in-out infinite;
}

.final-cta h2 {
	font-size: 3rem;
	line-height: 160%;
	margin-bottom: 20px;
	font-weight: 800;
	position: relative;
	z-index: 1;
}

.final-cta p {
	font-size: 1.3rem;
	margin-bottom: 40px;
	opacity: 0.9;
	position: relative;
	z-index: 1;
}

/* Footer */
footer {
	background: #0a2351;
	padding: 40px 0;
	text-align: center;
	color: white;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-links {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-links a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 1;
}

/* Permission Table Styles */
.permission-toggle {
	text-align: center;
}

.toggle-btn {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 1.1rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.toggle-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.toggle-icon {
	transition: transform 0.3s ease;
}

.toggle-btn.active .toggle-icon {
	transform: rotate(180deg);
}

.permission-table-wrapper {
	margin-top: 30px;
	animation: slideDown 0.5s ease-out;
	overflow-x: auto;
}

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

.permission-table {
	background: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow-x: auto;
}

.permission-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 800px;
}

.permission-table th,
.permission-table td {
	padding: 12px 15px;
	text-align: center;
	border: 1px solid #e0e0e0;
}

.permission-table thead {
	background: #f8f9fa;
}

.permission-table th {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
}

.permission-table tbody tr:hover {
	background: #f8f9fa;
}

.permission-table .stage {
	background: #ff6b35;
	color: white;
	font-weight: 600;
	vertical-align: middle;
	width: 100px;
}

.permission-table .stage-desc {
	font-size: 0.85rem;
	font-weight: 400;
}

.permission-table .yes {
	color: #4ecdc4;
	font-weight: bold;
	font-size: 1.2rem;
}

.permission-table .no {
	color: #e74c3c;
	font-weight: bold;
	font-size: 1.2rem;
}

.permission-table .partial {
	color: #f39c12;
	font-weight: bold;
	font-size: 1.2rem;
}

.permission-table .note {
	font-size: 0.75rem;
	font-weight: normal;
	color: #666;
}

.permission-table .sub-text {
	font-size: 0.85rem;
	color: #666;
	font-weight: normal;
}

.table-footer {
	margin-top: 20px;
	text-align: center;
	font-size: 0.95rem;
	color: #666;
}

.table-footer span {
	font-weight: bold;
	margin: 0 5px;
}

.stage-row td:first-child {
	border-top: 2px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	.subtitle {
		font-size: 1.1rem;
	}

	.stats-grid,
	.features-grid,
	.benefit-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.types-grid {
		min-width: 1300px;
	}

	.type-card.featured {
		transform: scale(1);
	}

	.final-cta h2 {
		font-size: 2rem;
	}

	.permission-table {
		padding: 15px;
	}

	.permission-table th,
	.permission-table td {
		padding: 8px 5px;
		font-size: 0.85rem;
	}
}

/* Floating Elements */
.floating-badge {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--secondary);
	color: white;
	padding: 15px 25px;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
	font-weight: 600;
	z-index: 1000;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: bounce 2s ease-in-out infinite;
}

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

.floating-badge:hover {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}