/**
 * Organic Mr.Teamwork Add-ons - About Us Section Styling
 */

.omtw-about-us-wrapper {
	width: 100%;
	padding: 60px 0;
	background-color: #fafcf9;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #2b3a30;
	box-sizing: border-box;
}

.omtw-about-us-container {
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* ==========================================================================
   1. Section Header (Top Hero Header)
   ========================================================================== */
.omtw-about-us-header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 56px auto;
}

.omtw-about-us-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #e3ede5;
	color: #2d4d38;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
	border: 1px solid #d2e2d5;
}

.omtw-about-us-eyebrow svg,
.omtw-about-us-eyebrow i {
	width: 14px;
	height: 14px;
	font-size: 14px;
	color: #2d4d38;
}

.omtw-about-us-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.25;
	color: #17291e;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
}

.omtw-about-us-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #55685c;
	margin: 0;
	font-weight: 400;
}

/* ==========================================================================
   2. Middle Split Section (Ethos & Purity Stats)
   ========================================================================== */
.omtw-about-us-split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 64px;
}

/* Left Ethos Column */
.omtw-about-us-ethos-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.omtw-about-us-ethos-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 28px;
	font-weight: 700;
	color: #17291e;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.omtw-about-us-ethos-paragraph {
	font-size: 15px;
	line-height: 1.65;
	color: #55685c;
	margin: 0 0 16px 0;
}

.omtw-about-us-ethos-paragraph:last-child {
	margin-bottom: 0;
}

/* Right Stats Card Column */
.omtw-about-us-stats-card {
	background-color: #f5f8f5;
	border: 1px solid #e1ebe2;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.omtw-about-us-stats-card-header {
	margin-bottom: 20px;
}

.omtw-about-us-stats-card-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	color: #17291e;
	margin: 0 0 16px 0;
}

.omtw-about-us-stats-divider {
	border: 0;
	border-top: 1px dashed #cedbcf;
	margin: 0;
	width: 100%;
}

.omtw-about-us-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 24px;
}

.omtw-about-us-stat-box {
	background-color: #ffffff;
	border: 1px solid #e8eee9;
	border-radius: 10px;
	padding: 24px 16px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.omtw-about-us-stat-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.omtw-about-us-stat-value {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 30px;
	font-weight: 700;
	color: #17291e;
	line-height: 1.1;
	margin-bottom: 8px;
}

.omtw-about-us-stat-label {
	font-size: 13px;
	font-weight: 600;
	color: #617468;
	margin: 0;
	line-height: 1.3;
}

/* ==========================================================================
   3. "What Guides Our Work" Standards Grid
   ========================================================================== */
.omtw-about-us-standards-section {
	margin-bottom: 64px;
}

.omtw-about-us-standards-header {
	text-align: center;
	margin-bottom: 40px;
}

.omtw-about-us-standards-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 32px;
	font-weight: 700;
	color: #17291e;
	margin: 0 0 12px 0;
}

.omtw-about-us-standards-subtitle {
	font-size: 15px;
	color: #55685c;
	margin: 0;
}

.omtw-about-us-standards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.omtw-about-us-standard-card {
	background-color: #ffffff;
	border: 1px solid #e6eee7;
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

.omtw-about-us-standard-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	border-color: #cfdec1;
}

.omtw-about-us-standard-card-title {
	font-size: 17px;
	font-weight: 700;
	color: #17291e;
	margin: 0 0 12px 0;
	line-height: 1.35;
}

.omtw-about-us-standard-card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #5a6e62;
	margin: 0;
}

/* ==========================================================================
   4. Dark CTA Footer Banner
   ========================================================================== */
.omtw-about-us-cta-banner {
	background-color: #1f3d2b;
	border-radius: 16px;
	padding: 48px 32px;
	text-align: center;
	color: #ffffff;
	box-shadow: 0 8px 30px rgba(31, 61, 43, 0.15);
	position: relative;
	overflow: hidden;
}

.omtw-about-us-cta-banner-content {
	max-width: 680px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.omtw-about-us-cta-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 14px 0;
	line-height: 1.25;
}

.omtw-about-us-cta-subtitle {
	font-size: 15px;
	line-height: 1.6;
	color: #cfdec1;
	margin: 0 0 28px 0;
	font-weight: 400;
}

.omtw-about-us-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	color: #1f3d2b;
	font-size: 14px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	border: none;
	cursor: pointer;
}

.omtw-about-us-cta-btn:hover {
	background-color: #e8f3ea;
	color: #162e20;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
	.omtw-about-us-split-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.omtw-about-us-standards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.omtw-about-us-title {
		font-size: 32px;
	}

	.omtw-about-us-standards-title,
	.omtw-about-us-cta-title {
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.omtw-about-us-wrapper {
		padding: 40px 0;
	}

	.omtw-about-us-header {
		margin-bottom: 40px;
	}

	.omtw-about-us-title {
		font-size: 26px;
	}

	.omtw-about-us-subtitle {
		font-size: 14px;
	}

	.omtw-about-us-ethos-title {
		font-size: 22px;
	}

	.omtw-about-us-stats-card {
		padding: 24px 16px;
	}

	.omtw-about-us-stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.omtw-about-us-stat-box {
		padding: 16px 10px;
	}

	.omtw-about-us-stat-value {
		font-size: 24px;
	}

	.omtw-about-us-stat-label {
		font-size: 12px;
	}

	.omtw-about-us-standards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.omtw-about-us-cta-banner {
		padding: 36px 20px;
		border-radius: 12px;
	}

	.omtw-about-us-cta-title {
		font-size: 22px;
	}

	.omtw-about-us-cta-subtitle {
		font-size: 14px;
	}
}
