/* Trang Chủ Tùy Chỉnh - Layout Cố Định */
/* Style Guide: Xanh Navy (#1a365d, #2c5282) và Vàng (#fbbf24, #f59e0b), Font Sans-serif */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Force visibility for all sections */
.custom-homepage-full-width section {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.custom-homepage-full-width {
	padding: 0 !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
	width: 100% !important;
	max-width: 100% !important;
	overflow-x: hidden !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 1 !important;
}

/* Full Width Container */
.container-full-width {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.container-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 768px) {
	.container-content {
		padding: 0 15px;
	}
}

/* Color Variables */
:root {
	--navy-dark: #1a365d;
	--navy-medium: #2c5282;
	--navy-light: #4299e1;
	--yellow-primary: #fbbf24;
	--yellow-dark: #f59e0b;
	--white: #ffffff;
	--gray-light: #f7fafc;
	--gray-medium: #e2e8f0;
	--gray-dark: #4a5568;
	--text-dark: #1a202c;
}

/* SECTION 1: HERO SECTION */
.home-hero-section {
	position: relative !important;
	padding: 120px 0 !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-color: var(--navy-dark) !important;
	color: var(--white) !important;
	width: 100% !important;
	min-height: 700px !important;
	display: flex !important;
	align-items: center !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.home-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(26, 54, 93, 0.95) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(15, 23, 42, 0.95) 100%);
	z-index: 1;
}

.hero-wrapper {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	width: 100%;
}

.hero-left-panel {
	color: var(--white);
}

.hero-headline {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 25px;
	color: var(--white);
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}

.hero-subheadline {
	font-size: 18px;
	margin-bottom: 40px;
	color: var(--white);
	opacity: 0.95;
	line-height: 1.7;
	font-weight: 400;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	text-decoration: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
}

.hero-button i {
	font-size: 18px;
}

.hero-button-white {
	background-color: var(--white);
	color: var(--navy-dark);
}

