/* ═══════════════════════════════════════════════════════════
   UI GreenMetric – Sustainable Corporate Rankings Module
   ═══════════════════════════════════════════════════════════ */

/* ── Split Hero Layout ──────────────────────────────────── */
.corporate-hero-wrapper {
	display: flex;
	flex-direction: row;
	min-height: calc(100vh - 125px);
	/* Offset header height */
	background-color: #ffffff;
	overflow: hidden;
	position: relative;
}

.corporate-hero-left {
	flex: 0 0 52%;
	padding: 5rem 6% 5rem 8%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 10;
	background-color: #ffffff;
}

.corporate-hero-right {
	flex: 0 0 48%;
	/* Adjust to balance with left column */
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
}

.corporate-hero-right::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(23, 68, 41, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%);
	z-index: 1;
}

/* ── Hero Content Elements ──────────────────────────────── */
.corp-eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--green-600);
	margin-bottom: 1.25rem;
}

.corp-hero-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 3.5rem;
	line-height: 1.15;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1.5rem;
}

.corp-hero-title span {
	display: block;
}

.corp-hero-title .highlight {
	color: var(--green-600);
}

.corp-hero-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}

.corp-hero-desc {
	font-family: 'Raleway', sans-serif;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--gray-700);
	margin-bottom: 3rem;
	max-width: 600px;
}

/* ── Hero Buttons ────────────────────────────────────────── */
.corp-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.btn-corp {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	text-decoration: none;
}

.btn-corp svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.btn-corp-primary {
	background-color: var(--green-900);
	color: #ffffff;
	border: 2px solid var(--green-900);
	box-shadow: 0 4px 14px rgba(23, 68, 41, 0.2);
}

.btn-corp-primary:hover {
	background-color: var(--green-600);
	border-color: var(--green-600);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(31, 90, 55, 0.3);
}

.btn-corp-primary:hover svg {
	transform: translateX(3px);
}

.btn-corp-outline-green {
	background-color: transparent;
	color: var(--green-500);
	border: 2px solid var(--green-500);
}

.btn-corp-outline-green:hover {
	background-color: var(--green-500);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(47, 125, 77, 0.2);
}

.btn-corp-outline-gray {
	background-color: transparent;
	color: var(--gray-700);
	border: 2px solid var(--gray-700);
}

.btn-corp-outline-gray:hover {
	background-color: var(--gray-700);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(75, 85, 99, 0.15);
}

.btn-corp-outline-gray:hover svg {
	transform: translateX(3px);
}

/* ── Feature Highlights Grid ────────────────────────────── */
.corp-features-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: auto;
	border-top: 1px solid #e2e8f0;
	padding-top: 2rem;
}

.corp-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.corp-feature-icon-wrap {
	flex-shrink: 0;
	position: relative;
	width: 44px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-500);
}

.corp-feature-icon-wrap svg.hexagon-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	fill: #f0f7f2;
	stroke: var(--green-100);
	stroke-width: 1.5;
	z-index: 1;
	transition: all 0.3s ease;
}

.corp-feature-icon-wrap svg.feature-icon {
	position: relative;
	width: 20px;
	height: 20px;
	z-index: 2;
	stroke: var(--green-600);
}

.corp-feature-card:hover .corp-feature-icon-wrap svg.hexagon-bg {
	fill: #e1efe5;
	stroke: var(--green-500);
	transform: scale(1.05);
}

.corp-feature-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.corp-feature-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--green-900);
}

.corp-feature-desc {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--gray-700);
	line-height: 1.3;
}

