/* ========== ABOUT PAGE STYLES ========== */

/* Page Hero / Header Banner */
.page-hero 
{
	position: relative;
	padding: 140px 0 80px;
	background: linear-gradient(165deg, var(--brown-dark) 0%, var(--brown-mid) 50%, var(--brown-warm) 100%);
	overflow: hidden;
	text-align: center;
}

.page-hero::before 
{
	content: '';
	position: absolute;
	top: -30%;
	right: -15%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212, 105, 30, 0.12) 0%, transparent 65%);
	border-radius: 50%;
	pointer-events: none;
}

.page-hero::after 
{
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(200, 152, 44, 0.08) 0%, transparent 65%);
	border-radius: 50%;
	pointer-events: none;
}

.page-hero .container 
{
	position: relative;
	z-index: 2;
}

.page-hero-breadcrumb 
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: rgba(253, 245, 237, 0.5);
	margin-bottom: 24px;
}

.page-hero-breadcrumb a 
{
	color: rgba(253, 245, 237, 0.5);
	transition: var(--transition);
}

.page-hero-breadcrumb a:hover 
{
	color: var(--orange-light);
}

.page-hero-breadcrumb .sep 
{
	font-size: 0.7rem;
	opacity: 0.6;
}

.page-hero h1 
{
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	font-weight: 800;
	color: var(--cream);
	margin-bottom: 18px;
	line-height: 1.2;
}

.page-hero h1 span 
{
	background: linear-gradient(135deg, var(--orange-light), var(--gold-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.page-hero-desc 
{
	font-size: 1.1rem;
	color: rgba(253, 245, 237, 0.7);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.75;
}

.page-hero-logo 
{
	width: 90px;
	height: 90px;
	object-fit: contain;
	margin: 0 auto 24px;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
	animation: fadeInUp 0.8s ease-out;
}


/* ========== ABOUT INTRO / OVERVIEW ========== */
.about-intro 
{
	padding: 90px 0;
	background: var(--white);
}

.about-intro-grid 
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.about-intro-image 
{
	position: relative;
}

.about-intro-image img 
{
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.about-intro-accent 
{
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 160px;
	height: 160px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.about-intro-accent .accent-year 
{
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 800;
}

.about-intro-accent .accent-label 
{
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 2px;
}

.about-intro-content h2 
{
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	margin-bottom: 20px;
}

.about-intro-content .lead-text 
{
	font-size: 1.1rem;
	color: var(--text-body);
	line-height: 1.8;
	margin-bottom: 20px;
}

.about-intro-content .body-text 
{
	font-size: 0.98rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 16px;
}


/* ========== MOTTO / MISSION / VISION ========== */
.about-pillars 
{
	padding: 90px 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
}

.about-pillars-header 
{
	text-align: center;
	max-width: 660px;
	margin: 0 auto 60px;
}

.about-pillars-header .section-label 
{
	justify-content: center;
}

.about-pillars-header .section-label::before 
{
	display: none;
}

.about-pillars-header .section-desc 
{
	margin: 0 auto;
}

.pillars-grid 
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.pillar-card 
{
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pillar-card::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--orange-primary), var(--gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}

.pillar-card:hover 
{
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before 
{
	transform: scaleX(1);
}

.pillar-icon 
{
	width: 70px;
	height: 70px;
	margin: 0 auto 22px;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.08), rgba(212, 105, 30, 0.03));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}

.pillar-card h3 
{
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 14px;
}

.pillar-card p 
{
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.75;
}


/* ========== HISTORY TIMELINE ========== */
.about-history 
{
	padding: 90px 0;
	background: var(--white);
}

.about-history-header 
{
	text-align: center;
	max-width: 660px;
	margin: 0 auto 60px;
}

.about-history-header .section-label 
{
	justify-content: center;
}

.about-history-header .section-label::before 
{
	display: none;
}

.about-history-header .section-desc 
{
	margin: 0 auto;
}

.timeline 
{
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding-left: 40px;
}

.timeline::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 14px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--orange-primary), var(--gold), var(--cream-dark));
}

.timeline-item 
{
	position: relative;
	margin-bottom: 40px;
	padding-left: 36px;
}

.timeline-item:last-child 
{
	margin-bottom: 0;
}

.timeline-dot 
{
	position: absolute;
	left: -33px;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--orange-primary);
	border: 3px solid var(--white);
	box-shadow: 0 0 0 3px rgba(212, 105, 30, 0.2);
}