.hero-button-white:hover {
	background-color: var(--gray-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
	color: var(--navy-dark);
	text-decoration: none;
}

.hero-button-blue {
	background-color: var(--navy-medium);
	color: var(--white);
}

.hero-button-blue:hover {
	background-color: var(--navy-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
	color: var(--white);
	text-decoration: none;
}

/* Right Panel: Image with Statistics */
.hero-right-panel {
	position: relative;
}

.hero-image-frame {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.hero-image-frame img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.hero-stat-overlay {
	position: absolute;
	padding: 20px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.hero-stat-top-right {
	top: 20px;
	right: 20px;
	background-color: var(--navy-medium);
	color: var(--white);
}

.hero-stat-bottom-left {
	bottom: 20px;
	left: 20px;
	background-color: var(--white);
	color: var(--navy-dark);
}

.hero-stat-overlay .stat-number {
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.hero-stat-overlay .stat-label {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
	line-height: 1.3;
}

/* SECTION 1.5: GIỚI THIỆU VỀ MAXCOM */
.home-about-section {
	padding: 120px 0;
	background-color: var(--white);
	width: 100%;
	position: relative;
	overflow: hidden;
}

.about-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-left-panel {
	position: relative;
}

.about-right-panel {
	color: var(--text-dark);
	padding-left: 20px;
}

.about-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 24px;
	color: var(--navy-dark);
	text-transform: uppercase;
	letter-spacing: -1px;
	line-height: 1.15;
}

.about-subtitle {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 28px;
	color: var(--text-dark);
	line-height: 1.4;
	letter-spacing: -0.3px;
}

.about-content {
	font-size: 17px;
	line-height: 1.85;
	color: #6b7280;
	margin-bottom: 40px;
	font-weight: 400;
}

.about-content p {
	margin-bottom: 18px;
}

.about-content p:last-child {
	margin-bottom: 0;
}

.about-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 36px;
	background-color: var(--navy-dark);
	color: var(--white);
	text-decoration: none;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	letter-spacing: 0.2px;
}

.about-button i {
	font-size: 16px;
	transition: transform 0.3s ease;
	margin-left: 2px;
}

.about-button:hover {
	background-color: var(--navy-medium);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(26, 54, 93, 0.25);
	color: var(--white);
	text-decoration: none;
}

.about-button:hover i {
	transform: translateX(6px);
}

.about-image-frame {
	position: relative;
	border-radius: 20px;
	overflow: visible;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	background-color: var(--gray-light);
	z-index: 1;
}

.about-image-frame img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 20px;
	position: relative;
	z-index: 2;
}

/* Decorative Overlays */
.about-overlay {
	position: absolute;
	border-radius: 50%;
	z-index: 3;
	pointer-events: none;
}

.about-overlay-top-right {
	width: 200px;
	height: 200px;
	top: -60px;
	right: -60px;
	background: linear-gradient(135deg, rgba(147, 197, 253, 0.4) 0%, rgba(191, 219, 254, 0.3) 100%);
	filter: blur(40px);
	opacity: 0.8;
}

.about-overlay-bottom-left {
	width: 180px;
	height: 180px;
	bottom: -50px;
	left: -50px;
	background: linear-gradient(135deg, rgba(94, 234, 212, 0.35) 0%, rgba(153, 246, 228, 0.25) 100%);
	filter: blur(35px);
	opacity: 0.7;
}

@media (max-width: 1024px) {
	.home-about-section {
		padding: 100px 0;
	}
	
	.about-wrapper {
		gap: 50px;
	}
	
	.about-title {
		font-size: 40px;
	}
	
	.about-subtitle {
		font-size: 20px;
	}
	
	.about-overlay-top-right {
		width: 150px;
		height: 150px;
		top: -40px;
		right: -40px;
	}
	
	.about-overlay-bottom-left {
		width: 130px;
		height: 130px;
		bottom: -35px;
		left: -35px;
	}
}

@media (max-width: 768px) {
	.home-about-section {
		padding: 80px 0;
	}
	
	.about-wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.about-left-panel {
		order: 1;
		margin-bottom: 30px;
	}
	
	.about-right-panel {
		order: 2;
		padding-left: 0;
	}
	
	.about-title {
		font-size: 36px;
		margin-bottom: 20px;
	}
	
	.about-subtitle {
		font-size: 18px;
		margin-bottom: 24px;
	}
	
	.about-content {
		font-size: 16px;
		margin-bottom: 35px;
	}
	
	.about-button {
		padding: 14px 30px;
		font-size: 16px;
	}
	
	.about-overlay-top-right {
		width: 120px;
		height: 120px;
		top: -30px;
		right: -30px;
	}
	
	.about-overlay-bottom-left {
		width: 100px;
		height: 100px;
		bottom: -25px;
		left: -25px;
	}
}

/* SECTION 2: BENTO GRID */
.home-bento-section {
	padding: 100px 0;
	background-color: #f0f4f8;
	width: 100%;
	position: relative;
}

.bento-section-title {
	font-size: 42px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 15px;
	color: var(--navy-dark);
	text-transform: uppercase;
	letter-spacing: -0.5px;
	position: relative;
	place-items: center;
}

.home-bento-section::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: var(--yellow-primary);
	z-index: 1;
}

.bento-section-subtitle {
	font-size: 18px;
	text-align: center;
	margin-bottom: 60px;
	color: var(--gray-dark);
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.bento-item {
	position: relative;
	padding: 50px 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	min-height: 320px;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}

.bento-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Card 1: Dark Blue */
.bento-item-1 {
	background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
	color: var(--white);
}

/* Card 2: Light Yellow/Cream */
.bento-item-2 {
	background-color: #fef3c7;
	color: var(--text-dark);
}

/* Card 3: White */
.bento-item-3 {
	background-color: var(--white);
	color: var(--text-dark);
}

/* Card 4: Bright Yellow/Orange */
.bento-item-4 {
	background-color: #fbbf24;
	color: var(--text-dark);
}

.bento-content {
	width: 100%;
}

.bento-icon-wrapper {
	margin-bottom: 25px;
}

.bento-icon-square {
	width: 70px;
	height: 70px;
	background-color: var(--yellow-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.bento-icon-square i {
	font-size: 32px;
	color: var(--white);
}

.bento-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.bento-item-1 .bento-title {
	color: var(--white);
}

.bento-item-2 .bento-title,
.bento-item-3 .bento-title,
.bento-item-4 .bento-title {
	color: var(--text-dark);
}

.bento-slogan {
	font-size: 16px;
	font-weight: 600;
	color: var(--yellow-primary);
	margin-bottom: 18px;
	line-height: 1.4;
}

.bento-description {
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

.bento-item-1 .bento-description {
	color: var(--white);
	opacity: 0.95;
}

.bento-item-2 .bento-description,
.bento-item-3 .bento-description,
.bento-item-4 .bento-description {
	color: var(--gray-dark);
}

/* SECTION 3: GIẢI PHÁP TOÀN DIỆN CHO MỌI CẤP ĐỘ GIÁO DỤC */
.home-education-section {
	padding: 100px 0;
	background-color: var(--white);
	width: 100%;
	position: relative;
}

.section-title {
	font-size: 42px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 20px;
	color: var(--navy-dark);
	text-transform: uppercase;
	letter-spacing: -0.5px;
	position: relative;
	place-items: center;
}

.home-education-section::before,
.home-products-section::before,
.home-news-section::before,
.home-trust-section::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: var(--yellow-primary);
	z-index: 1;
}

.section-subtitle {
	font-size: 18px;
	font-weight: 400;
	color: var(--gray-dark);
	text-align: center;
	margin-bottom: 50px;
	line-height: 1.6;
	opacity: 0.85;
}

.education-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.education-card {
	padding: 40px 35px;
	border-radius: 16px;
	transition: all 0.3s ease;
	position: relative;
}

.education-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Default colors for cards */
.education-card-1 {
	background-color: #e0f2fe;
}

.education-card-2 {
	background-color: #d1fae5;
}

.education-card-3 {
	background-color: #e9d5ff;
}

.education-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.education-card-1 .education-card-icon {
	background-color: var(--navy-dark);
	color: var(--white);
}

.education-card-2 .education-card-icon {
	background-color: #10b981;
	color: var(--white);
}

.education-card-3 .education-card-icon {
	background-color: #8b5cf6;
	color: var(--white);
}

.education-card-icon i {
	font-size: 28px;
}

.education-card-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--navy-dark);
	margin-bottom: 16px;
	line-height: 1.3;
}

.education-card-description {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gray-dark);
	margin-bottom: 24px;
}

.education-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.education-card-1 .education-card-link {
	color: var(--navy-dark);
}

.education-card-2 .education-card-link {
	color: #10b981;
}

.education-card-3 .education-card-link {
	color: #8b5cf6;
}

.education-card-link i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.education-card-link:hover {
	text-decoration: none;
	gap: 12px;
}

.education-card-link:hover i {
	transform: translateX(5px);
}

@media (max-width: 1024px) {
	.education-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.education-cards-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 40px;
	}
	
	.education-card {
		padding: 30px 25px;
	}
	
	.education-card-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 20px;
	}
	
	.education-card-icon i {
		font-size: 24px;
	}
	
	.education-card-title {
		font-size: 22px;
	}
	
	.education-card-description {
		font-size: 15px;
	}
}