/* ── Glassmorphism Map Card ────────────────────────────── */
.glass-map-card {
	position: relative;
	width: 100%;
	max-width: 480px;
	/* Tweak horizontal alignment here if needed */
	margin-left: 0%;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 2.25rem;
	color: #ffffff;
	z-index: 5;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

.glass-card-tabs {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding-bottom: 1rem;
}

.glass-tab-item {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.85);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-tab-item svg {
	width: 22px;
	height: 22px;
	stroke-width: 1.8;
}

.glass-tab-item:hover,
.glass-tab-item.active {
	background: rgba(255, 255, 255, 0.2);
	border-color: #ffffff;
	color: #ffffff;
	transform: translateY(-2px);
}

.glass-tab-item img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.glass-map-container {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 0;
}

.glass-map-svg {
	width: 95%;
	height: auto;
	filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.glass-card-footer {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-footer-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.glass-progress-row {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.glass-progress-labels {
	display: flex;
	justify-content: space-between;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
}

.glass-progress-bar-bg {
	height: 6px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	overflow: hidden;
}

.glass-progress-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent) 0%, #34d399 100%);
	border-radius: 10px;
	width: 0%;
	transition: width 1.5s ease-out;
}

/* ── Visi & Misi Section ───────────────────────────────── */
.corp-visi-misi-section {
	padding: 6rem 0;
	background-color: #f8fafc;
	position: relative;
}

.corp-visi-misi-card {
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
	border: 1px solid #edf2f7;
	padding: 4rem;
	display: flex;
	flex-direction: row;
	gap: 4rem;
	position: relative;
}

.corp-visi-misi-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.corp-visi-misi-col.visi-col {
	position: relative;
}

/* Vertical divider between Visi & Misi on desktop */
@media (min-width: 992px) {
	.corp-visi-misi-col.visi-col::after {
		content: '';
		position: absolute;
		top: 5%;
		right: -2rem;
		height: 90%;
		width: 1px;
		background: #e2e8f0;
	}
}

.corp-vm-header-wrap {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.corp-vm-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #f0fdf4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-600);
	flex-shrink: 0;
}

.corp-vm-icon svg {
	width: 26px;
	height: 26px;
	stroke-width: 1.8;
}

.corp-vm-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--green-900);
}

.corp-vm-text {
	font-family: 'Raleway', sans-serif;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--gray-700);
}

.corp-vm-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.corp-vm-list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-family: 'Raleway', sans-serif;
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--gray-700);
}

.corp-vm-list-icon {
	flex-shrink: 0;
	margin-top: 0.2rem;
	color: var(--green-600);
}

.corp-vm-list-icon svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.5;
}


/* ── Responsive Media Queries ───────────────────────────── */
@media (max-width: 1200px) {
	.corp-hero-title {
		font-size: 2.85rem;
	}

	.corporate-hero-left {
		padding: 4rem 4% 4rem 5%;
	}
}

@media (max-width: 991px) {
	.corporate-hero-wrapper {
		flex-direction: column;
	}

	.corporate-hero-left {
		flex: 1 0 100%;
		padding: 5rem 2rem 3rem 2rem;
	}

	.corporate-hero-right {
		flex: 1 0 auto;
		min-height: 500px;
		clip-path: none;
		margin-left: 0;
		padding: 2rem;
	}

	.corp-features-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		margin-top: 3rem;
	}

	.corp-visi-misi-card {
		flex-direction: column;
		gap: 3rem;
		padding: 3rem 2rem;
	}

	.corp-visi-misi-col.visi-col::after {
		display: none;
	}
}

@media (max-width: 576px) {
	.corp-hero-title {
		font-size: 2.25rem;
	}

	.corp-features-row {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.corporate-hero-right {
		min-height: 420px;
	}

	.glass-map-card {
		padding: 1.5rem;
	}

	.glass-map-container {
		height: 130px;
	}

	.btn-corp {
		width: 100%;
	}

	.corp-visi-misi-card {
		padding: 2.5rem 1.5rem;
	}
}

/* ── Archive Section ───────────────────────────────────── */
.corp-archives-section {
	padding: 6rem 0;
	background-color: #ffffff;
}

.corp-archives-header {
	max-width: 800px;
	margin-bottom: 3.5rem;
}

.corp-archives-header h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #0f172a;
	margin: 1rem 0;
}

.corp-archives-header p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.1rem;
	color: var(--gray-700);
}

.corp-archives-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 3.5rem;
}

.corp-archive-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.corp-archive-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	border-color: var(--green-500);
}

.archive-year {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--green-900);
}

.archive-participants {
	font-family: 'Raleway', sans-serif;
	font-size: 1.05rem;
	color: var(--gray-700);
	line-height: 1.5;
	flex-grow: 1;
}

.archive-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--green-600);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s ease;
}

.archive-link:hover {
	color: var(--green-900);
}

.corp-archives-footer {
	text-align: center;
}

.archive-full-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--green-600);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s ease;
}

.archive-full-link:hover {
	color: var(--green-900);
}

@media (max-width: 991px) {
	.corp-archives-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.corp-archives-grid {
		grid-template-columns: 1fr;
	}

	.corp-archives-header h2 {
		font-size: 1.85rem;
	}
}

/* ── Methodology Section ────────────────────────────────── */
.corp-methodology-section {
	padding: 6rem 0;
	background-color: #f8fafc;
}

.corp-methodology-header {
	margin: 0 0 4rem 0;
	text-align: left;
}

.corp-eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #ecfdf5;
	color: var(--green-700);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 1.5rem;
	border: 1px solid #d1fae5;
}

.corp-eyebrow-badge svg {
	width: 18px;
	height: 18px;
}

.corp-methodology-header h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 1.5rem;
}

