/**
 * CRBNFIX Technology Page CSS
 * Matched 100% to CRBNFIX Core Theme Design System:
 * - Primary Dark Forest Green: #061d10
 * - Light Sage Tint BG: #eef5ef / #f8faf8
 * - Primary Emerald Accent: #18944d
 * - Light Kicker Text: #9bc89a / #4ade80
 * - Headings Light BG: 2rem (32px) 'Outfit'
 * - Headings Dark BG: 35px 'Outfit'
 * - Body / Lead Text: 16px 'Inter'
 */

.crbnfix-tech-widget {
	width: 100%;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #111a13;
	box-sizing: border-box;
}

.crbnfix-tech-widget * {
	box-sizing: border-box;
}

/* Container */
.crbnfix-tech-widget .tech-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* Subheadings / Kickers */
.crbnfix-tech-widget .tech-kicker {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #18944d;
	margin-bottom: 12px;
	display: block;
}

.crbnfix-tech-widget .tech-kicker-light {
	color: #9bc89a;
}

/* Headings Light BG - 2rem (32px) */
.crbnfix-tech-widget .tech-title-light-bg {
	font-family: 'Outfit', 'Inter', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	color: #111a13;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
}

/* Headings Dark BG - 35px */
.crbnfix-tech-widget .tech-title-dark-bg {
	font-family: 'Outfit', 'Inter', sans-serif;
	font-size: 35px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
}

/* Descriptions - 16px */
.crbnfix-tech-widget .tech-desc {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: #4a524d;
	margin: 0 0 16px 0;
}

/* Primary Button */
.crbnfix-tech-widget .tech-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 32px;
	background-color: #18944d;
	color: #ffffff;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(24, 148, 77, 0.3);
}

.crbnfix-tech-widget .tech-btn-primary:hover {
	background-color: #11664c;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(24, 148, 77, 0.4);
}


/* ==========================================================================
   SECTION 1: HERO (LIGHT BG #F8FAF8)
   ========================================================================== */
.tech-sec-hero {
	background-color: #f8faf8;
	padding: 60px 0;
	border-bottom: 1px solid #e0eae2;
}

.tech-hero-grid {
	display: flex;
	gap: 60px;
	align-items: center;
}

.tech-hero-left {
	flex: 0 0 48%;
	max-width: 540px;
}

.tech-hero-right {
	flex: 1;
}

.tech-img-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #eef5ef;
	border: 1px solid #dce8de;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 11;
}

.tech-img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tech-img-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(6, 29, 16, 0.9);
	backdrop-filter: blur(8px);
	color: #ffffff;
	padding: 8px 18px;
	border-radius: 30px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	border: 1px solid rgba(74, 222, 128, 0.3);
}


/* ==========================================================================
   SECTION 2: OUR PROCESS (SOFT SAGE TINT #EEF5EF)
   ========================================================================== */
.tech-sec-process {
	background-color: #eef5ef;
	padding: 90px 0;
	border-top: 1px solid #dce8de;
	border-bottom: 1px solid #dce8de;
}

.tech-header-left {
	text-align: left;
	max-width: 100%;
	margin: 0 0 45px 0;
}

/* Thin Process Line Spine */
.tech-process-spine-flow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.8px;
	color: #111a13;
	margin-top: 8px;
}