.ai-point-icon {
	font-size: 56px;
	color: var(--yellow-primary);
	margin-bottom: 25px;
}

.ai-point-icon i {
	display: inline-block;
}

.ai-point-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--navy-dark);
}

.ai-point-description {
	font-size: 16px;
	color: var(--gray-dark);
	line-height: 1.7;
	margin: 0;
}

/* SECTION 4: CON SỐ BIẾT NÓI */
.home-stats-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
	color: var(--white);
	width: 100%;
}

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

.stat-item {
	text-align: center;
	padding: 30px;
}

.stat-icon {
	font-size: 48px;
	color: var(--yellow-primary);
	margin-bottom: 20px;
}

.stat-icon i {
	display: inline-block;
}

.stat-number {
	font-size: 56px;
	font-weight: 800;
	color: var(--yellow-primary);
	margin-bottom: 10px;
	line-height: 1;
}

.stat-label {
	font-size: 18px;
	color: var(--white);
	opacity: 0.95;
	line-height: 1.5;
}

/* SECTION 5: SẢN PHẨM CHIẾN LƯỢC */
.home-products-section {
	padding: 100px 0;
	background-color: var(--white);
	width: 100%;
	position: relative;
}

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

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

.product-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
	position: relative;
	overflow: hidden;
	height: 280px;
	background-color: var(--gray-medium);
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
	transform: scale(1.05);
}

.product-category {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 6px 14px;
	background-color: var(--yellow-primary);
	color: var(--navy-dark);
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
}

.product-item:nth-child(2) .product-category {
	background-color: #93c5fd;
	color: var(--navy-dark);
}

.product-content {
	padding: 25px;
}

.product-name {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--navy-dark);
	line-height: 1.4;
}

.product-name a {
	color: var(--navy-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-name a:hover {
	color: var(--navy-medium);
	text-decoration: none;
}

.product-highlight {
	font-size: 15px;
	color: var(--gray-dark);
	line-height: 1.7;
	margin-bottom: 20px;
}

.product-read-more {
	display: inline-block;
	color: #f97316;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.product-read-more:hover {
	color: #ea580c;
	text-decoration: none;
	transform: translateX(5px);
}

/* SECTION 6: TIN TỨC & CHUYÊN GIA */
.home-news-section {
	padding: 100px 0;
	background-color: var(--white);
	width: 100%;
	position: relative;
}

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

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

.news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-image {
	overflow: hidden;
	height: 220px;
	background-color: var(--gray-medium);
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
	transform: scale(1.05);
}

.news-content {
	padding: 25px;
}

.news-category {
	display: inline-block;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--white);
}

.news-category-1 {
	background-color: var(--navy-dark);
}

.news-category-2 {
	background-color: #f97316;
}

.news-category-3 {
	background-color: var(--navy-dark);
}

.news-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--navy-dark);
	line-height: 1.5;
}