.corp-methodology-header p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.1rem;
	color: var(--gray-700);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.corp-methodology-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.corp-methodology-card {
	flex: 0 0 calc(33.333% - 1.334rem);
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.corp-methodology-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	border-color: var(--green-300);
}

.corp-meth-top {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.corp-meth-icon {
	width: 64px;
	height: 64px;
	background: #f0fdf4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-600);
	flex-shrink: 0;
}

.corp-meth-icon svg {
	width: 32px;
	height: 32px;
}

.corp-meth-header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.meth-code {
	background: var(--green-700);
	color: white;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	line-height: 1;
	margin-top: 0.25rem;
}

.meth-title-group h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 0.25rem 0;
	line-height: 1.3;
}

.meth-sub {
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
	color: var(--gray-600);
}

.corp-meth-desc {
	font-family: 'Raleway', sans-serif;
	font-size: 0.95rem;
	color: var(--gray-700);
	line-height: 1.6;
	flex-grow: 1;
	margin-bottom: 2rem;
}

.corp-meth-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	border-top: 1px solid #e2e8f0;
	padding-top: 1.5rem;
}

.meth-stat {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.meth-stat .stat-icon {
	width: 20px;
	height: 20px;
	color: var(--green-600);
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.stat-text {
	display: flex;
	flex-direction: column;
}

.stat-text strong {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.1;
}

.stat-text span {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: var(--gray-600);
	margin-top: 0.25rem;
}

/* ── Pakar Keberlanjutan ────────────────────────────────── */
.corp-pakar-section {
	padding: 8rem 0;
	background-color: #ffffff;
	overflow: hidden;
	/* Prevent horizontal scroll on body */
}

.corp-pakar-container {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.corp-pakar-left {
	flex: 0 0 30%;
}

.corp-pakar-left h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0.5rem 0 1.5rem 0;
	line-height: 1.2;
}

.corp-pakar-left p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.1rem;
	color: var(--gray-700);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.corp-pakar-right {
	flex: 0 0 calc(70% - 3rem);
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	/* Prevents flex child from blowing out container */
}

.corp-pakar-carousel {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 1rem 0;
	-ms-overflow-style: none;
	width: 100%;
}

.corp-pakar-carousel::-webkit-scrollbar {
	display: none;
}

.pakar-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	z-index: 10;
	cursor: pointer;
	font-size: 1.5rem;
	color: var(--green-700);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.pakar-arrow:hover {
	background: var(--green-50);
	border-color: var(--green-300);
}

.pakar-arrow.prev {
	left: -24px;
}

.pakar-arrow.next {
	right: -24px;
}

.pakar-card {
	flex: 0 0 280px;
	scroll-snap-align: start;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.pakar-card:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
	border-color: var(--green-300);
	transform: translateY(-5px);
}

.pakar-img-placeholder {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	margin-bottom: 1.5rem;
}

.pakar-img-placeholder svg {
	width: 50px;
	height: 50px;
}

.pakar-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}

.pakar-affiliation {
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--green-600);
	margin: 0 0 1.5rem 0;
}

.pakar-specialty {
	font-family: 'Raleway', sans-serif;
	font-size: 0.85rem;
	color: var(--gray-700);
	line-height: 1.5;
	padding-top: 1.5rem;
	border-top: 1px solid #f1f5f9;
	width: 100%;
}

.pakar-specialty-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 700;
	color: #334155;
	margin-bottom: 0.5rem;
}

.pakar-specialty-label svg {
	width: 16px;
	height: 16px;
	color: var(--green-600);
}

@media (max-width: 1200px) {
	.corp-methodology-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.corp-pakar-container {
		flex-direction: column;
		gap: 3rem;
	}

	.corp-pakar-left {
		flex: 1 1 100%;
		text-align: center;
		padding: 0 1rem;
	}

	.corp-pakar-right {
		flex: 1 1 100%;
		width: 100%;
	}

	.pakar-arrow.prev {
		left: 0px;
	}

	.pakar-arrow.next {
		right: 0px;
	}
}

@media (max-width: 768px) {
	.corp-methodology-grid {
		grid-template-columns: 1fr;
	}

	.corp-meth-stats {
		grid-template-columns: 1fr;
	}

	.pakar-card {
		flex: 0 0 280px;
	}
}


/* ── Pendekatan Section ────────────────────────────────── */
.corp-pendekatan-section {
	padding: 0 0;
	background-color: #ffffff;
}

.corp-pendekatan-card {
	background: #f8fafc;
	border-radius: 24px;
	padding: 4rem;
	display: flex;
	align-items: center;
	gap: 4rem;
}

.corp-pendekatan-left {
	flex: 0 0 40%;
}

