.ea-1339-wrapper {
	background: #000000;
	padding: 80px 40px;
	color: #fff;
	font-family: var(--e-global-typography-text-font_family), sans-serif;
	box-sizing: border-box;
}

.ea-1339-wrapper * {
	box-sizing: border-box;
}

.ea-1339-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1400px;
	margin: 0 auto 60px;
	gap: 40px;
}

.ea-1339-header-content {
	flex: 1;
	max-width: 800px;
}

.ea-1339-title {
	font-family: var(--e-global-typography-primary-font_family), serif;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 15px 0;
	color: #fff;
}

.ea-1339-title-highlight {
	color: #C6A85A;
}

.ea-1339-subtitle {
	font-size: 18px;
	line-height: 1.6;
	color: #A0A0A8;
	margin: 0 0 35px 0;
}

.ea-1339-badges-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.ea-1339-badge-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ea-1339-badge-icon {
	color: #C6A85A;
	font-size: 24px;
	margin-bottom: 8px;
}

.ea-1339-badge-icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.ea-1339-badge-text {
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	line-height: 1.3;
}

.ea-1339-circle-badge {
	flex-shrink: 0;
	width: 220px;
	height: 220px;
	border: 2px solid #C6A85A;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.ea-1339-circle-top {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.ea-1339-circle-main {
	font-family: 'Great Vibes', serif; /* Script look fallback */
	font-size: 38px;
	color: #C6A85A;
	line-height: 1;
	margin-bottom: 5px;
}

.ea-1339-circle-bottom {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.3;
}

.ea-1339-circle-bottom small {
	display: block;
	font-weight: 400;
	font-size: 10px;
	margin-top: 5px;
	color: #A0A0A8;
}

/* Cards Grid */
.ea-1339-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto 50px;
}

.ea-1339-card {
	background: #0A0A0A;
	border: 1px solid rgba(198, 168, 90, 0.3);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	transition: transform 0.4s ease, border-color 0.4s ease;
	display: flex;
	flex-direction: column;
}

.ea-1339-card:hover {
	transform: translateY(-10px);
	border-color: rgba(198, 168, 90, 0.8);
}

.ea-1339-card-icon {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 50px;
	height: 50px;
	background: #0A0A0A;
	border: 1px solid #C6A85A;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #C6A85A;
	font-size: 20px;
	z-index: 2;
}

.ea-1339-card-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.ea-1339-card-img {
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.ea-1339-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ea-1339-card:hover .ea-1339-card-img img {
	transform: scale(1.08);
}

.ea-1339-card-content {
	padding: 30px 25px;
	display: flex;
	flex-direction: column;
	flex: 1;
	background: linear-gradient(to bottom, rgba(10,10,10,0.8), #000000);
}

.ea-1339-card-title {
	font-family: var(--e-global-typography-secondary-font_family), sans-serif;
	color: #C6A85A;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 10px 0;
	text-align: center;
}

.ea-1339-card-desc {
	font-size: 14px;
	color: #A0A0A8;
	text-align: center;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

.ea-1339-card-features {
	list-style: none;
	padding: 0;
	margin: auto 0 0 0;
}

.ea-1339-card-features li {
	font-size: 13px;
	color: #fff;
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
}

.ea-1339-card-features li i {
	color: #C6A85A;
	margin-right: 10px;
	margin-top: 3px;
	font-size: 12px;
}

/* Optional Row */
.ea-1339-optional-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto 50px;
}

.ea-1339-opt-box {
	border: 1px solid rgba(198, 168, 90, 0.3);
	border-radius: 8px;
	padding: 15px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 160px;
}

.ea-1339-opt-icon {
	color: #C6A85A;
	font-size: 24px;
	margin-bottom: 10px;
}

.ea-1339-opt-icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.ea-1339-opt-text {
	font-size: 13px;
	color: #fff;
	font-weight: 500;
	line-height: 1.3;
}

/* Footer Area */
.ea-1339-footer-area {
	text-align: center;
}

.ea-1339-cta-row {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.ea-1339-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ea-1339-btn-primary {
	background: #C6A85A;
	color: #000;
}

.ea-1339-btn-primary:hover {
	background: #d4b86a;
	transform: scale(1.05);
}

.ea-1339-btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #C6A85A;
}

.ea-1339-btn-secondary:hover {
	background: rgba(198, 168, 90, 0.1);
	color: #C6A85A;
}

.ea-1339-bottom-text {
	color: #A0A0A8;
	font-size: 15px;
	margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
	.ea-1339-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.ea-1339-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.ea-1339-badges-row {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.ea-1339-wrapper {
		padding: 50px 20px;
	}
	
	.ea-1339-cards-grid {
		grid-template-columns: 1fr;
	}
	
	.ea-1339-cta-row {
		flex-direction: column;
	}
	
	.ea-1339-btn {
		width: 100%;
	}
}