.timeline-year 
{
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--orange-primary);
	background: rgba(212, 105, 30, 0.08);
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.timeline-item h4 
{
	font-family: 'Source Sans 3', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brown-dark);
	margin-bottom: 6px;
}

.timeline-item p 
{
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.7;
}


/* ========== OBJECTIVES / VALUES ========== */
.about-objectives 
{
	padding: 90px 0;
	background: var(--brown-dark);
	position: relative;
	overflow: hidden;
}

.about-objectives::before 
{
	content: '';
	position: absolute;
	top: -40%;
	right: -15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 105, 30, 0.07) 0%, transparent 60%);
	border-radius: 50%;
}

.about-objectives-header 
{
	text-align: center;
	max-width: 660px;
	margin: 0 auto 60px;
	position: relative;
	z-index: 2;
}

.about-objectives-header .section-label 
{
	color: var(--gold-light);
	justify-content: center;
}

.about-objectives-header .section-label::before 
{
	background: var(--gold-light);
	display: none;
}

.about-objectives-header .section-title 
{
	color: var(--cream);
}

.about-objectives-header .section-desc 
{
	color: rgba(253, 245, 237, 0.6);
	margin: 0 auto;
}

.objectives-grid 
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.objective-card 
{
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: rgba(253, 245, 237, 0.04);
	border: 1px solid rgba(253, 245, 237, 0.06);
	border-radius: var(--radius-md);
	padding: 28px;
	transition: var(--transition);
}

.objective-card:hover 
{
	background: rgba(253, 245, 237, 0.07);
	transform: translateY(-3px);
}

.objective-num 
{
	min-width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--white);
}

.objective-card h4 
{
	font-family: 'Source Sans 3', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 6px;
}

.objective-card p 
{
	font-size: 0.88rem;
	color: rgba(253, 245, 237, 0.55);
	line-height: 1.65;
}


/* ========== LEADERSHIP / GOVERNANCE ========== */
.about-leadership 
{
	padding: 90px 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
}

.about-leadership-header 
{
	text-align: center;
	max-width: 660px;
	margin: 0 auto 60px;
}

.about-leadership-header .section-label 
{
	justify-content: center;
}

.about-leadership-header .section-label::before 
{
	display: none;
}

.about-leadership-header .section-desc 
{
	margin: 0 auto;
}

.leadership-grid 
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.leader-card 
{
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(43, 24, 16, 0.04);
	text-align: center;
}