.spine-step {
	background: #ffffff;
	border: 1px solid #d0e2d4;
	padding: 8px 16px;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.spine-highlight {
	background: #18944d;
	color: #ffffff;
	border-color: #18944d;
}

.spine-arrow {
	color: #18944d;
	font-size: 18px;
}

.tech-process-grid {
	display: flex;
	gap: 50px;
	align-items: center;
}

.tech-process-list {
	flex: 0 0 52%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.process-step-item {
	background: #ffffff;
	border: 1px solid #d8e5da;
	border-radius: 8px;
	padding: 22px 24px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.process-step-item:hover {
	border-color: #18944d;
	transform: translateX(4px);
}

.step-num {
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 800;
	color: #18944d;
	background: #eef5ef;
	padding: 6px 12px;
	border-radius: 4px;
	flex-shrink: 0;
}

.step-copy h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #111a13;
	margin: 0 0 6px 0;
}

.step-copy p {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.55;
	color: #4a524d;
	margin: 0;
}

.tech-process-media {
	flex: 1;
	align-self: center;
}


/* ==========================================================================
   SECTION 3: ONE PLATFORM (DARK FOREST GREEN #061D10)
   ========================================================================== */
.tech-sec-platform {
	background-color: #061d10;
	padding: 90px 0;
}

.tech-header-center {
	text-align: center;
	max-width: 740px;
	margin: 0 auto 55px auto;
}

.tech-outputs-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.tech-output-card {
	background: #0d2817;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tech-output-card:hover {
	transform: translateY(-6px);
	border-color: #18944d;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.output-img-box {
	aspect-ratio: 16 / 10;
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #11321e;
}

.output-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.tech-output-card:hover .output-img-box img {
	transform: scale(1.06);
}

.output-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(6, 29, 16, 0.85);
	backdrop-filter: blur(4px);
	color: #4ade80;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 1px;
	padding: 4px 10px;
	border-radius: 4px;
	border: 1px solid rgba(74, 222, 128, 0.3);
}

.output-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.output-card-body h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px 0;
	letter-spacing: 0.5px;
}

.output-card-body p {
	font-family: 'Inter', sans-serif;
	font-size: 14.5px;
	line-height: 1.6;
	color: #a3b8a8;
	margin: 0;
}


/* ==========================================================================
   SECTION 4: OUR CAPABILITY (OFF-WHITE #F8FAF8)
   ========================================================================== */
.tech-sec-capability {
	background-color: #f8faf8;
	padding: 90px 0;
	border-top: 1px solid #e0eae2;
	border-bottom: 1px solid #e0eae2;
}

.tech-cap-grid {
	display: flex;
	gap: 50px;
	align-items: center;
}

.tech-cap-pillars {
	flex: 0 0 52%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cap-pillar-card {
	background: #ffffff;
	border: 1px solid #dce8de;
	border-radius: 8px;
	padding: 24px 26px;
	display: flex;
	gap: 24px;
	align-items: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.cap-pillar-card:hover {
	transform: translateY(-4px);
	border-color: #18944d;
}

.cap-metric-val {
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	background: #061d10;
	padding: 12px 18px;
	border-radius: 6px;
	flex-shrink: 0;
	text-align: center;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(6, 29, 16, 0.2);
}

.cap-metric-info h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 800;
	color: #111a13;
	letter-spacing: 0.5px;
	margin: 0 0 4px 0;
}

.cap-metric-info p {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #4a524d;
	margin: 0;
}

.tech-cap-photo {
	flex: 1;
}


/* ==========================================================================
   SECTION 5: OUR CREDIBILITY & MRV (DARK FOREST GREEN #061D10)
   ========================================================================== */
.tech-sec-credibility {
	background-color: #061d10;
	padding: 95px 0;
}

.tech-mrv-spine-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #0d2817;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 40px 32px;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.mrv-step-card {
	flex: 1;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 24px 20px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.mrv-step-card:hover {
	transform: translateY(-4px);
	border-color: #4ade80;
}

.mrv-num {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #4ade80;
	margin-bottom: 10px;
}

.mrv-step-card h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 8px 0;
}

.mrv-step-card p {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.55;
	color: #a3b8a8;
	margin: 0;
}

.mrv-spine-arrow {
	color: #4ade80;
	font-size: 24px;
	flex-shrink: 0;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
	.tech-hero-grid,
	.tech-process-grid,
	.tech-cap-grid {
		flex-direction: column;
		gap: 40px;
	}

	.tech-hero-left,
	.tech-process-list,
	.tech-cap-pillars {
		max-width: 100%;
		flex: none;
		width: 100%;
	}

	.tech-outputs-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.tech-mrv-spine-box {
		flex-direction: column;
		gap: 24px;
	}

	.mrv-spine-arrow {
		transform: rotate(90deg);
	}
}

@media (max-width: 640px) {
	.tech-outputs-grid-3 {
		grid-template-columns: 1fr;
	}

	.tech-sec-hero,
	.tech-sec-process,
	.tech-sec-platform,
	.tech-sec-capability,
	.tech-sec-credibility {
		padding: 55px 0;
	}
}