.news-title a {
	color: var(--navy-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-title a:hover {
	color: var(--navy-medium);
	text-decoration: none;
}

.news-excerpt {
	font-size: 14px;
	color: var(--gray-dark);
	line-height: 1.7;
	margin-bottom: 20px;
}

.news-read-more {
	display: inline-block;
	color: #f97316;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-read-more:hover {
	color: #ea580c;
	text-decoration: none;
	transform: translateX(5px);
}

/* SECTION 7: CHỨNG NHẬN & CAM KẾT */
.home-trust-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #00407d 0%, #0054A5 100%);
	width: 100%;
	color: var(--white);
	text-align: center;
	position: relative;
}

.trust-icon-wrapper {
	margin-bottom: 30px;
	place-items: center;
}

.trust-icon {
	display: inline-block;
	width: 80px;
	height: 80px;
	background-color: var(--yellow-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
	animation: pulse 2s infinite;
}

.trust-icon i {
	font-size: 40px;
	color: var(--navy-dark);
}

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

.trust-title {
	color: var(--white);
	margin-bottom: 25px;
	place-items: center;
}

.trust-content {
	max-width: 900px;
	margin: 0 auto 50px;
	font-size: 17px;
	color: var(--white);
	opacity: 0.95;
	line-height: 1.8;
	text-align: center;
}

.trust-content p {
	margin-bottom: 15px;
}

.trust-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.trust-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease;
}

.trust-button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--yellow-primary);
	transform: translateY(-5px);
	text-decoration: none;
}

.trust-button i {
	font-size: 32px;
	margin-bottom: 8px;
	color: var(--white);
}

.trust-button span {
	font-size: 12px;
	font-weight: 600;
	color: var(--white);
}

.trust-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 50px;
}

.trust-logo-item {
	opacity: 0.7;
	transition: opacity 0.3s ease;
	filter: grayscale(100%);
}

.trust-logo-item:hover {
	opacity: 1;
	filter: grayscale(0%);
}

.trust-logo-item img {
	max-height: 60px;
	width: auto;
	object-fit: contain;
}


/* Responsive Design */
@media (max-width: 1024px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}
	
	.bento-section-title {
		font-size: 36px;
	}
	
}

@media (max-width: 1024px) {
	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hero-right-panel {
		order: -1;
	}
}

@media (max-width: 768px) {
	.home-hero-section {
		padding: 80px 0;
		min-height: auto;
	}
	
	.hero-headline {
		font-size: 32px;
	}
	
	.hero-subheadline {
		font-size: 16px;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	
	.hero-button {
		width: 100%;
		justify-content: center;
	}
	
	.hero-stat-overlay {
		padding: 15px 20px;
	}
	
	.hero-stat-overlay .stat-number {
		font-size: 28px;
	}
	
	.hero-stat-overlay .stat-label {
		font-size: 12px;
	}
	
	.hero-stat-top-right,
	.hero-stat-bottom-left {
		top: 15px;
		right: 15px;
		bottom: auto;
		left: auto;
	}
	
	.hero-stat-bottom-left {
		top: auto;
		bottom: 15px;
		left: 15px;
		right: auto;
	}
	
	.section-title {
		font-size: 32px;
		place-items: center;
	}
	
	.section-subtitle {
		font-size: 16px;
		margin-bottom: 40px;
	}
	
	.home-hero-section,
	.home-bento-section,
	.home-ai-power-section,
	.home-stats-section,
	.home-products-section,
	.home-news-section,
	.home-trust-section {
		padding: 60px 0;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.stat-number {
		font-size: 42px;
	}
	
	.products-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-headline {
		font-size: 28px;
	}
	
	.hero-subheadline {
		font-size: 16px;
	}
	
	.section-title {
		font-size: 26px;
	}
	
	.section-subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}
	
	.trust-buttons {
		gap: 15px;
	}
	
	.trust-button {
		width: 80px;
		height: 80px;
	}
	
	.trust-button i {
		font-size: 24px;
	}
	
	.bento-item,
	.ai-point-item {
		padding: 30px 20px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-number {
		font-size: 36px;
	}
	
	.home-custom-footer {
		padding: 40px 0;
	}
}