.leader-card:hover 
{
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

/*
.leader-photo 
{
	width: 100%;
	height: 220px;
	background: linear-gradient(160deg, var(--cream-dark), #E8CDAF);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	color: var(--text-muted);
	opacity: 0.4;
}
*/

.leader-photo 
{
	width: 100%;
	height: 220px;
	background: linear-gradient(160deg, var(--cream-dark), #E8CDAF);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	color: var(--text-muted);
	overflow: hidden;
}

.leader-photo img 
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.leader-info 
{
	padding: 22px 18px;
}

.leader-info h4 
{
	font-family: 'Source Sans 3', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brown-dark);
	margin-bottom: 4px;
}

.leader-info .leader-role 
{
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--orange-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.leader-info .leader-set 
{
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 4px;
}


/* ========== CTA BANNER ========== */
.about-cta 
{
	padding: 80px 0;
	background: var(--orange-primary);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.about-cta::before 
{
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-cta .container 
{
	position: relative;
	z-index: 2;
}

.about-cta h2 
{
	color: var(--white);
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	margin-bottom: 16px;
}

.about-cta p 
{
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

.about-cta-btns 
{
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}


/* ========== HISTORY PROSE CONTENT ========== */
.history-prose 
{
	max-width: 860px;
	margin: 0 auto 70px;
}

.history-prose-header 
{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
}

.history-prose-header-icon 
{
	width: 52px;
	height: 52px;
	min-width: 52px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--white);
}

.history-prose-header h3 
{
	font-size: clamp(1.4rem, 3vw, 1.75rem);
	font-weight: 700;
	color: var(--brown-dark);
	line-height: 1.3;
}

.history-prose p 
{
	font-size: 0.96rem;
	color: var(--text-body);
	line-height: 1.85;
	margin-bottom: 18px;
}

.history-prose p:last-child 
{
	margin-bottom: 0;
}

.history-prose-section 
{
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 36px 40px;
	margin-bottom: 28px;
	border: 1px solid rgba(43, 24, 16, 0.04);
}

.history-prose-section:last-child 
{
	margin-bottom: 0;
}

.history-prose-section h4 
{
	font-family: 'Source Sans 3', sans-serif;
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--brown-dark);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 14px;
	margin-bottom: 22px;
	border-bottom: 2px solid var(--orange-primary);
	display: flex;
	align-items: center;
	gap: 10px;
}

.history-prose-section h4 .h4-icon 
{
	font-style: normal;
	font-size: 1.15rem;
}

.history-prose-section p 
{
	font-size: 0.94rem;
	color: var(--text-body);
	line-height: 1.85;
	margin-bottom: 16px;
}

.history-prose-section p:last-child 
{
	margin-bottom: 0;
}

/* Styled ordered lists inside prose sections */
.history-prose-section ol 
{
	counter-reset: prose-list;
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
}

.history-prose-section ol li 
{
	counter-increment: prose-list;
	position: relative;
	padding: 12px 16px 12px 52px;
	margin-bottom: 8px;
	font-size: 0.92rem;
	color: var(--text-body);
	line-height: 1.7;
	background: var(--white);
	border-radius: var(--radius-sm);
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
}

.history-prose-section ol li:hover 
{
	box-shadow: var(--shadow-soft);
	transform: translateX(4px);
}

.history-prose-section ol li::before 
{
	content: counter(prose-list);
	position: absolute;
	left: 14px;
	top: 12px;
	width: 26px;
	height: 26px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.history-prose-section ol li:last-child 
{
	margin-bottom: 0;
}

/* Alpha-style ordered lists */
.history-prose-section ol.alpha-list 
{
	counter-reset: alpha-list;
}

.history-prose-section ol.alpha-list li 
{
	counter-increment: alpha-list;
	padding-left: 48px;
}

.history-prose-section ol.alpha-list li::before 
{
	content: counter(alpha-list, lower-alpha);
	width: 24px;
	height: 24px;
	font-size: 0.72rem;
	background: linear-gradient(135deg, var(--gold), var(--gold-light));
	color: var(--brown-dark);
}

.history-prose-section .prose-note 
{
	font-size: 0.92rem;
	color: var(--text-muted);
	font-style: italic;
	margin: 20px 0;
	padding: 16px 20px;
	background: rgba(212, 105, 30, 0.04);
	border-left: 3px solid var(--orange-primary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.history-prose-section .prose-cta 
{
	font-size: 0.95rem;
	color: var(--text-body);
	font-weight: 500;
	margin-top: 20px;
	padding: 18px 24px;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.06), rgba(200, 152, 44, 0.06));
	border-radius: var(--radius-md);
	text-align: center;
	line-height: 1.7;
}


/* Info highlight cards grid (Networking, Career, Benefits, Giving Back) */
.history-highlights-grid 
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-top: 36px;
}

.history-highlight-card 
{
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 30px 28px;
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.history-highlight-card::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange-primary), var(--gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}

.history-highlight-card:hover 
{
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.history-highlight-card:hover::before 
{
	transform: scaleX(1);
}

.history-highlight-card-icon 
{
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.08), rgba(212, 105, 30, 0.03));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 16px;
}

.history-highlight-card h4 
{
	font-family: 'Source Sans 3', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brown-dark);
	margin-bottom: 8px;
}

.history-highlight-card p 
{
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.7;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) 
{
	.about-intro-grid { grid-template-columns: 1fr; gap: 50px; }
	.pillars-grid { grid-template-columns: repeat(2, 1fr); }
	.objectives-grid { grid-template-columns: 1fr; }
	.leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) 
{
	.nav-links, .nav-cta { display: none; }
	.hamburger { display: flex; }
	.page-hero { padding: 120px 0 60px; }
	.pillars-grid { grid-template-columns: 1fr; }
	.leadership-grid { grid-template-columns: 1fr; }
	.about-intro-accent { width: 130px; height: 130px; bottom: -12px; right: -8px; }
	.about-intro-accent .accent-year { font-size: 1.6rem; }
	.timeline { padding-left: 30px; }
	.timeline-item { padding-left: 28px; }
	.timeline-dot { left: -24px; }
	.history-prose-section { padding: 28px 24px; }
	.history-highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) 
{
	.objectives-grid { gap: 16px; }
	.objective-card { padding: 20px; flex-direction: column; gap: 12px; }
	.history-prose-section { padding: 22px 18px; }
	.history-prose-section ol li { padding-left: 46px; }
}


/* ========== FEATURES DETAIL PAGE ========== */

.features-detail 
{
	padding: 60px 0;
	background: var(--white);
}

.features-detail-alt 
{
	background: var(--cream);
}

.features-detail-block 
{
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 40px;
	align-items: flex-start;
	max-width: 920px;
	margin: 0 auto;
}

.features-detail-block-reverse .features-detail-icon-area 
{
	order: 0;
}

.features-detail-icon-area 
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: sticky;
	top: 100px;
}

