.container_div {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===============================
   HEADER SECTION
=============================== */
.header_div {
	padding: 80px 20px 60px;
	background: linear-gradient(135deg, #fafbff 0%, #f5f6fa 100%);
	position: relative;
}

.header_div::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.badge {
	display: inline-block;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 12px 28px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.3;
	color: #2C3E50;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.highlight-number {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	font-size: 52px;
	line-height: 160%;
}

.subtitle {
	font-size: 20px;
	color: #6b7280;
	line-height: 1.6;
	font-weight: 400;
	max-width: 800px;
}

/* ===============================
   COMPARISON SECTION
=============================== */
.question-section {
	padding: 100px 20px;
	background: #fafbff;
}

.section-title_div {
	text-align: center;
	font-size: 36px;
	line-height: 160%;
	margin-bottom: 70px;
	font-weight: 700;
	color: #2C3E50;
	position: relative;
	letter-spacing: -0.5px;
}

.section-title_div::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669);
	border-radius: 2px;
}

.comparison-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.comparison-card {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 24px;
	padding: 45px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.comparison-card.enhanced {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
	border-color: #10b981;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.comparison-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

.comparison-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ef4444, #f87171);
	border-radius: 24px 24px 0 0;
}

.comparison-card.enhanced::before {
	background: linear-gradient(90deg, #10b981, #34d399);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 35px;
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 160%;
	color: white;
	font-weight: bold;
}

.card-icon.negative {
	background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
	box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

.card-icon.positive {
	background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.card-title {
	font-size: 24px;
	line-height: 160%;
	font-weight: 700;
	color: #2C3E50;
	letter-spacing: -0.3px;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	padding: 15px 0;
	font-size: 18px;
	color: #374151;
	position: relative;
	padding-left: 35px;
	line-height: 1.4;
	font-weight: 500;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list li::before {
	position: absolute;
	left: 0;
	font-weight: bold;
	font-size: 20px;
	line-height: 160%;
	top: 18px;
}

.negative-list li::before {
	content: '✕';
	color: #ef4444;
}

.positive-list li::before {
	content: '✓';
	color: #10b981;
}

/* ===============================
   STATISTICS SECTION
=============================== */
.stats-section {
	padding: 80px 20px;
	background: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.stat-card {
	text-align: center;
	padding: 40px 30px;
	background: linear-gradient(135deg, #fafbff 0%, #f3f4f6 100%);
	border-radius: 20px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.stat-card:hover {
	border-color: rgba(16, 185, 129, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

.stat-number {
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
	line-height: 1.1;
}

.stat-label {
	font-size: 16px;
	color: #6b7280;
	font-weight: 600;
	line-height: 1.4;
}

.stat-sublabel {
	font-size: 14px;
	color: #9ca3af;
	margin-top: 8px;
}

/* ===============================
   SAMPLES SECTION
=============================== */
.samples-section {
	padding: 100px 20px;
	background: #fafbff;
}

.samples-title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 60px;
	position: relative;
	letter-spacing: -0.5px;
	line-height: 1.3;
}

.samples-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669);
	border-radius: 2px;
}

.samples-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 60px;
}

.sample-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.sample-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.sample-image {
	width: 100%;
/*
	height: 180px;
	background: linear-gradient(135deg, #f8f9ff 0%, #f3f4f6 100%);
	border: 2px dashed #d1d5db;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 14px;
	text-align: center;
	padding: 20px;
*/
}

.sample-image img {
	max-width: 100%;
}

.sample-label {
	padding: 15px;
	text-align: center;
	font-weight: 600;
	color: #2C3E50;
	font-size: 14px;
	background: #fafbff;
}

/* ===============================
   AI SECTION
=============================== */
.ai-section {
	padding: 80px 0;
	background: white;
}
.ai-section .container_div {
	padding: 0;
}

.ai-header {
	text-align: center;
	margin-bottom: 50px;
}

.ai-title {
	font-size: 28px;
	line-height: 160%;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 20px;
}

.ai-demo {
/*
	max-width: 800px;
	margin: 0 auto;
	height: 400px;
	background: linear-gradient(135deg, #f8f9ff 0%, #f3f4f6 100%);
	border: 2px dashed #10b981;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #10b981;
	font-size: 18px;
	font-weight: 600;
*/
	border-radius: 20px;
	background: #eeefef;
	text-align: center;
	overflow: hidden;
}

.ai-demo img {
	max-width: 100%;
}

/* ===============================
   FAQ SECTION
=============================== */
.faq-section {
	padding: 100px 20px;
	background: linear-gradient(135deg, #fafbff 0%, #f5f6fa 100%);
}

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

.faq-title {
	font-size: 32px;
	line-height: 160%;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 15px;
}

.faq-grid {
	display: grid;
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border: 2px solid transparent;
	border-radius: 20px;
	padding: 35px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
	border-color: rgba(16, 185, 129, 0.2);
	transform: translateY(-3px);
}

.faq-question {
	font-size: 19px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	line-height: 1.5;
}

.faq-question::before {
	content: 'Q';
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.faq-answer {
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
	padding-left: 43px;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 768px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: 32px;
		line-height: 160%;
	}

	.samples-title {
		font-size: 24px;
		line-height: 160%;
	}

	.comparison-container {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.samples-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.comparison-card,
	.faq-item {
		padding: 25px;
	}
}