.corp-pendekatan-left h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 1.5rem;
}

.corp-pendekatan-left p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.05rem;
	color: var(--gray-700);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.corp-pendekatan-right {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-bottom: 2rem;
}

.pendekatan-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	flex: 1;
}

.p-step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.p-step-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--green-300);
	color: var(--green-600);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.p-step-icon svg {
	width: 24px;
	height: 24px;
}

.p-step-text h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.25rem 0;
}

.p-step-text p {
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
	color: var(--gray-600);
	line-height: 1.4;
	margin: 0;
}

.pendekatan-image {
	flex: 0 0 220px;
}

.pendekatan-image img {
	width: 100%;
	height: auto;
}

/* ── Langkah Mudah Section ────────────────────────────────── */
.corp-langkah-section {
	padding: 2rem 0;
	background-color: #ffffff;
}

.corp-langkah-header {
	margin-bottom: 3rem;
}

.corp-langkah-header h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #0f172a;
	margin-top: 0.5rem;
}

.corp-langkah-content {
	display: flex;
	align-items: stretch;
	gap: 3rem;
	margin-bottom: 5rem;
}

.corp-langkah-steps {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.langkah-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

.langkah-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
	border-color: var(--green-300);
}

.langkah-card-top {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.langkah-badge {
	width: 32px;
	height: 32px;
	background: var(--green-700);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
}

.langkah-icon {
	width: 28px;
	height: 28px;
	color: var(--green-600);
}

.langkah-card h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 1rem;
}

.langkah-card p {
	font-family: 'Raleway', sans-serif;
	font-size: 0.95rem;
	color: var(--gray-700);
	line-height: 1.5;
}

.langkah-card p a {
	color: var(--green-700);
	text-decoration: underline;
}

.corp-langkah-image {
	flex: 0 0 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.corp-langkah-image img {
	width: 100%;
	height: auto;
}

/* ── Sumber Data Terintegrasi ────────────────────────────────── */
.corp-sumber-data {
	background: #f8fafc;
	border-radius: 24px;
	padding: 4rem 3rem;
	text-align: center;
}

.corp-sumber-data p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.1rem;
	color: var(--gray-700);
	margin: 1rem 0 3rem 0;
}

.corp-sumber-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.sumber-data-carousel {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	width: 100%;
	padding: 1rem 0;
}

.sumber-data-carousel::-webkit-scrollbar {
	display: none;
}

.sumber-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
	cursor: pointer;
	font-size: 1.5rem;
	color: #166534;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.sumber-arrow:hover {
	background: #f0fdf4;
	border-color: #86efac;
}

.sumber-arrow.prev {
	left: -20px;
}

.sumber-arrow.next {
	right: -20px;
}

.sumber-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	flex: 0 0 160px;
	scroll-snap-align: start;
	min-width: 160px;
}

.sumber-card.text-only {
	justify-content: center;
	background: transparent;
	border: 1px dashed #cbd5e1;
	box-shadow: none;
}

.sumber-card.text-only span {
	color: var(--gray-500);
}

.sumber-logo-placeholder {
	width: 48px;
	height: 48px;
	background: #f1f5f9;
	border-radius: 50%;
}

.sumber-card span {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: #334155;
}

/* ── CTA Section ────────────────────────────────── */
.corp-cta-section {
	padding: 0 0 6rem 0;
	background-color: #ffffff;
}

.corp-cta-banner {
	background: linear-gradient(135deg, #16a34a, #14532d);
	border-radius: 24px;
	padding: 3rem 4rem;
	display: flex;
	align-items: center;
	gap: 3rem;
	box-shadow: 0 20px 40px -10px rgba(15, 105, 56, 0.4);
	position: relative;
	overflow: hidden;
}

.corp-cta-banner::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.corp-cta-left {
	flex: 0 0 180px;
	z-index: 1;
}

.corp-cta-left img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.2);
}

.corp-cta-mid {
	flex: 1;
	z-index: 1;
}

.corp-cta-mid h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.corp-cta-mid p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
}

.corp-cta-right {
	flex: 0 0 auto;
	z-index: 1;
}

.btn-corp-white {
	background: #ffffff;
	color: #166534;
	border: 2px solid #ffffff;
}

.btn-corp-white:hover {
	background: transparent;
	color: #ffffff;
}

@media (max-width: 991px) {

	.corp-pendekatan-card,
	.corp-langkah-content,
	.corp-cta-banner {
		flex-direction: column;
		text-align: center;
	}

	.corp-pendekatan-right {
		flex-direction: column;
	}

	.corp-langkah-steps {
		grid-template-columns: 1fr;
	}

	.p-step {
		text-align: left;
	}
}