.features-detail-icon 
{
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.08), rgba(212, 105, 30, 0.03));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	border: 1px solid rgba(212, 105, 30, 0.08);
}

.features-detail-num 
{
	font-family: 'Playfair Display', serif;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--orange-primary);
	background: rgba(212, 105, 30, 0.08);
	padding: 4px 14px;
	border-radius: 20px;
	letter-spacing: 0.5px;
}

.features-detail-content h3 
{
	font-size: clamp(1.4rem, 3vw, 1.7rem);
	font-weight: 700;
	color: var(--brown-dark);
	margin-bottom: 16px;
	line-height: 1.3;
}

.features-detail-lead 
{
	font-size: 1.05rem;
	color: var(--text-body);
	line-height: 1.8;
	margin-bottom: 14px;
}

.features-detail-content > p 
{
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 28px;
}

.features-detail-highlights 
{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.features-detail-highlight 
{
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--cream);
	border-radius: var(--radius-md);
	padding: 20px 22px;
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
}

.features-detail-alt .features-detail-highlight 
{
	background: var(--white);
}

.features-detail-highlight:hover 
{
	transform: translateX(6px);
	box-shadow: var(--shadow-soft);
}

.features-detail-highlight-icon 
{
	font-size: 1.3rem;
	min-width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.08), rgba(212, 105, 30, 0.03));
	border-radius: 8px;
	margin-top: 2px;
}

.features-detail-highlight strong 
{
	display: block;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--brown-dark);
	margin-bottom: 3px;
}

.features-detail-highlight p 
{
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}


/* Features Stats Grid */
.features-stats-grid 
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.features-stat-card 
{
	text-align: center;
	background: rgba(253, 245, 237, 0.05);
	border: 1px solid rgba(253, 245, 237, 0.08);
	border-radius: var(--radius-md);
	padding: 32px 20px;
	transition: var(--transition);
}

.features-stat-card:hover 
{
	background: rgba(253, 245, 237, 0.08);
	transform: translateY(-4px);
}

.features-stat-number 
{
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--orange-light);
	margin-bottom: 6px;
}

.features-stat-label 
{
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(253, 245, 237, 0.55);
	letter-spacing: 0.5px;
}


/* ========== FEATURES PAGE RESPONSIVE ========== */
@media (max-width: 768px) 
{
	.features-detail { padding: 40px 0; }

	.features-detail-block 
	{
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.features-detail-icon-area 
	{
		flex-direction: row;
		position: static;
		justify-content: flex-start;
	}

	.features-detail-icon 
	{
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.features-stats-grid 
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 480px) 
{
	.features-stats-grid 
	{
		grid-template-columns: 1fr 1fr;
	}

	.features-stat-card 
	{
		padding: 24px 14px;
	}

	.features-stat-number 
	{
		font-size: 1.8rem;
	}
}