@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf")
		format("truetype");
	font-weight: 400 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/SourceSansPro-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/SourceSansPro-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/SourceSansPro-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/SourceSansPro-LightItalic.ttf") format("truetype");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/SourceSansPro-SemiBoldItalic.ttf") format("truetype");
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}
:root {
	--el-red: #ab2328;
	--el-dark-red: #6e141d;
	--el-deep-red: #4a0811;
	--el-deeper-red: #35060c;
	--el-cream: #e7e6dd;
	--el-soft-cream: #f5f4ee;
	--el-white: #fff;
	--el-black: #151515;
	--el-grey: #777873;
	--el-light-grey: #d4d4cc;
	--el-border: rgba(255, 255, 255, 0.65);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: "Source Sans Pro", Arial, sans-serif;
	color: var(--el-black);
	background: var(--el-white);
	overflow-x: hidden;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
button,
input,
textarea {
	font-family: inherit;
}
main {
	overflow: hidden;
}
.section-pad {
	padding: 100px 0;
}
.el-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background: transparent;
	transition:
		background 0.25s ease,
		backdrop-filter 0.25s ease;
}
.el-header.scrolled {
	background: rgba(74, 8, 17, 0.72);
	backdrop-filter: blur(8px);
}
.el-header-inner {
	width: min(100%, 1920px);
	height: 82px;
	margin: 0 auto;
	padding: 0 64px;
	display: flex;
	align-items: center;
}
.el-logo {
	width: 250px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}
.el-logo img {
	max-height: 300px;
	width: auto;
}
.el-main-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}
.el-main-nav a {
	position: relative;
	min-height: 50px;
	padding: 0 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--el-white);
	transition: 0.25s ease;
}
.el-main-nav a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 38px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.58);
}
.el-main-nav a:hover,
.el-main-nav a.active {
	color: rgba(231, 230, 221, 0.72);
}
.el-nav-toggle {
	display: none;
	width: 42px;
	height: 40px;
	border: 0;
	background: transparent;
	padding: 0;
	margin-left: auto;
}
.el-nav-toggle span {
	display: block;
	width: 30px;
	height: 2px;
	background: var(--el-white);
	margin: 7px auto;
	transition: 0.25s ease;
}
.hero-section {
	position: relative;
	width: 100%;
	height: clamp(690px, 82vh, 900px);
	min-height: 690px;
	overflow: hidden;
	background: var(--el-dark-red);
}
.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
}
.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition:
		opacity 0.8s ease,
		visibility 0.8s ease;
}
.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
.hero-overlay {
	position: absolute;
	inset: 0;
}
.green-overlay {
	background: linear-gradient(
		90deg,
		rgba(20, 40, 25, 0.72) 0%,
		rgba(43, 80, 45, 0.58) 55%,
		rgba(110, 20, 29, 0.28) 100%
	);
}
.hero-content {
	position: relative;
	z-index: 3;
	width: min(100%, 1920px);
	height: 100%;
	margin: 0 auto;
}
.hero-text {
	position: absolute;
	left: 124px;
	top: 185px;
	max-width: 790px;
}
.hero-text h1 {
	margin: 0;
	font-size: clamp(45px, 5.2vw, 75px);
	font-weight: 300;
	line-height: 0.98;
	letter-spacing: 0.01em;
	color: rgba(231, 230, 221, 0.72);
}
.hero-text h2 {
	margin: 0;
	font-size: clamp(18px, 3.2vw, 45px);
	font-weight: 300;
	line-height: 1.04;
	color: rgba(231, 230, 221, 0.78);
}
.hero-text-discipline {
	top: 205px;
}
.hero-discipline-label {
	position: relative;
	display: inline-block;
	margin-bottom: 22px;
	padding-right: 34px; /* kasih ruang untuk arrow */
	color: var(--el-white);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.hero-discipline-label::after {
	content: "";
	position: absolute;
	top: -10px;
	right: 12px;
	width: 50px;
	height: 50px;
	background-image: url("../images/discipline-arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
}

.hero-discipline-label.green-label::after {
	background-image: url("../images/discipline-arrow-green.png");
}
.hero-line {
	width: 650px;
	max-width: 100%;
	height: 1px;
	margin: 26px 0 28px;
	background: rgba(255, 255, 255, 0.84);
}
.hero-text p {
	margin: 0 0 38px;
	max-width: 790px;
	color: var(--el-white);
	font-size: clamp(14px, 1.35vw, 18px);
	line-height: 1.25;
	font-weight: 200;
}
.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 235px;
	height: 48px;
	padding: 0 24px;
	background: #c34448;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	color: var(--el-white);
	font-size: 15px;
	font-weight: 600;
	font-style: italic;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
	transition: 0.25s ease;
}
.hero-btn:hover {
	background: var(--el-red);
	color: var(--el-white);
	transform: translateY(-2px);
}
.hero-locations {
	position: absolute;
	left: 124px;
	bottom: 42px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	color: var(--el-white);
	font-size: 18px;
	font-weight: 200;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}
.hero-locations span {
	position: relative;
	padding-right: 18px;
}
.hero-locations span:not(:last-child)::after {
	content: "|";
	position: absolute;
	right: 0;
	top: 0;
	color: rgba(255, 255, 255, 0.95);
}
.hero-side-nav {
	position: absolute;
	z-index: 8;
	top: 136px;
	right: 118px;
	width: 255px;
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.hero-side-link {
	position: relative;
	display: block;
	width: 60%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.85);
	padding: 0 42px 20px 0;
	color: var(--el-white);
	text-align: right;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.25s ease;
}
.hero-side-link::after {
	content: "";
	position: absolute;
	width: 34px;
	height: 34px;
	background-image: url("../images/discipline-arrow.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 0 !important;
}

.hero-side-link.green-link::after {
	background-image: url("../images/discipline-arrow-green.png");
}

.hero-side-link:hover,
.hero-side-link.active {
	color: var(--el-cream);
	border-bottom-color: var(--el-cream);
}
.hero-side-link:hover::after,
.hero-side-link.active::after {
	border-color: var(--el-cream);
}
.hero-arrow {
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border: 0;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 0;
	padding: 0;
	cursor: pointer;
	transition: 0.25s ease;
	opacity: 0.96;
}
.hero-arrow::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	margin: auto;
}
.hero-prev::before {
	border-top: 2px solid var(--el-white);
	border-left: 2px solid var(--el-white);
	transform: rotate(-45deg);
}
.hero-next::before {
	border-top: 2px solid var(--el-white);
	border-right: 2px solid var(--el-white);
	transform: rotate(45deg);
}
.hero-prev {
	left: 18px;
}
.hero-next {
	right: 18px;
}
.hero-arrow:hover {
	opacity: 1;
}
.hero-arrow:hover::before {
	border-color: var(--el-cream);
}
.discipline-strip {
	width: 100%;
	min-height: 55px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	background: linear-gradient(
		90deg,
		var(--el-deep-red) 0%,
		var(--el-dark-red) 48%,
		#9c3035 100%
	);
}
.discipline-strip {
	width: 100%;
	min-height: 74px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	background: linear-gradient(
		90deg,
		var(--el-deep-red) 0%,
		var(--el-dark-red) 48%,
		#9c3035 100%
	);
}

.discipline-strip a {
	position: relative;
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--el-white);
	text-decoration: none;
	transition: 0.25s ease;
}

/* teks menu */
.discipline-strip a span {
	position: relative;
	display: inline-block;
	padding-right: 22px;

	color: var(--el-white);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1;
}

/* arrow di ujung tulisan */
.discipline-strip a span::after {
	content: "";
	position: absolute;
	top: -7px;
	right: 9px;
	width: 25px;
	height: 25px;
	background-image: url("../images/discipline-arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.discipline-strip a.green-strip span::after {
	background-image: url("../images/discipline-arrow-green.png") !important;
}

/* garis pemisah vertikal antar menu */
.discipline-strip a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(255, 255, 255, 0.58);
}

.discipline-strip a:hover {
	background: rgba(255, 255, 255, 0.07);
	color: var(--el-cream);
}

.discipline-strip a:hover span {
	color: var(--el-cream);
}
.focus-nav {
	width: 100%;
	min-height: 62px;
	display: grid;
	grid-template-columns: 100px repeat(8, max-content);
	background: var(--el-cream);
	overflow-x: auto;
}
.focus-nav a {
	position: relative;
	min-width: 180px;
	min-height: 62px;
	padding: 0 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--el-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: 0.25s ease;
}
.focus-nav .focus-title {
	min-width: 110px;
	justify-content: center;
	position: relative;
	min-height: 62px;
	padding: 0 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--el-red) !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: default;
	pointer-events: none;
	user-select: none;
}
.focus-nav a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(65, 20, 24, 0.55);
}
/* FOCUS NAV ARROW - IMAGE VERSION */
.focus-nav a:not(.focus-title)::before {
	content: "" !important;
	display: inline-block !important;
	width: 24px !important;
	height: 24px !important;
	flex: 0 0 24px !important;
	margin-right: 2px !important;
	background: transparent url("../images/focus-arrow.png") no-repeat center /
		contain !important;
	background-color: transparent !important;
	clip-path: none !important;
	border: 0 !important;
	transform: translateY(1px);
}

@media (max-width: 768px) {
	.focus-page-nav {
		display: flex !important;
		grid-template-columns: none !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
	}

	.focus-page-nav a,
	.focus-page-nav .focus-title {
		flex: 0 0 auto !important;
		min-width: auto !important;
		width: auto !important;
		padding: 0 22px !important;
		white-space: nowrap;
	}
}
.focus-nav a:hover {
	background: rgba(171, 35, 40, 0.07);
}
.approach-section {
	background: var(--el-white);
}
.approach-text {
	min-height: 292px;
	padding: 38px 70px 64px;
}
.approach-text h2 {
	margin: 0 0 18px;
	color: #b77775;
	font-size: 42px;
	font-weight: 300;
}
.approach-text p {
	max-width: 970px;
	margin: 0 0 30px;
	color: var(--el-black);
	font-size: 24px;
	line-height: 1.28;
	font-weight: 600;
}
.outline-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	height: 54px;
	padding: 0 28px;
	border: 1px solid var(--el-red);
	border-radius: 999px;
	color: var(--el-red);
	font-size: 16px;
	font-weight: 600;
	font-style: italic;
	transition: 0.25s ease;
}
.outline-btn:hover {
	background: var(--el-red);
	color: var(--el-white);
}
.photo-placeholder {
	position: relative;
	min-height: 292px;
	height: 100%;
	background: #bfc0bb;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.photo-placeholder::before,
.photo-placeholder::after {
	content: "";
	position: absolute;
	width: 150%;
	height: 1px;
	left: -25%;
	top: 50%;
	background: rgba(0, 0, 0, 0.8);
}
.photo-placeholder::before {
	transform: rotate(22deg);
}
.photo-placeholder::after {
	transform: rotate(-22deg);
}
.photo-placeholder span {
	position: relative;
	z-index: 2;
	background: var(--el-white);
	padding: 5px 12px;
	color: var(--el-black);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.section-top {
	margin-bottom: 42px;
}
.section-top span {
	display: block;
	margin-bottom: 10px;
	color: var(--el-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.section-top h2,
.section-heading {
	margin: 0;
	color: var(--el-red);
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 100;
	line-height: 1.05;
}
.lead-copy {
	font-size: 22px;
	line-height: 1.45;
	color: var(--el-black);
	font-weight: 600;
}
.founder-section {
	background: var(--el-white);
}
.founder-photo {
	margin-top: 34px;
	background: var(--el-cream);
}
.founder-photo img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}
.photo-caption {
	margin-top: 10px;
	font-size: 14px;
	font-style: italic;
	text-align: right;
	color: var(--el-grey);
}
.founder-quote {
	margin: 0 0 34px;
	padding-bottom: 24px;
	border-bottom: 1px dotted var(--el-red);
	color: var(--el-red);
	font-size: 26px;
	line-height: 1.25;
	font-weight: 800;
	font-style: italic;
}
.founder-section p,
.strategy-section p {
	font-size: 17px;
	line-height: 1.65;
	color: #262626;
}
.signature-text {
	margin-top: 30px;
}
.strategy-section {
	background: var(--el-soft-cream);
}
.matrix-card {
	margin-top: 38px;
	background: var(--el-white);
	border: 1px solid rgba(110, 20, 29, 0.18);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
}
.matrix-title {
	background: var(--el-red);
	color: var(--el-white);
	padding: 12px 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.strategy-table {
	margin: 0;
}
.strategy-table th {
	background: var(--el-cream);
	color: var(--el-dark-red);
	font-size: 14px;
	text-align: center;
}
.strategy-table td {
	font-size: 14px;
	text-align: center;
}
.strategy-table td:first-child,
.strategy-table th:first-child {
	text-align: left;
	font-weight: 700;
}
.matrix-note {
	padding: 12px 18px 18px;
	margin: 0;
	font-size: 13px !important;
	color: var(--el-grey) !important;
}
.key-person-card {
	background: var(--el-white);
	border-top: 8px solid var(--el-red);
	padding: 28px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}
.key-person-card h3 {
	margin: 0 0 24px;
	color: var(--el-red);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.person-mini {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 14px;
}
.person-mini img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}
.person-mini h4 {
	margin: 0;
	color: var(--el-black);
	font-size: 18px;
	font-weight: 700;
}
.person-mini span {
	display: block;
	color: var(--el-grey);
	font-size: 14px;
	font-style: italic;
}
.key-person-card p {
	font-size: 14px !important;
	line-height: 1.5 !important;
	margin-bottom: 24px;
}
.focus-section {
	background: var(--el-white);
}
.focus-card {
	height: 100%;
	min-height: 260px;
	padding: 32px;
	background: var(--el-cream);
	border-top: 8px solid var(--el-red);
	transition: 0.25s ease;
}
.focus-card span {
	color: rgba(171, 35, 40, 0.45);
	font-size: 48px;
	font-weight: 300;
}
.focus-card h3 {
	margin: 10px 0 14px;
	color: var(--el-dark-red);
	font-size: 26px;
	font-weight: 700;
}
.focus-card p {
	margin: 0;
	color: #333;
	font-size: 16px;
	line-height: 1.55;
}
.focus-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}
.discipline-section {
	background: var(--el-dark-red);
}
.discipline-section .section-top h2,
.discipline-section .section-top span {
	color: var(--el-white);
}
.discipline-card {
	height: 100%;
	min-height: 210px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.05);
}
.discipline-card h3 {
	color: var(--el-white);
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 16px;
}
.discipline-card h3::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 8px;
	border-top: 5px solid var(--el-white);
	border-right: 5px solid var(--el-white);
	transform: translateY(-4px);
}
.discipline-card p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
}
.people-section {
	background: var(--el-soft-cream);
}
.people-card {
	height: 100%;
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 24px;
	padding: 28px;
	background: var(--el-white);
	border-top: 6px solid var(--el-red);
}
.people-card img {
	width: 170px;
	height: 210px;
	object-fit: cover;
	background-color: #f6f6f4 !important;
}
.people-card h3 {
	margin: 0;
	color: var(--el-red);
	font-size: 26px;
	font-weight: 700;
}
.people-card span {
	display: block;
	margin: 4px 0 18px;
	color: var(--el-grey);
	font-style: italic;
}
.people-card p {
	margin: 0;
	color: #333;
	line-height: 1.6;
}
.news-section {
	background: var(--el-white);
}
.news-card {
	height: 100%;
	padding: 30px;
	border: 1px solid rgba(110, 20, 29, 0.14);
	background: var(--el-white);
	transition: 0.25s ease;
}
.news-card span {
	color: var(--el-red);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 12px;
}
.news-card h3 {
	margin: 16px 0;
	color: var(--el-dark-red);
	font-size: 24px;
	font-weight: 700;
}
.news-card p {
	color: #444;
	line-height: 1.6;
}
.news-card a {
	color: var(--el-red);
	font-weight: 700;
}
.news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}
.contact-section {
	background: var(--el-cream);
}
.contact-heading h2 {
	font-size: clamp(34px, 3.4vw, 48px);
}
.contact-section p {
	color: #333;
	line-height: 1.65;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(110, 20, 29, 0.22);
	background: var(--el-white);
	padding: 15px 16px;
	outline: 0;
	color: var(--el-black);
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--el-red);
}
.contact-form button {
	border: 0;
	background: var(--el-red);
	color: var(--el-white);
	min-height: 52px;
	padding: 0 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.site-footer {
	background: var(--el-cream);
	padding: 0px 0px 30px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr;
	gap: 60px;
}
.footer-logo {
	max-width: 240px;
	filter: brightness(0) saturate(100%) invert(16%) sepia(91%) saturate(2028%)
		hue-rotate(339deg) brightness(88%) contrast(91%);
	margin-bottom: 24px;
}
/* ==========================================================
   STRATEGY PAGE - STATIC BANNER + FOUNDER + MATRIX
   ========================================================== */

.strategy-page .el-header {
	background: rgba(171, 35, 40, 0.95);
}

.strategy-page .el-header.scrolled {
	background: rgba(74, 8, 17, 0.9);
}

/* STATIC HERO BANNER */
.strategy-static-banner {
	position: relative;
	width: 100%;
	min-height: 245px;
	margin-top: 82px;
	overflow: hidden;

	background-image: url("../images/banner.jpg");

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.strategy-banner-overlay {
	position: absolute;
	inset: 0;
	background: rgba(50, 6, 12, 0.18);
}

.strategy-banner-inner {
	position: relative;
	z-index: 2;

	width: min(100%, 1920px);
	min-height: 245px;
	margin: 0 auto;
	padding: 0 96px;

	display: grid;
	grid-template-columns: 420px 1fr;
	align-items: center;
	column-gap: 70px;
}

.strategy-banner-title h1 {
	position: relative;
	margin: 0;

	color: #ffffff;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	line-height: 1;
}

.strategy-banner-copy h2 {
	margin: 0;
	color: rgba(231, 230, 221, 0.58);
	font-size: clamp(20px, 3.8vw, 24px);
	font-weight: 300;
	line-height: 1.03;
	font-style: italic;
}

/* PAGE CONTAINER */
.strategy-container {
	width: min(100%, 1530px);
	margin: 0 auto;
	padding: 75px;
}

/* FOUNDER NOTE STYLE */
.strategy-founder-section {
	padding: 80px 0 55px;
	background: #ffffff;
}

.founder-layout {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	column-gap: 62px;
	align-items: start;
}

.strategy-founder-section .section-heading {
	color: var(--el-red);
	font-size: clamp(42px, 4vw, 64px);
	font-weight: 300;
	line-height: 1.03;
	margin-bottom: 38px;
}

.strategy-founder-section .founder-photo {
	margin-top: 0;
	background: transparent;
}

.strategy-founder-section .founder-photo img {
	width: 100%;
	aspect-ratio: 4 / 4.8;
	object-fit: cover;
}

.strategy-founder-section .photo-caption {
	margin-top: 8px;
	color: #111111;
	font-size: 13px;
	font-weight: 600;
	text-align: right;
}

.strategy-founder-section .founder-quote {
	margin: 0 0 32px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--el-red);
	color: var(--el-red);
	font-size: clamp(20px, 1.35vw, 27px);
	line-height: 1.16;
	font-weight: 400;
	font-style: italic;
	font-family: "Playfair Display", Georgia, serif;
}

.strategy-founder-section p {
	color: #111111;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 400;
	margin-bottom: 18px;
}

.founder-full-copy {
	margin-top: 38px;
}

.founder-full-copy p {
	margin-bottom: 18px;
}

/* STRATEGY DETAIL */
.strategy-detail-section {
	background: #ffffff;
}

.strategy-red-quote {
	margin: 0 0 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--el-red);
	color: var(--el-red);
	font-size: 24px;
	line-height: 1.25;
	font-weight: 400;
	font-style: italic;
	font-family: "Playfair Display", Georgia, serif;
}

.strategy-intro-copy {
	max-width: 1080px;
}

.strategy-intro-copy p,
.strategy-intro-copy li {
	color: #111111;
	font-size: 15.5px;
	line-height: 1.45;
	font-weight: 400;
}

.strategy-intro-copy ul {
	margin: 6px 0 24px;
	padding-left: 20px;
}

/* MATRIX LIKE IMAGE 3 */
.strategy-matrix-box {
	margin-top: 38px;
	background: #f5f4ee;
}

.strategy-matrix-box .matrix-title {
	background: var(--el-red);
	color: #ffffff;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.strategy-page-table {
	margin: 0;
	border-collapse: collapse;
}

.strategy-page-table th {
	background: #ffffff;
	color: #111111;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid #111111;
}

.strategy-page-table td {
	background: #e7e6dd;
	color: #111111;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #111111;
	padding: 9px 12px;
}

.strategy-page-table td:first-child,
.strategy-page-table th:first-child {
	text-align: left;
	font-weight: 700;
	width: 220px;
}

.strategy-page-table .core {
	color: var(--el-red);
}

.strategy-page-table .support {
	color: #9b9b98;
}

.strategy-matrix-box .matrix-note {
	padding: 18px 24px 22px;
	margin: 0;
	color: #111111 !important;
	font-size: 13px !important;
	font-weight: 600;
	text-align: center;
}

.legend-core {
	color: var(--el-red);
	margin-left: 14px;
}

.legend-support {
	color: #9b9b98;
	margin-left: 30px;
}

/* STRATEGIC INTENT BOXES */
.strategy-intent-grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #f1e7e4;
}

.intent-card {
	padding: 24px 30px;
	min-height: 190px;
}

.intent-card:first-child {
	border-right: 1px solid var(--el-red);
}

.intent-card h3 {
	margin: 0 0 8px;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
}

.intent-card p,
.intent-card li {
	color: #111111;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 600;
}

.intent-card ul {
	margin: 0;
	padding-left: 18px;
}

/* ==========================================================
   EXECUTION MATRIX
   ========================================================== */

.execution-matrix-section {
	width: 100%;
	padding: 42px 0 0;
	background: #ffffff;
}

.execution-matrix-box {
	position: relative;
	margin: 0 auto;
	background: transparent;
}

.execution-matrix-content {
	margin-top: -1px;
	background: #f1e5e3;
	border-top: 1px dotted #5d5d56;
}

/* red title */
.execution-matrix-title {
	position: relative;
	z-index: 2;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 240px;
	min-height: 38px;
	padding: 0 26px;

	background: #b2282d;
	color: #ffffff;

	border-radius: 18px 18px 0 0;

	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1;
}

/* content wrapper */
.execution-matrix-content {
	margin-top: -1px;
	background: #f1e5e3;
	border-top: 1px dotted #5d5d56;
}

/* intro */
.execution-matrix-intro {
	padding: 18px 16px 14px;
	border-bottom: 1px dotted #5d5d56;
}

.execution-matrix-intro p {
	margin: 0;

	color: #1f1f1f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
}

/* discipline / focus row */
.execution-matrix-definition {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 18px;

	padding: 12px 16px;
	border-bottom: 1px dotted #5d5d56;
}

.execution-matrix-label {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.execution-matrix-label strong {
	color: #1f1f1f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.15;
}

.execution-matrix-desc p {
	margin: 0;

	color: #1f1f1f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.execution-matrix-desc span {
	display: inline-block;
	margin-right: 6px;
	font-weight: 800;
}

/* body copy */
.execution-matrix-copy {
	padding: 14px 16px 22px;
}

.execution-matrix-copy h3 {
	margin: 0 0 8px;

	color: #1f1f1f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.15;
}

.execution-matrix-copy p {
	margin: 0 0 4px;

	color: #1f1f1f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.execution-matrix-copy ul {
	margin: 0 0 20px;
	padding-left: 17px;
}

.execution-matrix-copy li {
	margin-bottom: 2px;

	color: #1f1f1f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.18;
}

.execution-matrix-acts {
	margin-top: 8px !important;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 767.98px) {
	.execution-matrix-box {
		width: 100%;
	}

	.execution-matrix-title {
		min-width: 200px;
		min-height: 36px;
		padding: 0 20px;
		font-size: 13px;
	}

	.execution-matrix-definition {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.execution-matrix-intro p,
	.execution-matrix-label strong,
	.execution-matrix-desc p,
	.execution-matrix-copy h3,
	.execution-matrix-copy p,
	.execution-matrix-copy li {
		font-size: 14px;
		line-height: 1.3;
	}
}

/* KEY PERSON WIDE */
.strategy-keyperson-wide {
	margin-top: 72px;
	background: #e7e6dd;
}

.keyperson-heading {
	color: var(--el-red);
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.keyperson-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.keyperson-item {
	padding: 28px 34px;
}

.keyperson-item:first-child {
	border-right: 1px solid var(--el-red);
}

.keyperson-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 14px;
	margin-bottom: 18px;
}

.keyperson-top h3 {
	margin: 0;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
}

.keyperson-top span {
	color: #111111;
	font-size: 13px;
	font-style: italic;
}

.keyperson-top img {
	width: 74px;
	height: 74px;
	object-fit: cover;
}

.keyperson-item p {
	color: #111111;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
	margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
	.strategy-banner-inner {
		padding: 0 54px;
		grid-template-columns: 230px 1fr;
	}

	.founder-layout {
		grid-template-columns: 320px minmax(0, 1fr);
		column-gap: 44px;
	}
}

@media (max-width: 991.98px) {
	.strategy-static-banner {
		margin-top: 72px;
	}

	.strategy-banner-inner {
		padding: 44px 32px;
		grid-template-columns: 1fr;
		row-gap: 26px;
	}

	.founder-layout {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}

	.strategy-founder-section .founder-photo {
		max-width: 360px;
	}

	.strategy-intent-grid,
	.keyperson-grid {
		grid-template-columns: 1fr;
	}

	.intent-card:first-child,
	.keyperson-item:first-child {
		border-right: 0;
		border-bottom: 1px solid var(--el-red);
	}
}

@media (max-width: 575.98px) {
	.strategy-founder-section .photo-caption {
		margin-top: 8px;
		color: #111111;
		font-size: 13px;
		font-weight: 600;
		text-align: left;
	}

	.strategy-banner-title h1 {
		font-size: 30px;
	}

	.strategy-banner-title h1::before {
		width: 26px;
		height: 50px;
	}

	.strategy-founder-section {
		padding-top: 58px;
	}

	.strategy-founder-section p,
	.strategy-intro-copy p,
	.strategy-intro-copy li {
		font-size: 14px;
	}

	.strategy-page-table {
		min-width: 760px;
	}

	.keyperson-item {
		padding: 24px 22px;
	}
}

.footer-location {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.site-footer h3 {
	margin: 0 0 16px;
	color: var(--el-black);
	font-size: 18px;
	font-weight: 700;
}
.site-footer a {
	display: block;
	margin-bottom: 8px;
	color: var(--el-black);
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}
.site-footer a:hover {
	color: var(--el-red);
}
.footer-bottom {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid rgba(110, 20, 29, 0.18);
}
.footer-bottom p {
	margin: 0;
	font-size: 14px;
}
.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
	width: 44px;
	height: 44px;
	border: 0;
	background: var(--el-red);
	color: var(--el-white);
	font-size: 20px;
	display: none;
}
.back-to-top.show {
	display: block;
}
@media (max-width: 1499.98px) {
	.el-header-inner {
		padding: 0 48px;
	}
	.el-main-nav a {
		padding: 0 28px;
	}
	.hero-text {
		left: 90px;
		max-width: 720px;
	}
	.hero-side-nav {
		right: 86px;
	}
	.hero-locations {
		left: 90px;
	}
}
@media (max-width: 1199.98px) {
	.el-header-inner {
		padding: 0 32px;
	}
	.el-logo {
		width: 230px;
	}
	.el-main-nav {
		position: fixed;
		top: 82px;
		right: -320px;
		width: 310px;
		height: calc(100vh - 82px);
		background: rgba(74, 8, 17, 0.95);
		backdrop-filter: blur(10px);
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 28px 0;
		transition: right 0.3s ease;
	}
	.el-main-nav.show {
		right: 0;
	}
	.el-main-nav a {
		justify-content: flex-start;
		min-height: 48px;
		padding: 0 28px;
	}
	.el-main-nav a::before {
		display: none;
	}
	.el-nav-toggle {
		display: block;
	}
	.hero-section {
		height: 780px;
	}
	.hero-text {
		left: 54px;
		top: 160px;
		max-width: 620px;
	}
	.hero-side-nav {
		right: 54px;
		top: 128px;
		width: 220px;
		gap: 16px;
	}
	.hero-side-link {
		font-size: 15px;
		padding-bottom: 12px;
	}
	.hero-locations {
		left: 54px;
		bottom: 34px;
		font-size: 14px;
	}
	.discipline-strip a {
		font-size: 17px;
	}
	.focus-nav {
		grid-template-columns: 100px repeat(6, 210px);
	}
	.approach-text {
		padding: 34px 42px 52px;
	}
	.approach-text p {
		font-size: 21px;
	}
}
@media (max-width: 991.98px) {
	.section-pad {
		padding: 78px 0;
	}
	.hero-section {
		height: 880px;
	}
	.hero-text {
		left: 34px;
		right: 34px;
		top: 130px;
		max-width: none;
	}
	.hero-text h1 {
		font-size: 56px;
	}
	.hero-text h2 {
		font-size: 50px;
	}
	.hero-text p {
		max-width: 650px;
		font-size: 18px;
	}
	.hero-discipline-label {
		font-size: 26px;
	}
	.hero-side-nav {
		left: 34px;
		right: 34px;
		top: auto;
		bottom: 105px;
		width: auto;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 28px;
	}
	.hero-side-link {
		text-align: left;
		padding-right: 16px;
	}
	.hero-locations {
		left: 34px;
		right: 34px;
		bottom: 28px;
		font-size: 13px;
		gap: 10px;
	}
	.hero-arrow {
		width: 44px;
		height: 44px;
	}
	.hero-prev {
		left: 12px;
	}
	.hero-next {
		right: 12px;
	}
	.discipline-strip {
		grid-template-columns: repeat(2, 1fr);
	}
	.discipline-strip a {
		min-height: 62px;
	}

	.el-header,
	.el-header-inner,
	.discipline-strip,
	.focus-page-nav.discipline-page-nav,
	.discipline-page-nav {
		border-top: 0 !important;
		border-bottom: 0 !important;
		box-shadow: none !important;
	}
	.discipline-strip.home {
		margin-top: 0px !important;
	}
	.discipline-strip {
		margin-top: 65px !important;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.people-card {
		grid-template-columns: 1fr;
	}
	.people-card img {
		width: 100%;
		height: 280px;
	}
}
@media (max-width: 767.98px) {
	.el-header-inner {
		height: 72px;
		padding: 0 20px;
	}
	.el-logo {
		width: 200px;
	}
	.el-logo img {
		max-height: 120px;
		margin-left: -20px;
	}
	.el-main-nav {
		top: 72px;
		height: calc(100vh - 72px);
	}
	.hero-section {
		height: 900px;
		min-height: 900px;
	}
	.hero-text {
		left: 24px;
		right: 24px;
		top: 112px;
	}
	.hero-text h1 {
		font-size: 46px;
	}
	.hero-text h2 {
		font-size: 40px;
	}
	.hero-line {
		margin: 20px 0 22px;
	}
	.hero-text p {
		font-size: 14px;
	}
	.hero-btn {
		min-width: 210px;
		height: 46px;
		font-size: 14px;
	}
	.hero-side-nav {
		left: 24px;
		right: 24px;
		bottom: 118px;
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.hero-side-link {
		font-size: 14px;
		padding-right: 14px;
		padding-bottom: 9px;
	}
	.hero-side-link::after {
		width: 25px;
		height: 25px;
		border-top-width: 3px;
		border-right-width: 3px;
		top: 10px;
		right: 10%;
	}

	.hero-side-link button::after {
		width: 25px;
		height: 25px;
		border-top-width: 3px;
		border-right-width: 3px;
		top: 10px;
		right: 10%;
	}

	.hero-locations {
		left: 24px;
		right: 24px;
		bottom: 26px;
		font-size: 12px;
	}
	.discipline-strip {
		grid-template-columns: 1fr;
	}
	.discipline-strip a:not(:last-child)::after {
		display: none;
	}
	.focus-nav {
		grid-template-columns: 95px repeat(6, 220px);
	}
	.approach-text {
		padding: 32px 26px 44px;
	}
	.approach-text h2 {
		font-size: 36px;
	}
	.approach-text p {
		font-size: 18px;
	}
	.photo-placeholder {
		min-height: 240px;
	}
	.founder-quote {
		font-size: 21px;
	}
}
@media (max-width: 420px) {
	.hero-text h1 {
		font-size: 40px;
	}
	.hero-text h2 {
		font-size: 34px;
	}
	.hero-text p {
		font-size: 12px;
	}
	.section-top h2,
	.section-heading {
		font-size: 34px;
	}
}
.hero-arrow,
.hero-arrow:hover,
.hero-arrow:focus,
.hero-arrow:active {
	background: transparent !important;
	box-shadow: none !important;
	outline: none;
}
/* ================================
   OUR APPROACH - FINAL REFINEMENT
   ================================ */

.approach-section {
	background: #ffffff;
	border-top: 6px solid var(--el-cream);
}

.approach-wrapper {
	width: 100%;
	min-height: 292px;
	padding: 42px 76px 58px;

	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: center;
	column-gap: 56px;
}

.approach-copy h2 {
	margin: 0 0 22px;
	color: #b77775;
	font-size: clamp(38px, 3.4vw, 58px);
	font-weight: 300;
	line-height: 1;
}

.approach-copy p {
	max-width: 1180px;
	margin: 0;
	color: #111111;
	font-size: clamp(22px, 1.65vw, 32px);
	line-height: 1.18;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.approach-action {
	display: flex;
	align-items: center;
	justify-content: center;
}

.approach-section .outline-btn {
	min-width: 294px;
	height: 78px;
	padding: 0 46px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(171, 35, 40, 0.72);
	border-radius: 999px;
	background: transparent;

	color: var(--el-red);
	font-size: clamp(20px, 1.35vw, 28px);
	font-weight: 400;
	font-style: italic;
	line-height: 1;
	text-decoration: none;

	box-shadow: none;
}

.approach-section .outline-btn:hover {
	background: var(--el-red);
	color: #ffffff;
	border-color: var(--el-red);
}

/* Hilangkan style lama kalau masih terbaca */
.approach-section .photo-placeholder {
	display: none !important;
}

/* Responsive */
@media (max-width: 1199.98px) {
	.approach-wrapper {
		grid-template-columns: minmax(0, 1fr) 260px;
		padding: 38px 44px 52px;
		column-gap: 32px;
	}

	.approach-section .outline-btn {
		min-width: 230px;
		height: 64px;
	}
}

@media (max-width: 991.98px) {
	.approach-wrapper {
		grid-template-columns: 1fr;
		row-gap: 34px;
		padding: 36px 28px 48px;
	}

	.approach-action {
		justify-content: flex-start;
	}

	.approach-section .outline-btn {
		min-width: 220px;
		height: 58px;
	}
}

@media (max-width: 575.98px) {
	.approach-copy p {
		font-size: 18px;
		line-height: 1.3;
	}

	.approach-copy h2 {
		font-size: 34px;
	}
}

/* ================================
   FOOTER - FINAL REFINEMENT
   ================================ */

.site-footer {
	background: var(--el-cream);
	padding: 0px 0px 30px;
}

.footer-container {
	width: min(100%, 1920px);
	margin: 0 auto;
	padding: 0 96px;

	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	column-gap: 80px;
	align-items: start;
}

.footer-left {
	display: flex;
	flex-direction: column;
}

.footer-brand-row {
	display: flex;
	align-items: center;
	gap: 34px;
}

.footer-logo-red {
	width: 250px;
	height: auto;
	display: block;
	margin-left: -35px;
}

.footer-office {
	display: flex !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	gap: 0 !important;

	color: var(--el-red);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-office a,
.footer-office span {
	position: relative;
	display: inline-flex !important;
	align-items: center;

	margin: 0 !important;
	padding: 0 14px 0 0 !important;

	color: var(--el-red) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	line-height: 1.2 !important;
	white-space: nowrap !important;
}

.footer-office a:not(:last-child),
.footer-office span:not(:last-child) {
	margin-right: 10px !important;
}

.footer-office a:not(:last-child)::after,
.footer-office span:not(:last-child)::after {
	content: "|" !important;
	position: absolute;
	right: 0;
	top: 0;

	color: var(--el-red);
}

.footer-office a:hover {
	color: var(--el-dark-red) !important;
	text-decoration: none !important;
}
.footer-info {
	padding-left: 0;
}

.footer-block {
	margin-bottom: 18px;
}

.footer-block h4 {
	margin: 0 0 4px;
	color: #222222;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.footer-block a {
	color: #222222;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	text-transform: none;
	line-height: 1.4;
}

.footer-block a:hover {
	color: var(--el-red);
}

.footer-copy {
	margin: 34px 0 0;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
}

.footer-right {
	padding-top: 55px;
}

.footer-right h3 {
	margin: 0 0 18px;
	color: #111111;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.footer-right a {
	display: block;
	margin-bottom: 12px;

	color: #111111;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
	text-decoration: none;
}

.footer-right a:hover {
	color: var(--el-red);
}

/* Matikan style footer lama */
.site-footer .footer-grid,
.site-footer .footer-bottom {
	display: none !important;
}

/* Responsive footer */
@media (max-width: 1199.98px) {
	.footer-container {
		padding: 0 56px;
		grid-template-columns: minmax(0, 1fr) 220px;
		column-gap: 50px;
	}

	.footer-brand-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.footer-logo-red {
		width: 230px;
	}
}

@media (max-width: 767.98px) {
	.footer-container {
		padding: 0 28px;
		grid-template-columns: 1fr;
		row-gap: 42px;
	}

	.footer-brand-row {
		margin-bottom: 34px;
	}

	.footer-logo-red {
		width: 220px;
	}

	.footer-right {
		padding-top: 0;
	}

	.footer-right h3 {
		font-size: 22px;
	}
}

/* =========================================
   EXECUTION MATRIX + STRATEGIC INTENT FIX
   ========================================= */

.strategy-matrix-box {
	margin-top: 38px;
	background: #e9e9e6;
	border: 0;
	overflow: hidden;
}

.strategy-matrix-box .matrix-title {
	background: #992126;
	color: #ffffff;
	padding: 14px 34px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1;
}

.strategy-page-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
}

.strategy-page-table thead th {
	background: #e9e9e6;
	color: #0f2238;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 18px 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.45);
	vertical-align: middle;
}

.strategy-page-table tbody td {
	background: #e9e9e6;
	color: #0f2238;
	font-size: 17px;
	font-weight: 600;
	padding: 16px 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.45);
	text-align: center;
	vertical-align: middle;
	line-height: 1.1;
}

.strategy-page-table th:first-child,
.strategy-page-table td:first-child {
	text-align: left;
	padding-left: 28px;
	width: 240px;
}

.strategy-page-table tbody tr:last-child td {
	border-bottom: 0;
}

/* DOTS */
.dot-cell {
	text-align: center;
}

.dot {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	vertical-align: middle;
}

.dot.core {
	background: #a62a2f;
}

.dot.support {
	background: #9a9a96;
}

.dot.empty {
	background: transparent;
	border: 1.8px solid #c8c8c4;
}

/* LEGEND */
.matrix-legend {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 72px;
	padding: 26px 28px 30px;
	background: #e9e9e6;
	border-top: 1px solid rgba(0, 0, 0, 0.35);
	flex-wrap: wrap;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #1a1a1a;
	font-size: 16px;
	line-height: 1.3;
}

.legend-item strong {
	font-weight: 700;
}

/* STRATEGIC INTENT BOX */
.strategy-intent-grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #efe4e1;
	padding: 0;
}

.intent-card {
	padding: 28px 28px 30px;
	min-height: 240px;
}

.intent-card:first-child {
	border-right: 1px dotted #b55a5a;
}

.intent-card h3 {
	margin: 0 0 8px;
	color: #111111;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.intent-card p {
	margin: 0 0 6px;
	color: #111111;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 500;
}

.intent-card ul {
	margin: 0;
	padding-left: 22px;
}

.intent-card li {
	color: #111111;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 500;
	margin-bottom: 4px;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
	.matrix-legend {
		gap: 24px;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 22px 22px 26px;
	}

	.strategy-intent-grid {
		grid-template-columns: 1fr;
	}

	.intent-card:first-child {
		border-right: 0;
		border-bottom: 1px dotted #b55a5a;
	}
}

@media (max-width: 575.98px) {
	.strategy-matrix-box .matrix-title {
		padding: 12px 18px;
		font-size: 16px;
	}

	.strategy-page-table {
		min-width: 920px;
	}

	.strategy-page-table thead th {
		font-size: 15px;
		padding: 14px 10px;
	}

	.strategy-page-table tbody td {
		font-size: 15px;
		padding: 14px 10px;
	}

	.dot {
		width: 16px;
		height: 16px;
	}

	.legend-item {
		font-size: 14px;
	}

	.intent-card h3 {
		font-size: 18px;
	}

	.intent-card li,
	.intent-card p {
		font-size: 15px;
	}
}

/* =========================================
   KEY PERSON - FIX DOTTED LINE + PHOTO
   ========================================= */

.strategy-keyperson-wide {
	margin-top: 72px;
	background: #e9e9e6;
	overflow: hidden;
}

.strategy-keyperson-wide .keyperson-heading {
	color: var(--el-red);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1;
	background-color: white;
}

.strategy-keyperson-wide .keyperson-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: #e9e9e6;
}

.strategy-keyperson-wide .keyperson-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 120px;
	column-gap: 22px;
	align-items: start;
	margin-bottom: 22px;
}

.strategy-keyperson-wide .keyperson-head {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.strategy-keyperson-wide .keyperson-name h3 {
	margin: 0 0 2px;
	color: #111111;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
}

.strategy-keyperson-wide .keyperson-name span {
	display: block;
	color: #111111;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.15;
}

.strategy-keyperson-wide .keyperson-divider {
	margin-top: 45px;
	width: 100%;
	border-bottom: 1px dotted #a73434;
}

.strategy-keyperson-wide .keyperson-photo {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	margin-top: -40px;
}

.strategy-keyperson-wide .keyperson-photo img {
	object-fit: cover;
	display: block;
	border-radius: 50%;
}

.strategy-keyperson-wide .keyperson-item p {
	margin: 0 0 12px;
	color: #111111;
	font-size: 19px;
	line-height: 1.34;
	font-weight: 400;
	text-align: justify;
	text-justify: inter-word;
}

/* tablet */
@media (max-width: 1199.98px) {
	.strategy-keyperson-wide .keyperson-name h3 {
		font-size: 22px;
	}

	.strategy-keyperson-wide .keyperson-name span {
		font-size: 18px;
	}

	.strategy-keyperson-wide .keyperson-item p {
		font-size: 17px;
	}
}

/* mobile */
@media (max-width: 991.98px) {
	.strategy-keyperson-wide .keyperson-grid {
		grid-template-columns: 1fr;
	}

	.strategy-keyperson-wide .keyperson-item {
		border-bottom: 1px solid rgba(153, 33, 38, 0.18);
	}

	.strategy-keyperson-wide .keyperson-item:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 575.98px) {
	.strategy-keyperson-wide .keyperson-heading {
		padding: 12px 20px;
		font-size: 16px;
	}

	.strategy-keyperson-wide .keyperson-top {
		grid-template-columns: 1fr 84px;
		column-gap: 16px;
	}

	.strategy-keyperson-wide .keyperson-name h3 {
		font-size: 20px;
	}

	.strategy-keyperson-wide .keyperson-name span {
		font-size: 17px;
	}

	.strategy-keyperson-wide .keyperson-divider {
		margin-top: 14px;
	}

	.strategy-keyperson-wide .keyperson-photo img {
		width: 84px;
		height: 84px;
	}

	.strategy-keyperson-wide .keyperson-item p {
		font-size: 15px;
		line-height: 1.5;
		text-align: left;
	}
}

/* ==========================================================
   STRATEGY STATIC BANNER - IMAGE FROM HTML
   ========================================================== */

.strategy-static-banner {
	position: relative;
	width: 100%;
	min-height: 260px;
	margin-top: 0 !important;
	padding-top: 82px;
	overflow: hidden;
	background: var(--el-dark-red);
}

.strategy-banner-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;

	object-fit: cover;
	object-position: center center;
}

.strategy-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.strategy-banner-inner {
	position: relative;
	z-index: 2;
	width: min(100%, 1920px);
	min-height: 260px;
	margin: 0 auto;
	padding: 0 96px;
	display: grid;
	grid-template-columns: 310px 1fr;
	align-items: center;
	column-gap: 70px;
}

.strategy-banner-title h1 {
	position: relative;
	margin: 0;
	color: #ffffff;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	line-height: 1;
}

.strategy-banner-title h1::after {
	content: "";
	display: inline-block;
	width: 45px;
	height: 45px;
	margin-left: -20px;
	background-image: url("../images/discipline-arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: 0;
	transform: translateY(-9px);
}
.strategy-banner-copy {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 80px;
}

.strategy-banner-copy h2 {
	margin: 0;
	color: #c9abab;
	font-size: clamp(20px, 3.4vw, 34px);
	font-weight: 300;
	line-height: 1.08;
	font-style: italic;
}

@media (max-width: 991.98px) {
	.strategy-static-banner {
		padding-top: 72px;
		min-height: 330px;
	}

	.strategy-banner-inner {
		min-height: 250px;
		padding: 36px 32px;
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.strategy-banner-title h1 {
		font-size: 34px;
	}

	.strategy-banner-title h1::before {
		width: 28px;
		height: 54px;
	}

	.strategy-banner-copy h2 {
		font-size: 24px;
	}
}

/* ==========================================================
   RESTRUCTURING PAGE
   ========================================================== */

.restructuring-page .el-header {
	background: transparent !important;
	box-shadow: none !important;
}

.restructuring-page .el-header.scrolled {
	background: rgba(74, 8, 17, 0.72) !important;
	backdrop-filter: blur(8px);
}

/* CONTAINER */
.restructuring-container {
	width: min(100%, 1500px);
	margin: 0 auto;
	padding: 0 60px;
}

/* BANNER */
.restructuring-banner {
	position: relative;
	width: 100%;
	min-height: 265px;
	padding-top: 82px;
	overflow: hidden;
	background: var(--el-dark-red);
}

.restructuring-banner-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 0;
}

.restructuring-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.restructuring-banner-inner {
	position: relative;
	z-index: 2;
	width: min(100%, 1920px);
	min-height: 300px;
	margin: 0 auto;
	padding: 28px 48px 26px;
	display: grid;
	grid-template-columns: 420px 1fr;
	column-gap: 36px;
	align-items: end;
}

.restructuring-breadcrumb {
	margin-left: 15px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.restructuring-breadcrumb a,
.restructuring-breadcrumb span {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.restructuring-breadcrumb .current {
	color: #ffffff;
}

.restructuring-banner-left h1 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-left: 40px;
	color: #ffffff;
	font-size: clamp(34px, 3.3vw, 56px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.restructuring-banner-left h1::before {
	content: "";
	position: absolute;
	left: 0;
	width: 50px;
	height: 50px;
	top: 5px;
	background-image: url("../images/focus-arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	clip-path: none;
}

.restructuring-banner-left h1.green-focus-header::before {
	background-image: url("../images/focus-arrow-white.png");
}

.restructuring-banner-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.restructuring-banner-right p {
	margin: 0;
	color: #c9abab;
	font-size: clamp(16px, 3vw, 28px);
	font-weight: 400;
	line-height: 1.05;
	text-align: right;
	font-style: italic;
}

/* MAIN CONTENT */
.restructuring-content-section {
	background: #f6f6f4;
	padding: 58px 0 92px;
}

.restructuring-quote {
	margin: 0 0 22px;
	padding-bottom: 14px;
	max-width: 760px;
	border-bottom: 1px solid var(--el-red);
	color: var(--el-red);
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.3;
	font-family: "Playfair Display", Georgia, serif;
}

.restructuring-quote.green-line {
	border-bottom: 1px solid #2f7f2f;
}

.restructuring-intro {
	max-width: 980px;
}

.restructuring-intro p {
	margin: 0 0 8px;
	color: #111111;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 400;
}

/* PILL SECTIONS */
.restructure-pill-section {
	margin-top: 38px;
	max-width: 1020px;
}

.pill-heading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
	height: 44px;
	padding: 0 28px;
	background: #a1272c;
	border-radius: 999px 999px 0 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.pill-heading.secondary {
	border-radius: 999px 999px 0 0;
}

.restructure-two-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 4px;
}

.restructure-card {
	background: #e4e0da;
	border-radius: 0 0 28px 28px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.restructure-card h3 {
	position: relative;
	margin: 0;
	padding: 22px 26px 18px;
	text-align: center;
	color: #23344a;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 0;
	background: #ffffff;
}

.restructure-card h3::after {
	content: "";
	position: absolute;
	top: 9px;
	margin-left: -16px;
	width: 35px;
	height: 35px;
	background-image: url("../images/discipline-arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: 0;
}

.restructure-card ul {
	margin: 0;
	padding: 0px 22px 20px 34px;
}

.restructure-card li {
	margin-bottom: 8px;
	color: #111111;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
}

.restructure-arrow-down {
	margin: 28px 0 22px;
	text-align: center;
	color: #a1272c;
	font-size: 64px;
	line-height: 1;
	font-weight: 700;
}

.beyond-boundaries-box {
	background: #eadfdd;
	border-radius: 0 0 28px 28px;
	overflow: hidden;
}

.beyond-boundaries-content {
	padding: 18px 24px 24px;
}

.beyond-boundaries-content h4 {
	margin: 0 0 10px;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
}

.beyond-boundaries-content ul {
	margin: 0;
	padding-left: 18px;
}

.beyond-boundaries-content li {
	margin-bottom: 10px;
	color: #111111;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
}
.restructure-two-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 70px 56px;
}

.restructure-card-wide {
	grid-column: 1 / -1;
}

.intelligence-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 70px;
}

/* PROJECT HIGHLIGHT */
.project-highlight-section {
	margin-top: 72px;
}

.project-highlight-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.project-highlight-top h2 {
	margin: 0;
	color: #b2282d;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}

.project-slider-nav {
	display: flex;
	gap: 10px;
}

.project-slider-btn {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(178, 40, 45, 0.4);
	background: #ffffff;
	color: #b2282d;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.25s ease;
}

.project-slider-btn:hover {
	background: #b2282d;
	color: #ffffff;
}

.project-slider {
	overflow: hidden;
}

.project-slider-track {
	display: flex;
	gap: 24px;
	transition: transform 0.45s ease;
	will-change: transform;
}

.project-card {
	flex: 0 0 calc((100% - 48px) / 3);
	background: #deded6;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.project-card-topline {
	height: 8px;
	background: #a1272c;
}

.project-card-topline.green-case-topline {
	background: #2f7f2f;
}

.project-card-body {
	padding: 28px 18px 24px;
	min-height: 570px;
}

.project-card h3 {
	margin: 0 0 8px;
	color: #a1272c;
	font-size: 58px;
	font-weight: 300;
	line-height: 0.95;
	text-align: center;
}

.project-card h4 {
	margin: 0 0 42px;
	color: #111111;
	font-size: 22px;
	line-height: 1.15;
	font-weight: 600;
	text-align: center;
}

.project-logo {
	min-height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 34px;
	transform: scale(1.7);
}

.project-logo img {
	max-width: 180px;
	max-height: 110px;
	object-fit: contain;
}

.project-logo-text span {
	color: #111111;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.project-card p {
	margin: 0;
	color: #111111;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 400;
	text-align: center;
}

.project-text h3 {
	margin: 0 0 8px;
	color: #222;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
}

.project-text ul {
	margin: 0;
	padding-left: 22px;
}

.project-text li {
	margin-bottom: 6px;
	color: #222;
	font-size: 18px;
	line-height: 1.25;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
	.restructuring-banner-inner {
		grid-template-columns: 360px 1fr;
	}

	.project-card {
		flex: 0 0 calc((100% - 24px) / 2);
	}

	.project-card-body {
		min-height: 520px;
	}
}

@media (max-width: 991.98px) {
	.restructuring-banner {
		padding-top: 72px;
	}

	.restructuring-banner-inner {
		padding: 28px 28px 24px;
		grid-template-columns: 1fr;
		row-gap: 24px;
		align-items: end;
	}

	.restructuring-banner-right {
		justify-content: flex-start;
	}

	.restructuring-banner-right p {
		text-align: left;
	}

	.restructure-two-cards {
		grid-template-columns: 1fr;
	}

	.project-card {
		flex: 0 0 100%;
	}

	.project-card-body {
		min-height: auto;
	}
}

@media (max-width: 575.98px) {
	.restructuring-container {
		padding: 0 18px;
	}

	.restructuring-banner-left h1 {
		padding-left: 44px;
		font-size: 28px;
	}

	.restructuring-banner-left h1::before {
		width: 28px;
		height: 46px;
		margin-left: -10px;
	}

	.restructuring-banner-left h1 {
		position: relative;
		display: inline-flex;
		align-items: center;
		margin: 0;
		padding-left: 30px;
		color: #ffffff;
		font-size: clamp(38px, 4.2vw, 82px);
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		line-height: 1;
	}

	.restructuring-banner-left h1::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		width: 42px;
		height: 42px;
		background-image: url("../images/focus-arrow.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		background-color: transparent;
		clip-path: none;
		transform: translateY(-50%);
	}

	.restructuring-breadcrumb {
		margin-left: 0px;
		margin-bottom: 18px;
		color: rgba(255, 255, 255, 0.78);
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.restructuring-quote {
		font-size: 18px;
	}

	.restructuring-intro p {
		font-size: 14px;
	}

	.pill-heading {
		font-size: 15px;
		height: 38px;
	}

	.restructure-card h3 {
		font-size: 19px;
	}

	.project-highlight-top h2 {
		font-size: 18px;
	}

	.project-card h4 {
		font-size: 19px;
	}
}

/* ==========================================================
   FOCUS PAGE NAV - FINAL VERSION
   Untuk halaman focus seperti restructuring.html
   ========================================================== */

.focus-page-nav {
	position: relative;
	z-index: 20;
	margin-top: 82px;
	width: 100%;
	min-height: 62px;
	display: grid;
	grid-template-columns: 100px repeat(8, max-content);
	align-items: stretch;
	background: var(--el-cream);
	overflow-x: auto;
	overflow-y: hidden;
}

/* Supaya banner langsung menempel di bawah focus nav */
.focus-page-nav + .restructuring-banner {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* Banner restructuring tidak perlu padding-top karena sudah ada focus nav */
.restructuring-page .restructuring-banner {
	padding-top: 0 !important;
}

/* Isi banner tetap punya tinggi cukup */
.restructuring-page .restructuring-banner-inner {
	min-height: 265px;
	padding-top: 42px;
	padding-bottom: 36px;
}

/* ================================
   FOCUS TITLE - TIDAK BISA DIKLIK
   Gunakan HTML: <span class="focus-title">Focus</span>
   ================================ */

.focus-page-nav .focus-title {
	position: relative;
	min-width: 110px;
	min-height: 62px;
	padding: 0 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--el-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: default;
	pointer-events: none;
	user-select: none;
}

/* Garis pembatas setelah Focus */
.focus-page-nav .focus-title::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(65, 20, 24, 0.55);
}

/* ================================
   LINK FOCUS ITEM
   ================================ */

.focus-page-nav a {
	position: relative;
	min-width: 180px;
	min-height: 62px;
	padding: 0 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--el-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	transition: 0.25s ease;
}

/* Garis pembatas antar menu focus */
.focus-page-nav a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(65, 20, 24, 0.55);
}

/* Icon panah merah kecil untuk semua link, kecuali tulisan Focus */
.focus-page-nav a::before {
	content: "";
	width: 14px;
	height: 28px;
	margin-right: 14px;
	background: var(--el-red);
	clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
	flex: 0 0 auto;
}

/* Hover dan active */
.focus-page-nav a:hover,
.focus-page-nav a.active {
	background: rgba(171, 35, 40, 0.08);
	color: var(--el-red);
}

/* Supaya active tidak berubah jadi terlalu ramai */
.focus-page-nav a.active {
	font-weight: 800;
}

/* ================================
   HEADER DI HALAMAN FOCUS
   ================================ */

/* Kalau mau header transparan */
.restructuring-page .el-header {
	background: transparent !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
}

/* Saat scroll baru muncul background burgundy transparan */
.restructuring-page .el-header.scrolled {
	background: rgba(74, 8, 17, 0.72) !important;
	backdrop-filter: blur(8px);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1199.98px) {
	.focus-page-nav {
		margin-top: 82px;
		grid-template-columns: 100px repeat(8, max-content);
	}

	.focus-page-nav .focus-title {
		min-width: 100px;
	}

	.focus-page-nav a {
		min-width: 120px;
	}
}

@media (max-width: 767.98px) {
	.focus-page-nav {
		margin-top: 72px;
		grid-template-columns: 100px repeat(8, max-content);
		min-height: 58px;
	}

	.focus-page-nav .focus-title,
	.focus-page-nav a {
		min-height: 58px;
		font-size: 12px;
		padding: 0 18px;
	}

	.focus-page-nav .focus-title {
		min-width: 95px;
	}

	.focus-page-nav a {
		min-width: 220px;
	}

	.focus-page-nav a::before {
		width: 12px;
		height: 24px;
		margin-right: 12px;
	}

	.focus-page-nav + .restructuring-banner {
		margin-top: 0 !important;
	}
}

/* ==========================================================
   FIX FOCUS PAGE NAV COLOR - FORCE RED
   ========================================================== */

.focus-page-nav {
	background: var(--el-cream) !important;
}

/* Tulisan FOCUS */
.focus-page-nav .focus-title {
	color: var(--el-red) !important;
	background: transparent !important;
}

/* Semua link focus */
.focus-page-nav > a,
.focus-page-nav > a:link,
.focus-page-nav > a:visited,
.focus-page-nav > a:hover,
.focus-page-nav > a:focus,
.focus-page-nav > a:active {
	color: var(--el-red) !important;
	background: transparent;
}

/* Active tetap merah */
.focus-page-nav > a.active {
	color: var(--el-red) !important;
	font-weight: 800;
}

/* Hover boleh ada background tipis, tapi tulisan tetap merah */
.focus-page-nav > a:hover,
.focus-page-nav > a.active:hover {
	background: rgba(171, 35, 40, 0.08) !important;
	color: var(--el-red) !important;
}

/* Icon panah kecil merah */
.focus-page-nav > a::before {
	background: var(--el-red) !important;
}

/* Garis pembatas tetap gelap/merah lembut */
.focus-page-nav > a:not(:last-child)::after,
.focus-page-nav .focus-title::after {
	background: rgba(65, 20, 24, 0.55) !important;
}

/* ==========================================================
   FIX HEADER BACKGROUND RESTRUCTURING PAGE - RED
   ========================================================== */

/* Header utama jadi merah */
.restructuring-page .el-header {
	background: var(--el-red) !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
}

/* Saat scroll tetap merah lebih gelap */
.restructuring-page .el-header.scrolled {
	background: var(--el-dark-red) !important;
	backdrop-filter: none !important;
}

/* Logo tetap putih, jadi jangan difilter merah */
.restructuring-page .el-logo img {
	filter: none !important;
}

/* Menu utama tetap putih */
.restructuring-page .el-main-nav > a,
.restructuring-page .el-main-nav > a:link,
.restructuring-page .el-main-nav > a:visited,
.restructuring-page .el-main-nav > a:hover,
.restructuring-page .el-main-nav > a:focus,
.restructuring-page .el-main-nav > a:active {
	color: #ffffff !important;
}

/* Active menu agak cream seperti homepage */
.restructuring-page .el-main-nav > a.active,
.restructuring-page .el-main-nav > a:hover {
	color: rgba(231, 230, 221, 0.72) !important;
}

/* Garis pembatas menu jadi putih */
.restructuring-page .el-main-nav > a::before {
	background: rgba(255, 255, 255, 0.58) !important;
}

/* Hamburger mobile putih */
.restructuring-page .el-nav-toggle span {
	background: #ffffff !important;
}

/* Focus nav tetap berada di bawah header merah */
.focus-page-nav {
	margin-top: 82px !important;
	background: var(--el-cream) !important;
}

/* ==========================================================
   FOCUS PAGE NAV - ONE ROW WITH 7 FOCUS ITEMS
   ========================================================== */

.focus-page-nav {
	position: relative;
	z-index: 20;
	margin-top: 82px !important;
	width: 100%;
	min-height: 62px;
	display: grid;
	grid-template-columns:
		110px
		minmax(150px, 1fr)
		minmax(230px, 1.3fr)
		minmax(160px, 1fr)
		minmax(170px, 1fr)
		minmax(160px, 1fr)
		minmax(160px, 1fr)
		minmax(190px, 1.1fr)
		minmax(150px, 1fr);

	align-items: stretch;
	background: var(--el-cream) !important;

	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}

/* tulisan Focus saja, tidak bisa diklik */
.focus-page-nav .focus-title {
	position: relative;
	min-height: 62px;
	padding: 0 22px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--el-red) !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;

	cursor: default;
	pointer-events: none;
	user-select: none;
}

/* link menu */
.focus-page-nav > a {
	position: relative;
	min-height: 62px;
	padding: 0 22px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--el-red) !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;

	transition: 0.25s ease;
}

/* semua state tetap merah */
.focus-page-nav > a:link,
.focus-page-nav > a:visited,
.focus-page-nav > a:hover,
.focus-page-nav > a:focus,
.focus-page-nav > a:active,
.focus-page-nav > a.active {
	color: var(--el-red) !important;
}

/* hover dan active */
.focus-page-nav > a:hover,
.focus-page-nav > a.active {
	background: rgba(171, 35, 40, 0.08) !important;
}

/* garis pembatas */
.focus-page-nav .focus-title::after,
.focus-page-nav > a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(65, 20, 24, 0.55) !important;
}

/* icon panah merah */
.focus-page-nav > a::before {
	content: "";
	width: 28px;
	height: 28px;
	margin-right: 8px;
	display: inline-block;
	flex: 0 0 28px;
	background: transparent url("../images/focus-arrow.png") no-repeat center /
		contain !important;
	background-color: transparent !important;
	clip-path: none !important;
	border: 0 !important;
}

.focus-page-nav > a.green-focus::before {
	background: transparent url("../images/focus-arrow-green.png") no-repeat
		center / contain !important;
}

/* jangan ada wrapping */
.focus-page-nav > *,
.focus-page-nav > a {
	white-space: nowrap;
}

/* banner langsung di bawah focus nav */
.focus-page-nav + .restructuring-banner {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.restructuring-page .restructuring-banner {
	padding-top: 0 !important;
}

.restructuring-page .restructuring-banner-inner {
	min-height: 265px;
	padding-top: 42px;
	padding-bottom: 36px;
}

.focus-page-nav.focus-index {
	margin-top: 0px !important;
}

/* responsive */
@media (max-width: 1399.98px) {
	.focus-page-nav {
		grid-template-columns: 100px 170px 240px 170px 180px 170px 170px 210px 160px;
	}
}

@media (max-width: 767.98px) {
	.focus-page-nav {
		margin-top: 72px !important;
		min-height: 58px;
		grid-template-columns: 100px 170px 240px 170px 180px 170px 170px 210px 160px;
	}

	.focus-page-nav .focus-title,
	.focus-page-nav > a {
		min-height: 58px;
		font-size: 12px;
		padding: 0 18px;
	}

	.focus-page-nav > a::before {
		width: 12px;
		height: 24px;
		margin-right: 12px;
	}
}

/* ==========================================================
   HOME FOCUS NAV - FORCE ONE ROW
   ========================================================== */

.focus-nav {
	width: 100%;
	min-height: 62px;

	display: grid;
	grid-template-columns:
		110px
		minmax(170px, 1fr)
		minmax(250px, 1.35fr)
		minmax(180px, 1fr)
		minmax(190px, 1fr)
		minmax(180px, 1fr)
		minmax(180px, 1fr)
		minmax(180px, 1fr);

	align-items: stretch;
	background: var(--el-cream) !important;

	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}

.focus-nav a {
	position: relative;
	min-height: 62px;
	padding: 0 22px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--el-red) !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;

	transition: 0.25s ease;
}

.focus-nav .focus-title {
	min-width: 110px;
	justify-content: center;
}

.focus-nav a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(65, 20, 24, 0.55);
}

.focus-nav a:not(.focus-title)::before {
	content: "";
	width: 14px;
	height: 28px;
	margin-right: 14px;
	background: var(--el-red);
	clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
	flex: 0 0 auto;
}

.focus-nav a:hover,
.focus-nav a.active {
	background: rgba(171, 35, 40, 0.08);
	color: var(--el-red) !important;
}

/* Responsive */
@media (max-width: 1399.98px) {
	.focus-nav {
		grid-template-columns:
			100px
			190px
			280px
			200px
			210px
			200px
			200px
			200px;
	}
}

@media (max-width: 767.98px) {
	.focus-nav {
		min-height: 58px;
		grid-template-columns:
			95px
			200px
			290px
			210px
			220px
			210px
			210px
			210px;
	}

	.focus-nav a {
		min-height: 58px;
		font-size: 12px;
		padding: 0 18px;
	}

	.focus-nav a:not(.focus-title)::before {
		width: 12px;
		height: 24px;
		margin-right: 12px;
	}
}

/* ==========================================================
   HOME FOCUS NAV - FINAL RAPIH SATU BARIS
   ========================================================== */

.focus-nav {
	width: 100%;
	min-height: 68px;

	display: grid;
	grid-template-columns:
		110px
		minmax(190px, 1fr)
		minmax(280px, 1.35fr)
		minmax(210px, 1fr)
		minmax(230px, 1fr)
		minmax(220px, 1fr)
		minmax(220px, 1fr)
		minmax(240px, 1fr);

	align-items: stretch;

	background: var(--el-cream) !important;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}

/* Focus title, bisa untuk <span class="focus-title">Focus</span> */
.focus-nav .focus-title {
	position: relative;
	min-width: 110px;
	min-height: 68px;
	padding: 0 24px;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	color: var(--el-red) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;

	background: transparent !important;
	cursor: default;
	pointer-events: none;
	user-select: none;
}

/* Semua link focus */
.focus-nav > a {
	position: relative;
	min-height: 68px;
	padding: 0 28px;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	color: var(--el-red) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;

	background: transparent !important;
	transition: 0.25s ease;
}

/* State link tetap merah */
.focus-nav > a:link,
.focus-nav > a:visited,
.focus-nav > a:hover,
.focus-nav > a:focus,
.focus-nav > a:active,
.focus-nav > a.active {
	color: var(--el-red) !important;
}

/* Garis pembatas setelah Focus dan antar menu */
.focus-nav .focus-title::after,
.focus-nav > a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	width: 1px;
	height: 64%;
	background: rgba(65, 20, 24, 0.55);
}

/* Icon panah merah kecil, hanya untuk link, bukan Focus */
.focus-nav > a::before {
	content: "";
	width: 15px;
	height: 30px;
	margin-right: 16px;
	background: var(--el-red) !important;
	clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
	flex: 0 0 auto;
}

/* Hover */
.focus-nav > a:hover,
.focus-nav > a.active {
	background: rgba(171, 35, 40, 0.08) !important;
}

/* Hilangkan style lama yang mungkin bikin Focus kecil */
.focus-nav .focus-title::before {
	display: none !important;
}

/* Responsive */
@media (max-width: 1399.98px) {
	.focus-nav {
		grid-template-columns:
			110px
			210px
			300px
			230px
			240px
			230px
			230px
			250px;
	}
}

@media (max-width: 767.98px) {
	.focus-nav {
		min-height: 60px;
		grid-template-columns:
			95px
			210px
			300px
			220px
			230px
			220px
			220px
			240px;
	}

	.focus-nav .focus-title,
	.focus-nav > a {
		min-height: 60px;
		font-size: 12px !important;
		padding: 0 18px;
	}

	.focus-nav > a::before {
		width: 12px;
		height: 24px;
		margin-right: 12px;
	}
}

/* ==========================================================
   MERGERS & ACQUISITIONS PAGE
   ========================================================== */

.merger-page .restructuring-breadcrumb .current {
	color: #ffffff;
}

.merger-page .restructuring-banner-left h1 {
	max-width: 760px;
	line-height: 1.08;
}

/* Supaya judul panjang tidak terlalu besar */
@media (min-width: 992px) {
	.merger-page .restructuring-banner-left h1 {
		font-size: clamp(34px, 2.8vw, 48px);
	}
}

/* Quote dan intro */
.merger-quote {
	max-width: 760px;
}

.merger-intro {
	max-width: 980px;
}

/* 4 cards dalam Integrated Advice */
.merger-pill-section {
	max-width: 1020px;
}

.merger-four-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px 42px;

	padding: 0 0 0;
}

.merger-card {
	border-radius: 0 0 28px 28px;
}

.merger-card h3 {
	min-height: 78px;
}

/* Project highlight khusus M&A */
.merger-project-highlight .project-card h3 {
	color: #a1272c;
}

.merger-project-highlight .project-logo {
	min-height: 140px;
}

.merger-project-highlight .project-logo img {
	max-width: 180px;
	max-height: 110px;
}

/* Responsive */
@media (max-width: 991.98px) {
	.merger-four-cards {
		grid-template-columns: 1fr;
		gap: 24px;
		border-left: 0;
		border-right: 0;
	}

	.merger-card ul {
		min-height: auto;
	}
}

@media (max-width: 575.98px) {
	.merger-page .restructuring-banner-left h1 {
		font-size: 25px;
	}

	.merger-card h3 {
		min-height: auto;
	}
}

/* ==========================================================
   FUNDRAISING PAGE
   ========================================================== */

.fundraising-page .restructuring-banner-left h1 {
	max-width: 620px;
}

.fundraising-page .restructuring-banner-right p {
	max-width: 760px;
}

/* Intro body */
.fundraising-quote {
	max-width: 760px;
	font-weight: 400;
}

.fundraising-intro {
	max-width: 1040px;
}

.fundraising-intro p {
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 1.38;
	font-weight: 500;
	text-align: justify;
}

/* Integrated advice dark layout */
.fundraising-advice-section {
	margin-top: 42px;
	max-width: 1200px;
	border: 1px solid #1f211d;
	background: #e7e6dd;
}

.fundraising-advice-heading {
	width: 100%;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;

	background: #1f211d;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.fundraising-advice-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #e7e6dd;
}

.fundraising-advice-card {
}

.fundraising-advice-card:nth-child(2) {
	border-right: 0;
}

.fundraising-green-card {
	grid-column: 1 / -1;
	border-right: 0;
	border-bottom: 0;
}

.fundraising-card-title {
	background: #1f211d;
	color: #ffffff;
	min-height: 42px;
	display: flex;
	align-items: center;
	padding: 0 12px;

	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.fundraising-card-body {
	padding: 12px 16px 18px;
}

.fundraising-card-body h3 {
	margin: 0 0 10px;
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	font-style: italic;
	text-decoration: underline;
	line-height: 1.3;
}

.fundraising-card-body ul {
	margin: 0;
	padding-left: 20px;
}

.fundraising-card-body li {
	margin-bottom: 10px;
	color: #111111;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 500;
}

.fundraising-card-body strong {
	font-weight: 800;
}

/* Beyond boundaries */
.fundraising-beyond-box {
	margin-top: 20px;
	border: 1px solid #1f211d;
	background: #e7e6dd;
}

.fundraising-beyond-heading {
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;

	background: #c00000;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.fundraising-beyond-content {
	padding: 18px 18px 24px;
}

.fundraising-beyond-content h4 {
	margin: 0 0 18px;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
}

.fundraising-beyond-content ul {
	margin: 0;
	padding-left: 20px;
}

.fundraising-beyond-content li {
	margin-bottom: 8px;
	color: #111111;
	font-size: 16px;
	line-height: 1.42;
	font-weight: 500;
}

/* Project highlight */
.fundraising-project-highlight {
	margin-top: 70px;
}

.fundraising-project-highlight .project-card h3 {
	color: #a1272c;
}

.fundraising-project-highlight .project-logo-text span {
	font-size: 18px;
	line-height: 1.2;
}

/* Responsive */
@media (max-width: 991.98px) {
	.fundraising-advice-grid {
		grid-template-columns: 1fr;
	}

	.fundraising-advice-card,
	.fundraising-advice-card:nth-child(2) {
		border-right: 0;
	}

	.fundraising-advice-heading,
	.fundraising-beyond-heading,
	.fundraising-card-title {
		letter-spacing: 0.22em;
	}

	.fundraising-intro p {
		font-size: 16px;
		text-align: left;
	}
}

@media (max-width: 575.98px) {
	.fundraising-advice-heading,
	.fundraising-beyond-heading {
		font-size: 14px;
		letter-spacing: 0.16em;
		text-align: center;
	}

	.fundraising-card-title {
		font-size: 14px;
		letter-spacing: 0.18em;
	}

	.fundraising-card-body li,
	.fundraising-beyond-content li {
		font-size: 14px;
	}

	.fundraising-beyond-content h4 {
		font-size: 16px;
	}
}

/* ==========================================================
   FUNDRAISING - STYLE MIRIP MERGER / RESTRUCTURING
   ========================================================== */

.fundraising-pill-section {
	margin-top: 42px;
	max-width: 1020px;
}

.fundraising-pill-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 40px;
	margin-top: 4px;
}

.fundraising-pill-card {
	background: #e4e0da;
	border-radius: 0 0 28px 28px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.fundraising-pill-card h3 {
	position: relative;
	margin: 0;
	padding: 22px 26px 18px;
	text-align: center;
	color: #23344a;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 0;
	background: #ffffff;
}

.fundraising-pill-card ul {
	margin: 0;
	padding: 18px 22px 24px 34px;
	min-height: 250px;
}

.fundraising-pill-card li {
	margin-bottom: 10px;
	color: #111111;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
}

.fundraising-pill-card li strong {
	font-weight: 700;
}

.fundraising-pill-card-wide {
	grid-column: 1 / -1;
}

.fundraising-pill-card-wide ul {
	min-height: auto;
}

.fundraising-beyond-style {
	background: #eadfdd;
	border-radius: 0 0 28px 28px;
	overflow: hidden;
}

.fundraising-beyond-style .beyond-boundaries-content {
	padding: 22px 24px 26px;
}

.fundraising-beyond-style .beyond-boundaries-content h4 {
	margin: 0 0 12px;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
}

.fundraising-beyond-style .beyond-boundaries-content ul {
	margin: 0;
	padding-left: 18px;
}

.fundraising-beyond-style .beyond-boundaries-content li {
	margin-bottom: 10px;
	color: #111111;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
}

/* rapikan intro fundraising */
.fundraising-intro {
	max-width: 1020px;
}

.fundraising-intro p {
	margin-bottom: 14px;
	font-size: 16px;
	line-height: 1.42;
	font-weight: 500;
	color: #111111;
}

/* responsive */
@media (max-width: 991.98px) {
	.fundraising-pill-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.fundraising-pill-card-wide {
		grid-column: auto;
	}

	.fundraising-pill-card ul {
		min-height: auto;
	}
}

@media (max-width: 575.98px) {
	.fundraising-pill-card h3 {
		font-size: 19px;
		padding: 18px 20px 16px;
	}

	.fundraising-pill-card ul {
		padding: 16px 18px 20px 28px;
	}

	.fundraising-pill-card li,
	.fundraising-beyond-style .beyond-boundaries-content li {
		font-size: 14px;
	}
}

/* ==========================================================
   FUNDRAISING INTEGRATED ADVICE - FINAL REDESIGN
   Like previous M&A / Restructuring design
   ========================================================== */

.fundraising-advice-redesign {
	max-width: 1180px;
	margin-top: 44px;
}

/* red top pill */
.fundraising-advice-title {
	width: 100%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #a8272d;
	color: #ffffff;
	border-radius: 44px 44px 0 0;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.fundraising-advice-title.green-title {
	background: #2f7f2f;
}

/* card grid */
.fundraising-advice-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px 48px;
}

/* card */
.fundraising-advice-card {
	background: #e4e0da;
	border-radius: 0 0 28px 28px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

/* card title white area */
.fundraising-card-head {
	position: relative;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-bottom: 0;
}

.fundraising-card-head h3 {
	margin: 0;
	color: #243348;

	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* red corner */
/* discipline arrow */
.fundraising-card-head h3::after {
	content: "";
	position: absolute;
	top: 12px;
	width: 30px;
	height: 30px;
	background: transparent url("../images/discipline-arrow.png") no-repeat
		center / contain;
	border: 0;
}

.fundraising-card-head h3.green-arrow-integrated::after {
	background: transparent url("../images/discipline-arrow-green.png") no-repeat
		center / contain;
}

/* beige body */
.fundraising-card-body {
	background: #e4e0da;
	padding: 24px 26px 30px;
	min-height: 285px;
}

.fundraising-card-body ul {
	margin: 0;
	padding-left: 20px;
}

.fundraising-card-body li {
	margin-bottom: 13px;

	color: #111111;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
}

.fundraising-card-body li strong {
	font-weight: 800;
}

/* Green card full width */
.fundraising-advice-card-wide {
	grid-column: 1 / -1;
}

.fundraising-advice-card-wide .fundraising-card-body {
	min-height: auto;
}

/* arrow */
.fundraising-down-arrow {
	margin: 44px 0 34px;
	text-align: center;
	color: #a8272d;
	font-size: 70px;
	line-height: 0.8;
	font-weight: 700;
}

.fundraising-down-arrow.green-arrow {
	color: #2f7f2f;
}

/* beyond boundaries */
.fundraising-beyond-redesign {
	background: #eadfdd;
	border-radius: 0 0 30px 30px;
	overflow: hidden;
}

.fundraising-beyond-title {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #a8272d;
	color: #ffffff;
	border-radius: 44px 44px 0 0;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.fundraising-beyond-title.green-title {
	background: #2f7f2f;
}

.fundraising-beyond-body {
	padding: 28px 30px 32px;
}

.fundraising-beyond-body h4 {
	margin: 0 0 18px;

	color: #111111;
	font-size: 19px;
	font-weight: 700;
}

.fundraising-beyond-body ul {
	margin: 0;
	padding-left: 20px;
}

.fundraising-beyond-body li {
	margin-bottom: 12px;

	color: #111111;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 500;
}

.fundraising-beyond-body li strong {
	font-weight: 800;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991.98px) {
	.fundraising-advice-cards {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.fundraising-advice-card-wide {
		grid-column: auto;
	}

	.fundraising-card-body {
		min-height: auto;
	}

	.fundraising-down-arrow {
		font-size: 56px;
		margin: 34px 0 28px;
	}
}

@media (max-width: 575.98px) {
	.fundraising-advice-title,
	.fundraising-beyond-title {
		min-height: 44px;
		font-size: 15px;
		border-radius: 30px 30px 0 0;
	}

	.fundraising-card-head {
		min-height: 64px;
	}

	.fundraising-card-head h3 {
		font-size: 20px;
	}

	.fundraising-card-head::after {
		top: 16px;
		right: 20px;
		width: 12px;
		height: 12px;
		border-top-width: 3px;
		border-right-width: 3px;
	}

	.fundraising-card-body {
		padding: 20px 20px 24px;
	}

	.fundraising-card-body li,
	.fundraising-beyond-body li {
		font-size: 14px;
	}

	.fundraising-beyond-body {
		padding: 22px 22px 26px;
	}
}

/* ==========================================================
   PRIVATE CREDIT PAGE
   ========================================================== */

.privatecredit-page .restructuring-banner-left h1 {
	max-width: 620px;
}

.privatecredit-page .restructuring-banner-right p {
	max-width: 720px;
}

/* Intro */
.privatecredit-intro {
	max-width: 1080px;
	margin-bottom: 42px;
}

.privatecredit-intro p {
	margin: 0 0 18px;
	color: #111111;
	font-size: 18px;
	line-height: 1.38;
	font-weight: 500;
	text-align: justify;
}

.privatecredit-intro p strong em {
	font-weight: 700;
	font-style: italic;
}

/* ==========================================================
   PRIVATE CREDIT - INTEGRATED ADVICE REDESIGN
   ========================================================== */

.privatecredit-advice-redesign {
	max-width: 1180px;
	margin-top: 44px;
}

.privatecredit-advice-title {
	width: 100%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #a8272d;
	color: #ffffff;
	border-radius: 44px 44px 0 0;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.privatecredit-advice-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px 48px;
}

.privatecredit-advice-card {
	background: #e4e0da;
	border-radius: 0 0 28px 28px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.privatecredit-card-head {
	position: relative;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-bottom: 0;
}

.privatecredit-card-head h3 {
	margin: 0;
	color: #243348;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.privatecredit-card-head::after {
	content: "";
	position: absolute;
	margin-right: -155px;
	top: 12px;
	width: 35px;
	height: 35px;
	background-image: url(../images/discipline-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: 0;
}

.privatecredit-card-body {
	background: #e4e0da;
	padding: 24px 26px 30px;
	min-height: 315px;
}

.privatecredit-card-body ul {
	margin: 0;
	padding-left: 20px;
}

.privatecredit-card-body li {
	margin-bottom: 13px;
	color: #111111;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
}

.privatecredit-card-body li strong {
	font-weight: 800;
}

/* Arrow */
.privatecredit-down-arrow {
	margin: 44px 0 34px;
	text-align: center;
	color: #a8272d;
	font-size: 70px;
	line-height: 0.8;
	font-weight: 700;
}

/* Beyond */
.privatecredit-beyond-redesign {
	background: #eadfdd;
	border-radius: 0 0 30px 30px;
	overflow: hidden;
}

.privatecredit-beyond-title {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #a8272d;
	color: #ffffff;
	border-radius: 44px 44px 0 0;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.privatecredit-beyond-body {
	padding: 28px 30px 32px;
}

.privatecredit-beyond-body h4 {
	margin: 0 0 18px;
	color: #111111;
	font-size: 19px;
	font-weight: 700;
}

.privatecredit-beyond-body ul {
	margin: 0;
	padding-left: 20px;
}

.privatecredit-beyond-body li {
	margin-bottom: 12px;
	color: #111111;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 500;
}

.privatecredit-beyond-body li strong {
	font-weight: 800;
}

/* ==========================================================
   PRIVATE CREDIT CASE STUDY
   ========================================================== */

.privatecredit-case-study {
	margin-top: 72px;
	max-width: 1450px;
}

.privatecredit-case-study .project-highlight-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.privatecredit-case-study .project-highlight-top h2 {
	margin: 0;
	color: #a8a48f;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

.privatecredit-case-study .project-slider-nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.privatecredit-case-study .project-slider-btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1.5px solid rgba(178, 40, 45, 0.28);
	background: transparent;
	color: #b2282d;
	font-size: 28px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.25s ease;
}

.privatecredit-case-study .project-slider-btn:hover {
	background: rgba(178, 40, 45, 0.07);
	border-color: rgba(178, 40, 45, 0.55);
	color: #b2282d;
}

.privatecredit-case-study .project-slider {
	overflow: hidden;
}

.privatecredit-case-study .project-slider-track {
	display: flex;
	gap: 24px;
	align-items: stretch;
}

.privatecredit-case-study .privatecredit-case-card {
	flex: 0 0 calc((100% - 48px) / 3);
	max-width: calc((100% - 48px) / 3);
	background: #f3f2ed;
	border: 1px solid #b8b39d;
	box-shadow: none;
	border-radius: 0;
	overflow: hidden;
}

.privatecredit-case-topline {
	height: 2px;
	background: #b8b39d;
}

.privatecredit-case-body {
	padding: 24px 22px 28px;
	min-height: 420px;
	display: flex;
	flex-direction: column;
}

.privatecredit-case-body h3 {
	margin: 0 0 18px;
	color: #222222;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
}

.privatecredit-case-body h4 {
	margin: 0 0 12px;
	color: #222222;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.privatecredit-case-tag {
	margin: 0 0 36px;
	padding: 6px 10px;
	border: 1px solid #b8b39d;
	color: #9a967f;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.25;
}

.privatecredit-case-body p {
	margin: auto 0 0;
	color: #555555;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1199.98px) {
	.privatecredit-case-study .privatecredit-case-card {
		flex: 0 0 calc((100% - 24px) / 2);
		max-width: calc((100% - 24px) / 2);
	}
}

@media (max-width: 991.98px) {
	.privatecredit-advice-cards {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.privatecredit-card-body {
		min-height: auto;
	}

	.privatecredit-down-arrow {
		font-size: 56px;
		margin: 34px 0 28px;
	}

	.privatecredit-intro p {
		font-size: 16px;
		text-align: left;
	}
}

@media (max-width: 767.98px) {
	.privatecredit-case-study .project-highlight-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.privatecredit-case-study .privatecredit-case-card {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.privatecredit-case-body {
		min-height: auto;
		padding: 20px 16px 22px;
	}
}

@media (max-width: 575.98px) {
	.privatecredit-advice-title,
	.privatecredit-beyond-title {
		min-height: 44px;
		font-size: 15px;
		border-radius: 30px 30px 0 0;
	}

	.privatecredit-card-head {
		min-height: 64px;
	}

	.privatecredit-card-head h3 {
		font-size: 20px;
	}

	.privatecredit-card-head::after {
		width: 35px;
		height: 35px;
		border-top-width: 3px;
		border-right-width: 3px;
		background-image: url(../images/discipline-arrow.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.privatecredit-card-body {
		padding: 20px 20px 24px;
	}

	.privatecredit-card-body li,
	.privatecredit-beyond-body li,
	.privatecredit-case-body p {
		font-size: 14px;
	}

	.privatecredit-beyond-body {
		padding: 22px 22px 26px;
	}

	.privatecredit-case-body h3 {
		font-size: 24px;
	}

	.privatecredit-case-tag {
		font-size: 11px;
		letter-spacing: 0.16em;
	}
}

/* ==========================================================
   PRIVATE CREDIT CASE STUDY - KEEP OLD SLIDER STRUCTURE
   HTML tetap:
   .project-highlight-section.privatecredit-case-study
   .project-slider
   .project-slider-track
   .project-card.privatecredit-case-card
   ========================================================== */

.privatecredit-case-study {
	margin-top: 76px;
	max-width: 1500px;
}

/* Header: CASE STUDY + arrows */
.privatecredit-case-study .project-highlight-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.privatecredit-case-study .project-highlight-top h2 {
	margin: 0;
	color: #a8a48f;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	line-height: 1;
}

/* Arrow buttons */
.privatecredit-case-study .project-slider-nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.privatecredit-case-study .project-slider-btn {
	width: 52px;
	height: 52px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border: 1.5px solid rgba(178, 40, 45, 0.22);
	border-radius: 50%;
	background: transparent;

	color: #b2282d;
	font-size: 28px;
	line-height: 1;
	padding: 0;

	transition: 0.25s ease;
}

.privatecredit-case-study .project-slider-btn:hover {
	background: rgba(178, 40, 45, 0.06);
	border-color: rgba(178, 40, 45, 0.48);
	color: #b2282d;
}

/* Slider track tetap pakai class lama supaya JS lama jalan */
.privatecredit-case-study .project-slider {
	overflow: hidden;
}

.privatecredit-case-study .project-slider-track {
	display: flex;
	gap: 24px;
	align-items: stretch;
	transition: transform 0.45s ease;
	will-change: transform;
}

/* Card case study */
.privatecredit-case-study .project-card.privatecredit-case-card {
	flex: 0 0 calc((100% - 48px) / 3);
	max-width: calc((100% - 48px) / 3);

	background: #f2f1ec;
	border: 1px solid #b8b39d;
	box-shadow: none;
	border-radius: 0;
	overflow: hidden;
}

/* Hide red top line, because private credit case study doesn't use it */
.privatecredit-case-study .privatecredit-case-topline,
.privatecredit-case-study .project-card-topline {
	display: none !important;
}

/* Body */
.privatecredit-case-study .privatecredit-case-body {
	min-height: 420px;
	padding: 30px 26px 30px;

	display: flex;
	flex-direction: column;
	background: #f2f1ec;
}

.privatecredit-case-study .privatecredit-case-body h3 {
	margin: 0 0 26px;
	color: #222222;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
}

.privatecredit-case-study .privatecredit-case-body h4 {
	margin: 0 0 14px;
	color: #222222;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

/* Tag box */
.privatecredit-case-study .privatecredit-case-tag {
	width: 100%;
	min-height: 32px;
	margin: 0 0 auto;
	padding: 7px 12px;

	display: flex;
	align-items: center;

	border: 1px solid #b8b39d;
	color: #9a967f;
	background: transparent;

	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	line-height: 1.2;
}

/* Description at bottom */
.privatecredit-case-study .privatecredit-case-body p {
	margin: 90px 0 0;

	color: #4b4b4b;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 1199.98px) {
	.privatecredit-case-study .project-card.privatecredit-case-card {
		flex: 0 0 calc((100% - 24px) / 2);
		max-width: calc((100% - 24px) / 2);
	}

	.privatecredit-case-study .privatecredit-case-body {
		min-height: 390px;
	}
}

@media (max-width: 767.98px) {
	.privatecredit-case-study .project-highlight-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.privatecredit-case-study .project-card.privatecredit-case-card {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.privatecredit-case-study .privatecredit-case-body {
		min-height: auto;
		padding: 24px 20px 26px;
	}

	.privatecredit-case-study .privatecredit-case-body p {
		margin-top: 70px;
	}
}

@media (max-width: 575.98px) {
	.privatecredit-case-study .project-highlight-top h2 {
		font-size: 15px;
		letter-spacing: 0.28em;
	}

	.privatecredit-case-study .project-slider-btn {
		width: 44px;
		height: 44px;
		font-size: 24px;
	}

	.privatecredit-case-study .privatecredit-case-body h3 {
		font-size: 25px;
	}

	.privatecredit-case-study .privatecredit-case-body h4 {
		font-size: 16px;
	}

	.privatecredit-case-study .privatecredit-case-tag {
		font-size: 11px;
		letter-spacing: 0.18em;
	}

	.privatecredit-case-study .privatecredit-case-body p {
		font-size: 14px;
	}
}

/* ==========================================================
   DISCIPLINE FINANCE PAGE
   Layout follows focus page structure
   ========================================================== */

.discipline-finance-page .el-main-nav a.active {
	color: rgba(231, 230, 221, 0.72) !important;
}

/* Discipline nav: reuse focus-page-nav layout but only 4 items */
.discipline-page-nav {
	grid-template-columns: repeat(4, 1fr) !important;
	margin-top: 82px !important;
}

.discipline-page-nav > a {
	min-width: 240px;
}

.discipline-page-nav > a::before {
	display: none !important;
}

.discipline-page-nav > a.active {
	background: var(--el-dark-red) !important;
	color: #ffffff !important;
}

.discipline-page-nav > a:hover {
	background: --el-dark-red !important;
	color: var(--el-red) !important;
}

.discipline-page-nav > a.active:hover {
	background: --el-dark-red !important;
	color: var(--el-red) !important;
}

/* arrow AFTER tulisan */
.discipline-page-nav > a::after {
	content: "";
	width: 24px;
	height: 24px;
	display: inline-block;
	flex: 0 0 24px;
	background: transparent url("../images/discipline-arrow.png") no-repeat
		center / contain;
	border: 0;
	clip-path: none;
	transform: translateY(-7px);
}

/* Banner */
.discipline-finance-banner .restructuring-banner-left h1 {
	max-width: 640px;
}

.discipline-finance-banner .restructuring-banner-right p {
	max-width: 760px;
}

/* Content */
.discipline-finance-content {
	background: #f6f6f4;
	padding: 56px 0 78px;
}

.discipline-finance-container {
	max-width: 1500px;
}

.discipline-finance-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.35fr;
	gap: 20px;
	align-items: stretch;
}

/* Block title */
.discipline-block-title {
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #b8b39d;
	color: #b2282d;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}

/* Narrative */
.discipline-finance-left,
.discipline-finance-right {
	background: #f6f6f4;
}

.discipline-narrative {
	padding-right: 18px;
}

.discipline-narrative p {
	margin: 0 0 14px;
	color: #111111;
	font-size: 16px;
	line-height: 1.42;
	font-weight: 500;
	text-align: justify;
}

.discipline-narrative strong em {
	font-weight: 700;
	font-style: italic;
}

/* Services */
.finance-services {
	padding-left: 10px;
}

.finance-services h3 {
	margin: 0 0 6px;
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.finance-services ul {
	margin: 0 0 22px;
	padding-left: 18px;
}

.finance-services li {
	margin-bottom: 7px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.35;
	font-weight: 500;
	text-align: justify;
}

.finance-services li strong {
	font-weight: 800;
}

/* Mini project cards inside narrative column */
.finance-mini-highlight {
	margin-top: 38px;
}

.finance-mini-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.finance-mini-card {
	min-height: 340px;
	padding: 18px 14px 20px;
	background: #f2f1ec;
	border: 1px solid #b8b39d;
	display: flex;
	flex-direction: column;
}

.finance-mini-logo {
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 8px;
}

.finance-mini-logo img {
	max-width: 110px;
	max-height: 42px;
	object-fit: contain;
}

.finance-mini-card h3 {
	margin: 0 0 4px;
	color: #222222;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}

.finance-mini-card h4 {
	margin: 0 0 18px;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.finance-mini-tag {
	margin: 0 0 24px;
	padding: 10px 12px;
	min-height: 48px;
	border: 1px solid #b8b39d;
	color: #9a967f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.25;
}

.finance-mini-card p {
	margin: auto 0 0;
	color: #555555;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
}

/* Key persons */
.finance-keypersons {
	margin-top: 32px;
	padding-top: 22px;
	border-top: 1px solid #b8b39d;
}

.finance-keyperson-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 36px;
}

.finance-keyperson-card {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 18px;
	align-items: end;
}

.finance-person-photo {
	width: 110px;
	height: 110px;
	background: #d4d4d0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #777873;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
}

.finance-person-info h3 {
	margin: 0 0 4px;
	color: #111111;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
}

.finance-person-info p {
	margin: 0 0 10px;
	color: #555555;
	font-size: 15px;
	line-height: 1.25;
}

.finance-person-info a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 30px;
	padding: 0 14px;
	background: #2b2b29;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: capitalize;
	text-decoration: none;
}

.finance-person-info a:hover {
	background: var(--el-red);
	color: #ffffff;
}

/* Responsive */
@media (max-width: 1199.98px) {
	.discipline-finance-grid {
		grid-template-columns: 1fr;
	}

	.finance-services {
		padding-left: 0;
	}

	.finance-keyperson-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.discipline-page-nav {
		grid-template-columns: repeat(4, 240px) !important;
		overflow-x: auto;
	}
}

@media (max-width: 767.98px) {
	.discipline-page-nav {
		margin-top: 72px !important;
		grid-template-columns: repeat(4, 230px) !important;
	}

	.finance-mini-cards {
		grid-template-columns: 1fr;
	}

	.finance-keyperson-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.finance-keyperson-card {
		grid-template-columns: 90px minmax(0, 1fr);
	}

	.finance-person-photo {
		width: 90px;
		height: 90px;
	}

	.finance-person-info a {
		min-width: 180px;
	}
}

@media (max-width: 575.98px) {
	.discipline-narrative p,
	.finance-services li {
		font-size: 14px;
		text-align: left;
	}

	.finance-mini-card h3 {
		font-size: 26px;
	}

	.discipline-block-title {
		font-size: 13px;
		letter-spacing: 0.28em;
	}
}

/* ==========================================================
   DISCIPLINE FINANCE PROJECT HIGHLIGHTS - SLIDER
   ========================================================== */

.discipline-finance-project-highlight {
	margin-top: 38px;
	max-width: 100%;
}

/* heading kecil seperti screenshot */
.discipline-finance-project-highlight .project-highlight-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #b8b39d;
}

.discipline-finance-project-highlight .project-highlight-top h2 {
	margin: 0;
	color: #b2282d;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}

/* tombol slider kecil dan halus */
.discipline-finance-project-highlight .project-slider-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.discipline-finance-project-highlight .project-slider-btn {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(178, 40, 45, 0.35);
	border-radius: 50%;
	background: transparent;
	color: #b2282d;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.25s ease;
}

.discipline-finance-project-highlight .project-slider-btn:hover {
	background: rgba(178, 40, 45, 0.08);
	color: #b2282d;
}

/* slider */
.discipline-finance-project-highlight .project-slider {
	overflow: hidden;
}

.discipline-finance-project-highlight .project-slider-track {
	display: flex;
	gap: 22px;
	align-items: stretch;
	transition: transform 0.45s ease;
	will-change: transform;
}

/* card dibuat mirip screenshot */
.discipline-finance-project-highlight .discipline-finance-project-card {
	flex: 0 0 calc((100% - 44px) / 3);
	max-width: calc((100% - 44px) / 3);
	background: #f2f1ec;
	border: 1px solid #b8b39d;
	box-shadow: none;
	border-radius: 0;
	overflow: hidden;
}

.discipline-finance-project-highlight .project-card-body {
	min-height: 380px;
	padding: 22px 18px 24px;
	display: flex;
	flex-direction: column;
	background: #f2f1ec;
	border-top: 3px solid #b53a36;
}
/* Khusus halaman E&L Green: border hijau */
.discipline-green-page
	.discipline-finance-project-highlight
	.project-card-body {
	border-top: 2px solid #2f7f2f;
}

.discipline-green-page hr {
	border: 0;
	border-top: 0.5px solid #2f7f2f;
	opacity: 1;
}

/* logo */
.discipline-finance-project-highlight .finance-mini-logo {
	display: flex;
	align-items: center;
	justify-content: center !important;
	margin-bottom: 8px;
}

.discipline-finance-project-highlight .finance-mini-logo img {
	max-width: 120px;
	max-height: 42px;
	object-fit: contain;
	transform: scale(1.8);
}

/* amount */
.discipline-finance-project-highlight .project-card-body h3 {
	margin: 0 0 6px;
	font-size: 35px;
	font-weight: 300;
	line-height: 1;
}

/* company name */
.discipline-finance-project-highlight .project-card-body h4 {
	margin: 0 0 18px;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

/* tag box */
.discipline-finance-project-highlight .finance-mini-tag {
	margin: 0 0 28px;
	padding: 12px 14px;
	min-height: 54px;
	display: flex;
	align-items: center;
	border: 1px solid #b8b39d;
	color: #9a967f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	line-height: 1.25;
}

/* description bottom */
.discipline-finance-project-highlight .project-card-body p {
	margin: auto 0 0;
	color: #4b4b4b;
	font-size: 15px;
	line-height: 1.42;
	font-weight: 500;
}

/* responsive */
@media (max-width: 1199.98px) {
	.discipline-finance-project-highlight .discipline-finance-project-card {
		flex: 0 0 calc((100% - 22px) / 2);
		max-width: calc((100% - 22px) / 2);
	}

	.discipline-finance-project-highlight .finance-mini-logo img {
		transform: scale(2.2);
	}
}

@media (max-width: 767.98px) {
	.discipline-finance-project-highlight .project-highlight-top {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.discipline-finance-project-highlight .discipline-finance-project-card {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.discipline-finance-project-highlight .project-card-body {
		min-height: auto;
	}

	.discipline-finance-project-highlight .finance-mini-logo img {
		transform: scale(2.2);
	}
}

@media (max-width: 575.98px) {
	.discipline-finance-project-highlight .project-highlight-top h2 {
		font-size: 13px;
		letter-spacing: 0.28em;
	}

	.discipline-finance-project-highlight .project-card-body h3 {
		font-size: 26px;
	}

	.discipline-finance-project-highlight .project-card-body p {
		font-size: 14px;
	}

	.discipline-finance-project-highlight .finance-mini-logo img {
		transform: scale(2.2);
	}
}

/* ==========================================================
   DISCIPLINE LEGAL PAGE
   Reuse discipline-finance layout
   ========================================================== */

.discipline-legal-page .discipline-page-nav > a.active {
	background: var(--el-dark-red) !important;
	color: #ffffff !important;
}

.discipline-legal-page .discipline-page-nav > a.active:hover {
	background: var(--el-dark-red) !important;
	color: #ffffff !important;
}

.discipline-legal-banner .restructuring-banner-left h1 {
	max-width: 640px;
}

.discipline-legal-banner .restructuring-banner-right p {
	max-width: 850px;
}

/* Legal services two-column layout inside right panel */
.legal-services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: start;
}

.legal-services p {
	margin: 0 0 14px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.38;
	font-weight: 500;
	text-align: justify;
}

.legal-services h3 {
	margin: 0 0 10px;
	color: #111111;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.legal-services ul {
	margin: 0 0 28px;
	padding-left: 20px;
}

.legal-services li {
	margin-bottom: 8px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.35;
	font-weight: 500;
	text-align: left;
}

/* Project highlight legal */
.discipline-legal-project-highlight .legal-mini-logo-text {
	align-items: flex-start;
	height: 34px;
	margin-bottom: 10px;
}

.discipline-legal-project-highlight .legal-mini-logo-text span {
	color: #111111;
	font-size: 11px;
	font-weight: 600;
	font-style: italic;
	line-height: 1.2;
}

.discipline-legal-project-highlight .finance-mini-logo img {
	max-width: 110px;
	max-height: 42px;
	object-fit: contain;
}

.discipline-legal-project-highlight .finance-mini-tag {
	min-height: 58px;
}

.discipline-legal-project-highlight .project-card-body {
	min-height: 390px;
}

/* Key persons + partners heading */
.discipline-legal-keyperson-heading {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	margin-bottom: 18px;
}

.discipline-legal-keyperson-heading .discipline-block-title {
	margin-bottom: 20px;
}

.discipline-legal-keypersons {
	border-top: 0;
	padding-top: 0;
}

/* Responsive */
@media (max-width: 1199.98px) {
	.legal-services-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.discipline-legal-keyperson-heading {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 575.98px) {
	.legal-services p,
	.legal-services li {
		font-size: 14px;
		text-align: left;
	}

	.legal-services h3 {
		font-size: 16px;
	}
}

/* ==========================================================
   DISCIPLINE GREEN PAGE
   Reuse discipline-finance layout
   ========================================================== */

.discipline-green-page .discipline-page-nav > a {
	background: var(--el-cream) !important;
	color: var(--el-red) !important;
}

/* hover untuk menu yang tidak active */
.discipline-green-page .discipline-page-nav > a:hover:not(.active) {
	background: #eadfdd !important; /* soft pink */
	color: var(--el-red) !important;
}

/* active E&L Green */
.discipline-green-page .discipline-page-nav > a.active {
	background: #2f6f3e !important;
	color: #ffffff !important;
	font-weight: 800;
}

/* active ketika di-hover tetap green */
.discipline-green-page .discipline-page-nav > a.active:hover {
	background: #eadfdd !important;
	color: var(--el-red) !important;
}

/* garis pembatas tetap rapi */
.discipline-green-page .discipline-page-nav > a:not(:last-child)::after {
	background: rgba(65, 20, 24, 0.35) !important;
}

/* kalau mau green yang lebih elegant/dark */

.discipline-green-banner .restructuring-banner-left h1 {
	max-width: 640px;
}

.discipline-green-banner .restructuring-banner-right p {
	max-width: 760px;
}

/* Narrative list */
.discipline-green-narrative ul {
	margin: 0 0 16px;
	padding-left: 22px;
}

.discipline-green-narrative li {
	margin-bottom: 10px;
	color: #111111;
	font-size: 16px;
	line-height: 1.42;
	font-weight: 500;
	text-align: justify;
}

/* Green services two-column layout */
.green-services h3 {
	margin: 0 0 18px;
	color: #111111;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.green-services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: start;
}

.green-services h4 {
	margin: 0 0 4px;
	color: #111111;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.green-services p {
	margin: 0 0 6px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.35;
	font-weight: 500;
	text-align: left;
}

.green-services ul {
	margin: 0 0 22px;
	padding-left: 20px;
}

.green-services li {
	margin-bottom: 4px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.28;
	font-weight: 500;
	text-align: left;
}

.green-services li strong {
	font-weight: 800;
}

/* Project highlight green */
.discipline-green-project-highlight .project-card-body {
	min-height: 390px;
}

.discipline-green-project-highlight .project-card-body h3 {
	font-size: 24px;
	line-height: 1.05;
}

.discipline-green-project-highlight .project-card-body h4 {
	min-height: 38px;
	margin-bottom: 16px;
}

.discipline-green-project-highlight .finance-mini-tag {
	min-height: 58px;
}

.green-mini-logo-text {
	align-items: flex-start;
	height: 44px;
	margin-bottom: 10px;
}

.green-mini-logo-text span {
	color: #111111;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

/* Key persons green */
.discipline-green-keypersons {
	border-top: 0;
	padding-top: 0;
}

.discipline-green-keyperson-heading {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr;
	gap: 36px;
	margin-bottom: 18px;
}

.discipline-green-keyperson-heading .discipline-block-title {
	margin-bottom: 0;
}

.discipline-green-keypersons .finance-keyperson-grid {
	grid-template-columns: repeat(5, 1fr);
	gap: 26px;
}

.discipline-green-keypersons .finance-keyperson-card {
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 16px;
}

.discipline-green-keypersons .finance-person-photo {
	width: 96px;
	height: 96px;
}

.discipline-green-keypersons .finance-person-info a {
	min-width: 170px;
}

/* Responsive */
@media (max-width: 1399.98px) {
	.discipline-green-keypersons .finance-keyperson-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1199.98px) {
	.green-services-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.discipline-green-keyperson-heading {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 991.98px) {
	.discipline-green-keypersons .finance-keyperson-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.discipline-green-keypersons .finance-keyperson-grid {
		grid-template-columns: 1fr;
	}

	.discipline-green-keypersons .finance-keyperson-card {
		grid-template-columns: 90px minmax(0, 1fr);
	}

	.discipline-green-keypersons .finance-person-photo {
		width: 90px;
		height: 90px;
	}
}

@media (max-width: 575.98px) {
	.discipline-green-narrative li,
	.green-services p,
	.green-services li {
		font-size: 14px;
		text-align: left;
	}
}

/* ==========================================================
   DISCIPLINE TECHNICAL PAGE
   Reuse discipline-finance / discipline-legal layout
   ========================================================== */

.discipline-technical-page .discipline-page-nav > a.active {
	background: var(--el-dark-red) !important;
	color: #ffffff !important;
}

.discipline-technical-page .discipline-page-nav > a.active:hover {
	background: var(--el-dark-red) !important;
	color: #ffffff !important;
}

.discipline-technical-page .discipline-page-nav > a:hover:not(.active) {
	background: #eadfdd !important;
	color: var(--el-red) !important;
}

.discipline-technical-banner .restructuring-banner-left h1 {
	max-width: 720px;
}

.discipline-technical-banner .restructuring-banner-right p {
	max-width: 900px;
}

/* Narrative */
.discipline-technical-narrative p {
	margin-bottom: 15px;
}

/* Technical services */
.technical-services-intro {
	margin: 0 0 18px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.38;
	font-weight: 500;
	text-align: justify;
}

.technical-services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: start;
}

.technical-services h3 {
	margin: 0 0 8px;
	color: #111111;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.technical-services ul {
	margin: 0 0 20px;
	padding-left: 20px;
}

.technical-services li {
	margin-bottom: 7px;
	color: #111111;
	font-size: 15.5px;
	line-height: 1.32;
	font-weight: 500;
	text-align: left;
}

/* Project highlight technical */
.discipline-technical-project-highlight .project-card-body {
	min-height: 390px;
}

.discipline-technical-project-highlight .finance-mini-logo img {
	max-width: 110px;
	max-height: 42px;
	object-fit: contain;
}

.discipline-technical-project-highlight .project-card-body h3 {
	font-size: 30px;
	line-height: 1.05;
}

.discipline-technical-project-highlight .project-card-body h4 {
	min-height: 42px;
	margin-bottom: 16px;
}

.discipline-technical-project-highlight .finance-mini-tag {
	min-height: 58px;
}

.technical-mini-logo-text {
	align-items: flex-start;
	height: 44px;
	margin-bottom: 10px;
}

.technical-mini-logo-text span {
	color: #111111;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

/* Partner section */
.discipline-technical-keypersons {
	border-top: 0;
	padding-top: 0;
}

.discipline-technical-keyperson-heading {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	margin-bottom: 18px;
}

.discipline-technical-keyperson-heading .discipline-block-title {
	margin-bottom: 0;
}

.discipline-technical-keypersons .finance-keyperson-grid {
	grid-template-columns: minmax(0, 1fr);
	max-width: 560px;
}

.discipline-technical-keypersons .finance-keyperson-card {
	grid-template-columns: 110px minmax(0, 1fr);
}

/* Responsive */
@media (max-width: 1199.98px) {
	.technical-services-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 767.98px) {
	.discipline-technical-keypersons .finance-keyperson-grid {
		max-width: 100%;
	}

	.discipline-technical-keypersons .finance-keyperson-card {
		grid-template-columns: 90px minmax(0, 1fr);
	}
}

@media (max-width: 575.98px) {
	.technical-services-intro,
	.technical-services li {
		font-size: 14px;
		text-align: left;
	}

	.technical-services h3 {
		font-size: 16px;
	}

	.discipline-technical-project-highlight .project-card-body h3 {
		font-size: 26px;
	}
}

/* ==========================================================
   KEY PERSON PROFILE POPUP
   ========================================================== */

.finance-person-info .profile-popup-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 170px;
	min-height: 30px;
	margin-top: 8px;
	padding: 6px 14px;

	border: 0;
	background: #2b2b29;
	color: #ffffff;

	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: capitalize;
	text-decoration: none;

	cursor: pointer;
	transition: 0.25s ease;
}

.finance-person-info .profile-popup-btn:hover {
	background: var(--el-red);
	color: #ffffff;
}

/* modal wrapper */
.profile-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;

	display: none;
	align-items: center;
	justify-content: center;

	padding: 24px;
}

.profile-modal.is-open {
	display: flex;
}

/* dark overlay */
.profile-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
	backdrop-filter: blur(3px);
}

/* modal box */
.profile-modal-dialog {
	position: relative;
	z-index: 2;

	width: min(100%, 760px);
	min-height: 360px;

	display: grid;
	grid-template-columns: 230px 1fr;
	gap: 30px;

	background: #f6f6f4;
	border: 1px solid #b8b39d;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);

	padding: 34px;
}

/* close */
.profile-modal-close {
	position: absolute;
	top: 14px;
	right: 18px;

	width: 34px;
	height: 34px;

	border: 0;
	background: transparent;
	color: #111111;

	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

.profile-modal-close:hover {
	color: var(--el-red);
}

/* photo */
.profile-modal-photo {
	width: 100%;
	min-height: 260px;

	background: #d1d1cf;
	border: 1px solid #b8b39d;

	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-modal-photo span {
	color: #7d7d76;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* content */
.profile-modal-content {
	padding-top: 8px;
}

.profile-modal-discipline {
	margin: 0 0 18px;

	color: var(--el-red);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.profile-modal-content h2 {
	margin: 0 0 6px;

	color: #111111;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.05;
}

.profile-modal-content h3 {
	margin: 0 0 26px;

	color: #5d5d56;
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	line-height: 1.25;
}

.profile-modal-content p {
	color: #111111;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.55;
}

/* prevent page scroll when modal open */
body.profile-modal-open {
	overflow: hidden;
}

/* responsive */
@media (max-width: 767.98px) {
	.profile-modal-dialog {
		grid-template-columns: 1fr;
		width: min(100%, 520px);
		padding: 26px;
		gap: 22px;
	}

	.profile-modal-photo {
		min-height: 220px;
	}

	.profile-modal-content h2 {
		font-size: 28px;
	}

	.profile-modal-content h3 {
		font-size: 18px;
	}
}

/* ==========================================================
   PEOPLE PAGE
   ========================================================== */

.people-page {
	background: #f6f6f4;
	color: #111111;
}

/* ==========================================================
   PAGE TITLE
   ========================================================== */

.people-page-title {
	background: #e7e6dd;
	border-top: 1px solid #b8b39d;
	border-bottom: 1px solid #b8b39d;
}

.people-page-title-inner {
	width: min(100%, 1920px);
	min-height: 84px;
	margin: 0 auto;
	padding: 0 38px;

	display: grid;
	grid-template-columns: 180px 1fr auto;
	align-items: center;
	gap: 24px;
}

.people-page-title-inner span {
	color: #9a967f;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.people-page-title-inner h1 {
	margin: 0;
	color: #111111;
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.people-page-title-inner em {
	color: #8d8a7c;
	font-size: 14px;
	font-style: italic;
	white-space: nowrap;
}

/* ==========================================================
   PEOPLE SECTION
   ========================================================== */

.people-page-section {
	background: #f6f6f4;
	padding: 42px 0 90px;
}

.people-page-container {
	width: min(100%, 1780px);
	margin: 0 auto;
	padding: 0 28px;
}

.people-note {
	margin: 0 0 24px;
	color: #5d5d56;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

/* ==========================================================
   PEOPLE GRID
   ========================================================== */

.people-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px 22px;
	align-items: stretch;
}

.people-grid-four {
	grid-template-columns: repeat(4, 1fr);
	max-width: 1350px;
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-page {
	background: #f6f6f4;
	color: #111111;
}

/* HEADER SAME AS OTHER INTERNAL PAGES */
.contact-page .el-header {
	background: var(--el-red) !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
}

.contact-page .el-header.scrolled {
	background: var(--el-dark-red) !important;
	backdrop-filter: none !important;
}

.contact-page .el-main-nav > a,
.contact-page .el-main-nav > a:link,
.contact-page .el-main-nav > a:visited {
	color: #ffffff !important;
}

.contact-page .el-main-nav > a:hover,
.contact-page .el-main-nav > a.active {
	color: rgba(231, 230, 221, 0.75) !important;
}

.contact-page .el-main-nav > a::before {
	background: rgba(255, 255, 255, 0.55) !important;
}

.contact-page .el-nav-toggle span {
	background: #ffffff !important;
}

/* ==========================================================
   TITLE BAR
   ========================================================== */

.contact-page-title {
	margin-top: 82px;
	background: #e7e6dd;
	border-top: 1px solid #b8b39d;
	border-bottom: 1px solid #b8b39d;
}

.contact-page-title-inner {
	width: min(100%, 1920px);
	min-height: 84px;
	margin: 0 auto;
	padding: 0 38px;

	display: grid;
	grid-template-columns: 180px 1fr auto;
	align-items: center;
	gap: 24px;
}

.contact-page-title-inner span {
	color: #9a967f;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.contact-page-title-inner h1 {
	margin: 0;
	color: #111111;
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.contact-page-title-inner em {
	color: #8d8a7c;
	font-size: 14px;
	font-style: italic;
	white-space: nowrap;
}

/* ==========================================================
   CONTACT CONTENT
   ========================================================== */

.contact-page-section {
	background: #f6f6f4;
}

.contact-page-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 48% 52%;
}

.contact-page-left,
.contact-page-right {
	min-height: 720px;
	padding: 28px 38px 32px;
}

.contact-page-left {
}

.contact-section-title {
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid #b8b39d;
	color: var(--el-red);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	line-height: 1;
}

.contact-main-email {
	margin: 0 0 34px;
	color: #5d5d56;
	font-size: 17px;
	font-weight: 700;
}

/* ==========================================================
   FORM
   ========================================================== */

.contact-page-form {
	max-width: 900px;
}

.contact-form-group {
	margin-bottom: 34px;
}

.contact-page-form label {
	display: block;
	margin-bottom: 10px;

	color: #a8a48f;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
	width: 100%;
	padding: 13px 18px;

	background: #e7e6dd;
	border: 1px solid #b8b39d;
	outline: none;

	color: #111111;
	font-size: 15px;
	font-style: italic;
	font-weight: 500;
}

.contact-page-form input::placeholder {
	color: #8d8a7c;
}

.contact-page-form textarea {
	min-height: 92px;
	resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
	border-color: var(--el-red);
	background: #f2f1ec;
}

.contact-page-form button {
	width: 100%;
	min-height: 44px;
	margin-top: -8px;
	padding: 10px 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid #b53a36;
	border-radius: 999px;
	color: #b53a36;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: 0.25s ease;
}

.contact-page-form button:hover,
.contact-page-form button:focus {
	background: #b53a36;
	border-color: #b53a36;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

.contact-helper-note {
	margin: 150px 0 0;
	color: #a49b00;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.4;
}

.contact-page-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	background-image:
		linear-gradient(45deg, transparent 50%, #8d8a7c 50%),
		linear-gradient(135deg, #8d8a7c 50%, transparent 50%);
	background-position:
		calc(100% - 22px) 50%,
		calc(100% - 16px) 50%;
	background-size:
		6px 6px,
		6px 6px;
	background-repeat: no-repeat;

	cursor: pointer;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
	border-color: var(--el-red);
	background-color: #f2f1ec;
}

/* ==========================================================
   OFFICE CARDS
   ========================================================== */

.contact-office-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 38px 34px;
	max-width: 900px;
	margin: 0 auto;
}

.contact-office-card {
	background: #e7e6dd;
	border: 1px solid #b8b39d;
}

.contact-office-card h2 {
	margin: 0;
	min-height: 46px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: var(--el-red);
	color: #ffffff;

	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	line-height: 1;
}

.contact-office-body {
	padding: 20px 24px 16px;
}

.contact-office-body p {
	color: #5d5d56;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.contact-office-body a {
	display: block;
	margin-bottom: 28px;

	color: #5d5d56;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	text-decoration: none;
	word-break: break-word;
}

.contact-office-body a:hover {
	color: var(--el-red);
}

/* MAP */
.contact-map-embed {
	width: 100%;
	height: 150px;
	background: #d1d1cf;
	border: 1px solid #b8b39d;
	overflow: hidden;
}

.contact-map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(100%);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1199.98px) {
	.contact-page-grid {
		grid-template-columns: 1fr;
	}

	.contact-page-left {
		border-right: 0;
		border-bottom: 1px solid #b8b39d;
	}

	.contact-page-left,
	.contact-page-right {
		min-height: auto;
	}

	.contact-office-grid {
		max-width: 100%;
	}
}

@media (max-width: 991.98px) {
	.contact-page-title {
		margin-top: 72px;
	}

	.contact-page-title-inner {
		grid-template-columns: 1fr auto;
	}

	.contact-page-title-inner span {
		display: none;
	}

	.contact-office-grid {
		grid-template-columns: 1fr;
	}

	.contact-helper-note {
		margin-top: 60px;
	}
}

@media (max-width: 767.98px) {
	.contact-page-left,
	.contact-page-right {
		padding: 28px 24px;
	}
}

@media (max-width: 575.98px) {
	.contact-page-title-inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 18px 22px;
		gap: 6px;
	}

	.contact-page-title-inner h1 {
		font-size: 26px;
	}

	.contact-page-title-inner em {
		font-size: 12px;
	}

	.contact-section-title,
	.contact-page-form label {
		font-size: 13px;
		letter-spacing: 0.3em;
	}

	.contact-page-form button {
		width: 100%;
		letter-spacing: 0.28em;
	}

	.contact-office-card h2 {
		letter-spacing: 0.35em;
	}
}

/* ==========================================================
   NEWSROOM PAGE
   ========================================================== */

.newsroom-section {
	background: #f6f6f4;
	color: #111111;
	min-height: calc(100vh - 82px - 245px);
	padding: 35px 65px 90px;
}

.newsroom-container {
	width: 100%;
	max-width: 1780px;
	margin: 0 auto;
}

@media (max-width: 991.98px) {
	.newsroom-section {
		padding: 0 28px 70px;
	}
}

@media (max-width: 575.98px) {
	.newsroom-section {
		padding: 0 18px 56px;
	}
}

/* TABS */
.newsroom-tabs {
	width: 100%;
	min-height: 54px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #f6f6f4;
	margin-bottom: 25px;
}

.newsroom-tabs button {
	min-height: 54px;
	border: 0;
	background: transparent;
	color: #5d5d56;
	font-size: 15px;
	font-weight: 700;
	text-align: center;

	cursor: pointer;
	transition: 0.25s ease;
}

.newsroom-tabs button.active {
	background: var(--el-deep-red);
	color: #ffffff;
}

.newsroom-tabs button:hover {
	background: var(--el-dark-red);
	color: #ffffff;
}

/* FEATURED */
.newsroom-featured {
	display: grid;
	grid-template-columns: 38% 62%;
	min-height: 210px;
	border-bottom: 1px solid #b8b39d;
}

.newsroom-featured-image {
	background: #f6f6f4;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsroom-featured-image span {
	color: #8d8a7c;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.newsroom-featured-content {
	padding: 28px 34px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.newsroom-category-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 210px;
	min-height: 32px;
	margin-bottom: 22px;
	background: var(--el-red);
	color: #ffffff;

	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.newsroom-featured-content h2 {
	margin: 0 0 26px;

	color: #111111;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.newsroom-featured-content p {
	margin: 0 0 24px;

	color: #5d5d56;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

.newsroom-readmore {
	color: #111111;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.newsroom-readmore:hover {
	color: var(--el-red);
}

/* LIST */
.newsroom-list {
	width: 100%;
}

.newsroom-row {
	min-height: 125px;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 130px 220px 1fr;
	align-items: center;
	gap: 28px;
	border-bottom: 1px solid #b8b39d;
	background: #f6f6f4;
}

.newsroom-row:nth-child(even) {
	background: #e7e6dd;
}

.newsroom-date {
	color: #8d8a7c;
	font-size: 14px;
	font-weight: 600;
}

.newsroom-tag span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	min-height: 30px;
	border: 1px solid #b8b39d;
	background: var(--el-red);
	color: white;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.newsroom-row h3 {
	margin: 0;

	color: #111111;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.newsroom-note {
	margin: 28px 40px 70px;

	color: #a49b00;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.4;
}

/* Hidden when filtered */
.newsroom-hidden {
	display: none !important;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
	.newsroom-featured {
		grid-template-columns: 1fr;
	}

	.newsroom-featured-image {
		min-height: 220px;
		border-right: 0;
		border-bottom: 1px solid #b8b39d;
	}

	.newsroom-row {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 22px 28px;
	}

	.newsroom-tag span {
		width: 100%;
		justify-content: flex-start;
		padding: 0 16px;
	}

	.newsroom-tabs {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575.98px) {
	.newsroom-tabs {
		grid-template-columns: 1fr;
	}

	.newsroom-featured-content {
		padding: 26px 22px;
	}

	.newsroom-category-label {
		width: 100%;
	}

	.newsroom-featured-content h2 {
		font-size: 22px;
	}

	.newsroom-note {
		margin: 24px 24px 54px;
	}
}

/* ==========================================================
   DISCIPLINE PAGE MOBILE - FORCE 1 COLUMN
   ========================================================== */

@media (max-width: 767.98px) {
	/* cegah horizontal scroll */
	html,
	body {
		overflow-x: hidden !important;
	}

	/* container utama discipline */
	.discipline-finance-content {
		width: 100% !important;
		max-width: 100% !important;
		padding: 40px 22px !important;
		overflow: hidden !important;
	}

	/* grid utama narrative + services jadi 1 kolom */
	.discipline-finance-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 42px !important;

		width: 100% !important;
		max-width: 100% !important;
	}

	/* semua box dalam grid jangan punya lebar fix */
	.discipline-finance-grid > *,
	.finance-narrative,
	.finance-services,
	.discipline-narrative,
	.discipline-services {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow: visible !important;
	}

	/* text wrapping */
	.finance-narrative p,
	.finance-narrative strong,
	.finance-services p,
	.finance-services li,
	.discipline-narrative p,
	.discipline-narrative strong,
	.discipline-services p,
	.discipline-services li {
		width: auto !important;
		max-width: 100% !important;
		min-width: 0 !important;

		white-space: normal !important;
		overflow-wrap: break-word !important;
		word-break: normal !important;

		font-size: 16px !important;
		line-height: 1.48 !important;
		text-align: left !important;
	}

	/* project highlight juga 1 kolom */
	.finance-project-slider,
	.finance-project-track,
	.project-highlight-grid {
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
	}

	.finance-project-track {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 22px !important;
		transform: none !important;
	}

	.finance-project-card,
	.project-highlight-card {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	/* key persons juga 1 kolom */
	.finance-keyperson-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	.finance-keyperson-card {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
}

/* ==========================================================
   STRATEGY KEY PERSON - SEE PROFILE BUTTON
   ========================================================== */

.keyperson-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #b53a36;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.keyperson-heading::after {
	content: "↓";
	font-size: 24px;
	line-height: 1;
	color: #b53a36;
}

.keyperson-heading.keyperson-green {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #198754;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.keyperson-heading.keyperson-green::after {
	content: "↓";
	font-size: 24px;
	line-height: 1;
	color: #198754;
}

.keyperson-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
}

.keyperson-item {
	background: #ecebe8;
	padding: 0 34px 28px;
	position: relative;
	min-height: 100%;
}

.keyperson-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 22px;
	background: #dfddd6;
	padding: 0px 28px 28px 28px;
	margin: 0 -34px 28px;
	position: relative;
	min-height: 132px;
}

.keyperson-meta {
	flex: 1 1 auto;
	padding-top: 8px;
}

.keyperson-meta h3 {
	margin: 0 0 6px;
	color: #1b1b1b;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
}

.keyperson-meta span {
	display: block;
	color: #4d4d4d;
	font-size: 18px;
	font-style: italic;
	line-height: 1.2;
}

.keyperson-photo {
	flex: 0 0 170px;
	overflow: hidden;
}

.keyperson-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.keyperson-body p {
	margin: 0 0 18px;
	color: #2a2a2a;
	font-size: 17px;
	line-height: 1.55;
	text-align: justify;
}

.keyperson-action {
	margin-top: 24px;
}

.keyperson-profile-btn {
	width: 100% !important;
	max-width: none !important;
	min-height: 40px;
	padding: 9px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid #b53a36;
	border-radius: 999px;
	color: #b53a36;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	transition: 0.25s ease;
	margin-bottom: 30px;
}

.keyperson-profile-btn:hover,
.keyperson-profile-btn:focus {
	background: #b53a36;
	border-color: #b53a36;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

/* POPUP */
.keyperson-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.keyperson-modal.is-open {
	display: block;
}

.keyperson-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.keyperson-modal-dialog {
	position: relative;
	z-index: 2;
	width: min(920px, calc(100% - 32px));
	margin: 60px auto;
	background: #f6f6f4;
	padding: 32px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.keyperson-modal-close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: 0;
	background: transparent;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	color: #222;
}

.keyperson-modal-content {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 28px;
	align-items: start;
}

.keyperson-modal-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #ddd;
	border-radius: 0;
}

.keyperson-modal-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.keyperson-modal-text h3 {
	margin: 0 0 8px;
	font-size: 34px;
	font-weight: 700;
	color: #1b1b1b;
}

.keyperson-modal-role {
	margin: 0 0 18px;
	font-size: 18px;
	font-style: italic;
	color: #5a5a5a;
}

.keyperson-modal-text p {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #2a2a2a;
}

/* responsive */
@media (max-width: 991.98px) {
	.keyperson-grid {
		grid-template-columns: 1fr;
	}

	.keyperson-header {
		align-items: center;
	}

	.keyperson-photo {
		flex: 0 0 130px;
		width: 130px;
		height: 130px;
		margin-top: -60px;
	}

	.keyperson-modal-content {
		grid-template-columns: 1fr;
	}

	.keyperson-modal-photo {
		max-width: 260px;
	}
}

@media (max-width: 575.98px) {
	.keyperson-item {
		padding: 0 20px 22px;
	}

	.keyperson-header {
		margin: 0 -20px 22px;
		padding: 0px 20px 20px 20px;
		min-height: auto;
		align-items: flex-start;
	}

	.keyperson-photo {
		margin-top: -52px;
		width: 120px;
		height: 120px;
	}

	.keyperson-meta h3 {
		font-size: 24px;
	}

	.keyperson-meta span {
		font-size: 16px;
	}

	.keyperson-profile-btn {
		width: 100%;
	}
}

.keyperson-grid .keyperson-item:first-child::before {
	display: none;
}

.quote-author {
	display: inline-block;
	margin-top: 12px;
	font-size: clamp(12px, 1.4vw, 18px);
	font-style: normal;
	font-weight: 300;
}

.strategy-keyperson-wide.dicipline-key {
	padding: 0% 5% 5% 5%;
	margin-top: 0px;
	background-color: #f6f6f4;
}

.strategy-keyperson-wide.dicipline-key .keyperson-heading {
	background-color: #f6f6f4;
}

/* ==========================================================
   DISCIPLINE HEADER - FINAL FIX
   Untuk banner halaman Discipline
   ========================================================== */

/* Matikan arrow lama dari .restructuring-banner-left h1::before */
.restructuring-banner-left.discipline-header h1::before,
.restructuring-banner-left.dicipline-header h1::before {
	display: none !important;
	content: none !important;
}

/* Rapikan posisi H1 */
.restructuring-banner-left.discipline-header h1,
.restructuring-banner-left.dicipline-header h1 {
	position: relative;
	display: inline-flex !important;
	align-items: center !important;
	margin: 0;
	padding-left: 10px !important;
	color: #ffffff;
	font-size: clamp(34px, 3.3vw, 56px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Arrow discipline setelah tulisan */
.restructuring-banner-left.discipline-header h1::after,
.restructuring-banner-left.dicipline-header h1::after {
	content: "";
	display: inline-block;
	width: 48px;
	height: 48px;
	background-image: url("../images/discipline-arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: 0 !important;
	clip-path: none !important;
	transform: translate(-22px, -12px);
}

/* Kalau halaman E&L Green pakai arrow hijau */
.discipline-green-page .restructuring-banner-left.discipline-header h1::after,
.discipline-green-page .restructuring-banner-left.dicipline-header h1::after {
	background-image: url("../images/discipline-arrow-green.png") !important;
}

.strategy-keyperson-wide .keyperson-grid.one-keyperson-grid {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #f6f6f4;
}

.strategy-keyperson-wide .keyperson-grid.one-keyperson-grid .keyperson-item {
	max-width: 720px;
	background-color: #ecebe84;
}

.strategy-keyperson-wide .keyperson-grid.one-keyperson-grid .keyperson-item {
	width: 100%;
	max-width: none;
	background-color: #f6f6f4;
}

.discipline-green-page .restructuring-banner-left.discipline-header h1::after,
.discipline-green-page .restructuring-banner-left.dicipline-header h1::after {
	background-image: url("../images/discipline-arrow-green.png") !important;
}

/* Hilangkan arrow h1 khusus People banner */
.restructuring-banner-left.people-header h1::before {
	display: none !important;
	content: none !important;
	background-image: none !important;
}
.restructuring-banner-left.people-header h1 {
	padding-left: 10px !important;
}

/* ==========================================================
   PEOPLE PAGE - 5 CARDS PER ROW, TAG ON TOP
   ========================================================== */

.people-page .people-page-section {
	background: #f6f6f4;
	padding: 56px 0px 0px;
}

.people-page .people-page-container {
	width: min(100% - 56px, 1680px);
	margin: 0 auto;
}

/* 5 cards per row desktop */
.people-page .people-grid,
.people-page .people-grid.people-grid-four {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 0 !important;

	border-top: 1px solid #b8b39d;
	border-left: 1px solid #b8b39d;
}

/* Card layout */
.people-page .people-card {
	position: relative;

	min-height: 380px;
	padding: 70px 22px 34px;

	display: flex;
	flex-direction: column;
	align-items: center;

	background: #f6f6f4;
	border-right: 1px solid #b8b39d;
	border-bottom: 1px solid #b8b39d;
	overflow: hidden;
}

/* Discipline tag: paling atas kanan */
.people-page .people-card-info strong {
	position: absolute;
	top: 24px;
	right: 22px;

	display: inline-block;
	padding-right: 20px;

	color: #777873;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

/* Arrow kecil setelah tag */
.people-page .people-card-info strong::after {
	content: "";
	position: absolute;
	top: -7px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: transparent url("../images/discipline-arrow.png") no-repeat
		center / contain;
}

/* Green tag */
.people-page .people-card-info strong.green-tag {
	color: #777873;
}

.people-page .people-card-info strong.green-tag::after {
	background-image: url("../images/discipline-arrow-green.png") !important;
}

/* Kalau ada tag kecil seperti Intelligence, M&A, dll */
.people-page .people-card-info strong.small-tag {
	font-size: 15px;
	letter-spacing: 0.02em;
}

/* Photo */
.people-page .people-photo {
	width: 100%;
	max-width: 230px;
	height: 230px;
	margin: 0 auto 18px;

	background: #d1d1cf;
	border: 0;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;
}

.people-page .people-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* Placeholder photo */
.people-page .people-photo span {
	display: none;

	color: #7d7d76;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.people-page .people-photo img[style*="display: none"] + span {
	display: flex;
}

/* Text area */
.people-page .people-card-info {
	width: 100%;
	margin: 0 0 26px;
	text-align: center;
}

.people-page .people-card-info > div {
	width: 100%;
}

.people-page .people-card-info h2 {
	margin: 0 0 4px;

	color: #222222;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0;
}

.people-page .people-card-info p {
	margin: 0;

	color: #333333;
	font-size: 15px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.2;
}

/* Button seperti screenshot */
.people-page .people-card .profile-popup-btn {
	width: 100%;
	max-width: 220px;
	min-height: 38px;
	margin-top: auto;
	padding: 8px 20px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: transparent;
	border: 1px solid #b53a36;
	border-radius: 999px;

	color: #b53a36;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;

	cursor: pointer;
	transition: 0.25s ease;
}

.people-page .people-card .profile-popup-btn:hover,
.people-page .people-card .profile-popup-btn:focus {
	background: #b53a36;
	border-color: #b53a36;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

/* Section title Partners / Senior Consultants */
.people-page .people-group-section {
	margin-top: 72px;
}

.people-page .people-group-section > h2 {
	margin: 0 0 26px;

	color: #b53a36;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* medium desktop: 4 cards */
@media (max-width: 1399.98px) {
	.people-page .people-grid,
	.people-page .people-grid.people-grid-four {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.people-page .people-photo {
		max-width: 240px;
		height: 240px;
	}
}

/* tablet: 2 cards */
@media (max-width: 991.98px) {
	.people-page .people-page-container {
		width: min(100% - 36px, 760px);
	}

	.people-page .people-grid,
	.people-page .people-grid.people-grid-four {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.people-page .people-card {
		min-height: 500px;
		padding: 68px 28px 34px;
	}

	.people-page .people-photo {
		max-width: 280px;
		height: 280px;
	}

	.people-page .people-card-info strong {
		font-size: 18px;
	}
}

/* mobile: 1 card */
@media (max-width: 575.98px) {
	.people-page .people-page-section {
		padding: 38px 0 64px;
	}

	.people-page .people-grid,
	.people-page .people-grid.people-grid-four {
		grid-template-columns: 1fr !important;
	}

	.people-page .people-card {
		min-height: auto;
		padding: 64px 22px 32px;
	}

	.people-page .people-photo {
		max-width: 100%;
		height: 280px;
	}

	.people-page .people-card-info h2 {
		font-size: 23px;
	}

	.people-page .people-card-info p {
		font-size: 16px;
	}

	.people-page .people-card-info strong {
		top: 24px;
		right: 22px;
		font-size: 18px;
	}

	.people-page .people-card .profile-popup-btn {
		max-width: 100%;
	}
}

/* PEOPLE CARD GAP FIX */
.people-page .people-grid,
.people-page .people-grid.people-grid-four {
	gap: 22px !important;
	border: 0 !important;
}

/* setiap card punya border sendiri */
.people-page .people-card {
	border: 1px solid #b8b39d !important;
}

.people-page .people-photo {
	background: #d1d1cf;
	overflow: hidden;
}

.people-page .people-photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	display: block;
}

/* Focus tag inside people card */
.people-page .people-card-info strong.focus-tag {
	padding-left: 22px !important;
	padding-right: 0 !important;
}

/* matikan discipline-arrow after */
.people-page .people-card-info strong.focus-tag::after {
	display: none !important;
	content: none !important;
}

/* pakai focus-arrow sebelum tulisan */
.people-page .people-card-info strong.focus-tag::before {
	content: "";
	position: absolute;
	left: 4px;
	top: -1px;
	width: 25px;
	height: 20px;
	background: transparent url("../images/focus-arrow.png") no-repeat center /
		contain;
	border: 0 !important;
	clip-path: none !important;
}
/* ==========================================================
   PROJECT HIGHLIGHTS SLIDER - 2 CARDS PER VIEW
   ========================================================== */

.discipline-finance-project-highlight .project-slider {
	width: 100%;
	overflow: hidden !important;
}

.discipline-finance-project-highlight .project-slider-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 32px !important;

	width: 100% !important;
	transform: translateX(0);
	transition: transform 0.35s ease;
}

/* 2 card tampil dalam 1 view */
.discipline-finance-project-highlight .project-card {
	flex: 0 0 calc((100% - 32px) / 2) !important;
	width: calc((100% - 32px) / 2) !important;
	min-width: calc((100% - 32px) / 2) !important;
	max-width: calc((100% - 32px) / 2) !important;
}

/* mobile: 1 card per view */
@media (max-width: 767.98px) {
	.discipline-finance-project-highlight .project-slider-track {
		gap: 24px !important;
	}

	.discipline-finance-project-highlight .project-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
	}

	.discipline-finance-project-highlight .project-card-body {
		min-height: auto;
	}
}

.matrix-legend .legend-item .dot.support,
.matrix-legend .legend-item .dot.core {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	flex: 0 0 16px !important;
	border-radius: 50% !important;
	aspect-ratio: 1 / 1 !important;
}

/* ==========================================================
   FOCUS NAV - FIX LITIGATION SERVICES SPACING
   ========================================================== */

.focus-page-nav {
	display: grid;
	grid-template-columns:
		110px
		210px
		290px
		210px
		230px
		220px
		220px
		290px
		190px !important;

	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}

/* kasih ruang kiri-kanan setiap menu */
.focus-page-nav .focus-title,
.focus-page-nav > a {
	padding-left: 34px !important;
	padding-right: 34px !important;
}

/* khusus Litigation Services dibuat lebih lega */
.focus-page-nav > a[href*="litigation"] {
	min-width: 290px !important;
	padding-left: 42px !important;
	padding-right: 42px !important;
}

/* arrow focus jangan nempel ke teks */
.focus-page-nav > a::before {
	margin-right: 0px !important;
	flex: 0 0 28px !important;
}

/* separator kanan jangan terlalu mepet */
.focus-page-nav > a {
	position: relative;
}

.focus-page-nav > a:not(:last-child)::after,
.focus-page-nav .focus-title::after {
	right: 0 !important;
}

.hero-side-link.strategy-link::after {
	top: -8px;
	right: 22px;
}

.hero-side-link.finance-link::after {
	top: -8px;
	right: 22px;
}

.hero-side-link.legal-link::after {
	top: -8px;
	right: 22px;
}

.hero-side-link.tax-link::after {
	top: -8px;
	right: 22px;
}

.hero-side-link.green-link::after {
	top: -8px;
	right: 22px;
	background-image: url("../images/discipline-arrow-green.png");
}

.hero-side-link.technical-link::after {
	top: -8px;
	right: 22px;
}

.hero-side-link.intelligence-link::after {
	top: -8px;
	right: 15px;
}

/* ==========================================================
   FOCUS INDEX NAV - DESKTOP FIT, TABLET/MOBILE SCROLL
   ========================================================== */

/* Desktop besar: semua kelihatan */
@media (min-width: 1200px) {
	.focus-page-nav.focus-index {
		display: flex !important;
		width: 100%;
		overflow-x: hidden !important;
		overflow-y: hidden !important;
		white-space: nowrap;
	}

	.focus-page-nav.focus-index > a {
		flex: 1 1 0;
		min-width: 0;
		min-height: 74px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 10px !important;
		color: var(--el-red);
		text-decoration: none;
		font-size: clamp(14px, 0.72vw, 16px);
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.focus-page-nav.focus-index > a[href*="merger"] {
		flex: 1.65 1 0;
	}

	.focus-page-nav.focus-index > a[href*="litigation"] {
		flex: 1.25 1 0;
	}

	.focus-page-nav.focus-index > a[href*="green"],
	.focus-page-nav.focus-index > a[href*="private"] {
		flex: 1.25 1 0;
	}
}

/* 1199 ke bawah: langsung scroll, jangan dipaksa fit */
@media (max-width: 1199.98px) {
	.focus-page-nav.focus-index {
		display: flex !important;
		width: 100%;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		background: var(--el-cream) !important;
	}

	.focus-page-nav.focus-index > a {
		flex: 0 0 auto !important;
		min-width: 190px !important;
		min-height: 64px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 24px !important;
		color: var(--el-red);
		text-decoration: none;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.focus-page-nav.focus-index > a[href*="merger"] {
		min-width: 300px !important;
	}

	.focus-page-nav.focus-index > a[href*="litigation"] {
		min-width: 300px !important;
	}

	.focus-page-nav.focus-index > a[href*="green"],
	.focus-page-nav.focus-index > a[href*="private"] {
		min-width: 230px !important;
	}
}

/* 700–900an: lebih aman, item jangan mepet */
@media (max-width: 991.98px) {
	.focus-page-nav.focus-index > a {
		min-width: 180px !important;
		min-height: 60px;
		padding: 0 22px !important;
		font-size: 12px;
	}

	.focus-page-nav.focus-index > a[href*="merger"] {
		min-width: 285px !important;
	}

	.focus-page-nav.focus-index > a[href*="litigation"] {
		min-width: 285px !important;
	}

	.focus-page-nav.focus-index > a[href*="green"],
	.focus-page-nav.focus-index > a[href*="private"] {
		min-width: 215px !important;
	}
}

/* Mobile kecil */
@media (max-width: 575.98px) {
	.focus-page-nav.focus-index > a {
		min-width: 170px !important;
		min-height: 58px;
		padding: 0 18px !important;
		font-size: 12px;
	}

	.focus-page-nav.focus-index > a[href*="merger"] {
		min-width: 260px !important;
	}

	.focus-page-nav.focus-index > a[href*="litigation"] {
		min-width: 270px !important;
	}
}

/* ==========================================================
   STRATEGY MATRIX - EQUAL COLUMN WIDTH
   ========================================================== */

.strategy-page-table {
	width: 100%;
	table-layout: fixed;
	margin: 0;
	border-collapse: collapse;
}

/* Semua kolom dibuat rata */
.strategy-page-table th,
.strategy-page-table td {
	width: calc((100% - 220px) / 6);
	text-align: center;
	vertical-align: middle;
}

/* Kolom pertama khusus Focus Areas */
.strategy-page-table th:first-child,
.strategy-page-table td:first-child {
	width: 220px;
	text-align: left;
	font-weight: 700;
}

/* Header dan cell lebih rapi */
.strategy-page-table th {
	background: #ffffff;
	color: #111111;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid #111111;
	padding: 12px 10px;
	white-space: nowrap;
}

.strategy-page-table td {
	background: #e7e6dd;
	color: #111111;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #111111;
	padding: 10px 10px;
}

/* Dot tetap center */
.strategy-page-table .dot-cell {
	text-align: center;
	vertical-align: middle;
}

/* Dot tidak lonjong */
.strategy-page-table .dot {
	display: inline-block;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	border-radius: 50%;
}

/* Responsive: biar table tidak rusak di mobile */
.strategy-matrix-box .table-responsive {
	width: 100%;
	overflow-x: auto;
}

@media (max-width: 767.98px) {
	.strategy-page-table {
		min-width: 760px;
	}

	.strategy-page-table th:first-child,
	.strategy-page-table td:first-child {
		width: 190px;
	}

	.strategy-page-table th,
	.strategy-page-table td {
		font-size: 13px;
		padding: 9px 8px;
	}
}

/* kalau key person cuma satu, jangan sisakan kolom kanan */
.strategy-keyperson-wide.dicipline-key .keyperson-grid.one-keyperson-grid {
	display: grid;
	grid-template-columns: 1fr;
	width: 50%;
	background: transparent !important;
}

/* card tetap hanya di kiri */
.strategy-keyperson-wide.dicipline-key
	.keyperson-grid.one-keyperson-grid
	.keyperson-column {
	width: 100%;
}

/* hilangkan area/background kanan */
.strategy-keyperson-wide.dicipline-key
	.keyperson-grid.one-keyperson-grid
	.keyperson-item {
	background: #ecebe8;
	border-right: 0;
}

@media (max-width: 991.98px) {
	.strategy-keyperson-wide.dicipline-key .keyperson-grid.one-keyperson-grid {
		width: 100%;
	}
}
.discipline-finance-left,
.discipline-finance-right,
.discipline-finance-project-highlight,
.project-slider {
	min-width: 0 !important;
}

/* ==========================================================
   KEY PERSON - NO PHOTO CARD ALIGNMENT FIX
   ========================================================== */

/* Samakan tinggi header kiri-kanan */
.strategy-keyperson-wide.dicipline-key .keyperson-header {
	min-height: 180px;
}

/* Card tanpa foto: judul rata atas seperti Gavin Rixon */
.strategy-keyperson-wide.dicipline-key
	.keyperson-item.no-photo
	.keyperson-header {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;

	min-height: 180px;
	padding-top: 0;
	margin-bottom: 0;
}

/* Judul GTL International sejajar kiri */
.strategy-keyperson-wide.dicipline-key
	.keyperson-item.no-photo
	.keyperson-meta {
	width: 100%;
}

.strategy-keyperson-wide.dicipline-key
	.keyperson-item.no-photo
	.keyperson-meta
	h3 {
	margin: 0;
	margin-top: 90px;
}

/* Isi GTL dibuat agak turun / lebih enter */
.strategy-keyperson-wide.dicipline-key
	.keyperson-item.no-photo
	.keyperson-body {
	padding-top: 34px;
}

/* Kalau mau paragrafnya tidak terlalu nempel kanan-kiri */
.strategy-keyperson-wide.dicipline-key
	.keyperson-item.no-photo
	.keyperson-body
	p {
	max-width: 92%;
	margin-top: -10px;
}

/* ==========================================================
   RESTRUCTURING PAGE - FOCUS NAV WITHOUT TITLE
   FIX: visible below header + auto scroll
   ========================================================== */

.restructuring-page .focus-page-nav {
	position: relative !important;
	z-index: 20 !important;

	display: flex !important;
	align-items: stretch;
	width: 100%;

	min-height: 74px;

	background: var(--el-cream) !important;

	overflow-x: auto !important;
	overflow-y: hidden !important;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;

	/* penting: supaya tidak ketutup header */
	margin-top: 80px !important;
}

/* item nav */
.restructuring-page .focus-page-nav > a {
	position: relative;

	flex: 0 0 auto !important;
	min-width: 190px !important;
	min-height: 74px;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	padding: 0 22px !important;

	color: var(--el-red);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

/* item teks panjang */
.restructuring-page .focus-page-nav > a[href*="merger"] {
	min-width: 285px !important;
}

.restructuring-page .focus-page-nav > a[href*="litigation"] {
	min-width: 270px !important;
}

.restructuring-page .focus-page-nav > a[href*="green"],
.restructuring-page .focus-page-nav > a[href*="private"] {
	min-width: 215px !important;
}

/* arrow */
.restructuring-page .focus-page-nav > a::before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 7px;

	display: inline-block;
	flex: 0 0 20px;

	background: transparent url("../images/focus-arrow.png") no-repeat center /
		contain !important;
	border: 0 !important;
	clip-path: none !important;
}

/* green arrow */
.restructuring-page .focus-page-nav > a.green-focus::before {
	background-image: url("../images/focus-arrow-green.png") !important;
}

/* separator */
.restructuring-page .focus-page-nav > a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);

	width: 1px;
	height: 34px;
	background: rgba(90, 70, 60, 0.55);
}

/* active */
.restructuring-page .focus-page-nav > a.active {
	background: rgba(181, 58, 54, 0.08);
}

@media (max-width: 767.98px) {
	.restructuring-page .focus-page-nav {
		position: relative !important;
		z-index: 20 !important;
		margin-top: 74px !important;
		min-height: 58px;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		background: var(--el-cream) !important;
	}
}

/* ==========================================================
   RESTRUCTURING PAGE - OUR SERVICES CASE STUDY GRID
   ========================================================== */

.restructuring-services-section {
	width: 100%;
	margin-top: 54px;
	margin-bottom: 64px;
}

.restructuring-services-title {
	margin: 0 0 32px;
	color: var(--el-red);
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1;
}

.restructuring-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.restructuring-service-card {
	display: flex;
	flex-direction: column;
	min-height: 360px;
	background: #f4eeee;
	overflow: hidden;
}

.restructuring-service-card.case-study {
	background: #f5eeee;
}

.restructuring-service-card.value-add {
	background: #e7caca;
}

.restructuring-service-card.outcome {
	background: #d8a8a8;
}

/* heading bar */
.restructuring-service-card .service-card-heading {
	position: relative;
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #b53a36;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1;
}

/* warna heading beda per kolom */
.restructuring-service-card.case-study .service-card-heading {
	background: #bd7373;
}

.restructuring-service-card.value-add .service-card-heading {
	background: #7f111b;
}

.restructuring-service-card.outcome .service-card-heading {
	background: #b82028;
}

/* arrow shape heading, seperti screenshot */
.restructuring-service-card:not(.outcome) .service-card-heading::after {
	content: "";
	position: absolute;
	top: 0;
	right: -22px;
	z-index: 3;
	width: 0;
	height: 0;
	border-top: 21px solid transparent;
	border-bottom: 21px solid transparent;
	border-left: 22px solid currentColor;
}

/* set warna arrow sesuai background heading */
.restructuring-service-card.case-study .service-card-heading::after {
	color: #bd7373;
}

.restructuring-service-card.value-add .service-card-heading::after {
	color: #7f111b;
}

.service-card-body {
	flex: 1;
	padding: 30px 30px 34px;
}

.service-card-body ul {
	margin: 0;
	padding-left: 22px;
}

.service-card-body li {
	margin-bottom: 10px;
	color: #202020;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.12;
}

.service-card-body li::marker {
	font-size: 0.7em;
}

/* Tablet */
@media (max-width: 1199.98px) {
	.restructuring-services-grid {
		gap: 14px;
	}

	.restructuring-service-card {
		min-height: 660px;
	}

	.service-card-body {
		padding: 26px 24px 30px;
	}

	.service-card-body li {
		font-size: 20px;
	}
}

/* Mobile */
@media (max-width: 767.98px) {
	.restructuring-services-section {
		margin-top: 42px;
		margin-bottom: 48px;
	}

	.restructuring-services-title {
		font-size: 24px;
		margin-bottom: 22px;
	}

	.restructuring-services-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.restructuring-service-card {
		min-height: auto;
	}

	.restructuring-service-card .service-card-heading {
		min-height: 42px;
		font-size: 22px;
	}

	.restructuring-service-card .service-card-heading::after {
		display: none;
	}

	.service-card-body {
		padding: 24px 22px 28px;
	}

	.service-card-body li {
		font-size: 17px;
		line-height: 1.25;
		margin-bottom: 9px;
	}
}

body.restructuring-page.merger-page .restructuring-banner-left h1::before {
	content: "";
	position: absolute;
	top: 15px;
	width: 65px;
	height: 65px;
	background-image: url("../images/focus-arrow.png") !important;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	clip-path: none;
}

body.restructuring-page.merger-page .restructuring-banner-left h1 {
	padding-left: 55px;
}

/* ==========================================================
   MERGER PAGE - MOBILE RESPONSIVE FIX
   ========================================================== */

@media (max-width: 767.98px) {
	/* Banner height jangan terlalu tinggi */
	body.restructuring-page.merger-page .restructuring-banner {
		min-height: 360px !important;
		height: auto !important;
		margin-top: 0 !important;
		overflow: hidden;
	}

	body.restructuring-page.merger-page .restructuring-banner-image {
		width: 100%;
		height: 100%;
		min-height: 360px;
		object-fit: cover;
		object-position: center center;
	}

	body.restructuring-page.merger-page .restructuring-banner-inner {
		min-height: 360px !important;
		padding: 42px 24px 36px !important;

		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: center !important;
		gap: 28px !important;
	}

	/* Breadcrumb */
	body.restructuring-page.merger-page .restructuring-breadcrumb {
		margin-bottom: 18px !important;
		font-size: 12px !important;
		letter-spacing: 0.12em !important;
		line-height: 1.4 !important;
		white-space: normal !important;
	}

	/* Title */
	body.restructuring-page.merger-page .restructuring-banner-left h1 {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		margin: 0 !important;
		padding-left: 35px !important;
		font-size: clamp(18px, 8vw, 28px) !important;
		line-height: 1.05 !important;
		letter-spacing: 0.08em !important;
		white-space: normal !important;
		word-break: normal !important;
	}

	/* Arrow title */
	body.restructuring-page.merger-page .restructuring-banner-left h1::before {
		width: 42px !important;
		height: 42px !important;
		top: 50% !important;
		left: 0 !important;
		transform: translateY(-50%) !important;
	}

	/* Quote di banner */
	body.restructuring-page.merger-page .restructuring-banner-right {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: left !important;
	}

	body.restructuring-page.merger-page .restructuring-banner-right p {
		font-size: clamp(19px, 5vw, 26px) !important;
		line-height: 1.18 !important;
		text-align: left !important;
		color: rgba(255, 255, 255, 0.78) !important;
		margin-left: 20px;
	}

	body.restructuring-page.merger-page
		.restructuring-banner-right
		.quote-author {
		display: block;
		margin-top: 12px;
		font-size: 16px !important;
		line-height: 1.2;
	}

	/* Content section */
	body.restructuring-page.merger-page .restructuring-content-section {
		padding: 48px 0 56px !important;
	}

	body.restructuring-page.merger-page .restructuring-container {
		width: min(100% - 32px, 720px) !important;
		margin: 0 auto !important;
	}

	/* Quote besar merah di content */
	body.restructuring-page.merger-page .restructuring-quote {
		margin: 0 0 24px !important;
		padding-bottom: 20px !important;
		font-size: clamp(24px, 7vw, 34px) !important;
		line-height: 1.12 !important;
		letter-spacing: 0 !important;
	}

	/* Body paragraph */
	body.restructuring-page.merger-page .restructuring-content-section p,
	body.restructuring-page.merger-page .restructuring-content-section li {
		font-size: 16px !important;
		line-height: 1.5 !important;
		word-spacing: normal !important;
		letter-spacing: normal !important;
		text-align: left !important;
	}

	/* Hilangkan justify kalau ada */
	body.restructuring-page.merger-page .restructuring-content-section * {
		text-align-last: auto !important;
	}
}

.restructuring-service-card .service-card-body h3 {
	margin: 0 0 32px;
	color: #202020;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.restructure-card h3.green-arrow-integrated::after {
	background-image: url("../images/discipline-arrow-green.png") !important;
}

/* ==========================================================
   GREEN BUSINESS BANNER TITLE
   ========================================================== */

.greenbusiness-banner .restructuring-banner-left h1 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-left: 40px;
	color: #ffffff;
	font-size: clamp(34px, 3.3vw, 56px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.greenbusiness-banner .restructuring-banner-left h1::before {
	content: "";
	position: absolute;
	left: 0;
	top: 25px;
	width: 50px;
	height: 50px;
	background-image: url("../images/focus-arrow-white.png") !important;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	border: 0 !important;
	clip-path: none !important;
}

.greenbusiness-page .fundraising-beyond-body {
	background-color: #e7e6dd;
}

.greenbusiness-page .fundraising-advice-cards {
	background-color: #e7e6dd;
}

@media (max-width: 767.98px) {
	.greenbusiness-banner .restructuring-banner-left h1 {
		padding-left: 20px;
		font-size: clamp(30px, 8vw, 44px);
		line-height: 1.05;
		white-space: normal;
	}

	.greenbusiness-banner .restructuring-banner-left h1::before {
		width: 38px;
		height: 38px;
		top: 50%;
		transform: translateY(-50%);
	}

	.restructuring-banner-right p {
		margin-lect: 20px;
	}
}

/* ==========================================================
   GREEN BUSINESS PAGE - OUR SERVICES CASE STUDY GRID
   ========================================================== */

.greenbusiness-services-section {
	width: 100%;
	margin-top: 54px;
	margin-bottom: 64px;
}

.greenbusiness-services-title {
	margin: 0 0 32px;

	color: #2f7f2f;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1;
}

.greenbusiness-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.greenbusiness-service-card {
	display: flex;
	flex-direction: column;
	min-height: 360px;
	overflow: hidden;
}

/* body background per kolom */
.greenbusiness-service-card.case-study {
	background: #e8f2de;
}

.greenbusiness-service-card.value-add {
	background: #cbdcc9;
}

.greenbusiness-service-card.outcome {
	background: #b6d0be;
}

/* heading bar */
.greenbusiness-card-heading {
	position: relative;

	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;

	color: #ffffff;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1;
}

/* heading color per kolom */
.greenbusiness-service-card.case-study .greenbusiness-card-heading {
	background: #8eb866;
}

.greenbusiness-service-card.value-add .greenbusiness-card-heading {
	background: #6f974e;
}

.greenbusiness-service-card.outcome .greenbusiness-card-heading {
	background: #2f6f34;
}

/* arrow shape antar heading */
.greenbusiness-service-card:not(.outcome) .greenbusiness-card-heading::after {
	content: "";
	position: absolute;
	top: 0;
	right: -22px;
	z-index: 3;

	width: 0;
	height: 0;

	border-top: 21px solid transparent;
	border-bottom: 21px solid transparent;
	border-left: 22px solid currentColor;
}

.greenbusiness-service-card.case-study .greenbusiness-card-heading::after {
	color: #8eb866;
}

.greenbusiness-service-card.value-add .greenbusiness-card-heading::after {
	color: #6f974e;
}

.greenbusiness-card-body {
	flex: 1;
	padding: 30px 30px 34px;
}

.greenbusiness-card-body ul {
	margin: 0;
	padding-left: 22px;
}

.greenbusiness-card-body li {
	margin-bottom: 10px;
	color: #202020;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.12;
}

.greenbusiness-card-body li::marker {
	font-size: 0.7em;
}

/* Tablet */
@media (max-width: 1199.98px) {
	.greenbusiness-services-grid {
		gap: 14px;
	}

	.greenbusiness-service-card {
		min-height: 360x;
	}

	.greenbusiness-card-body {
		padding: 26px 24px 30px;
	}

	.greenbusiness-card-body li {
		font-size: 20px;
	}
}

/* Mobile */
@media (max-width: 767.98px) {
	.greenbusiness-services-section {
		margin-top: 42px;
		margin-bottom: 48px;
	}

	.greenbusiness-services-title {
		font-size: 20px;
		margin-bottom: 22px;
	}

	.greenbusiness-services-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.greenbusiness-service-card {
		min-height: auto;
	}

	.greenbusiness-card-heading {
		min-height: 42px;
		font-size: 18px;
	}

	.greenbusiness-card-heading::after {
		display: none;
	}

	.greenbusiness-card-body {
		padding: 24px 22px 28px;
	}

	.greenbusiness-card-body li {
		font-size: 17px;
		line-height: 1.25;
		margin-bottom: 9px;
	}
}

/* ==========================================================
   PRIVATE EQUITY PAGE - BANNER H1 ARROW
   ========================================================== */

body.restructuring-page.privateequity-page
	.restructuring-banner-left
	h1::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	width: 65px;
	height: 65px;
	background-image: url("../images/focus-arrow.png") !important;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	border: 0 !important;
	clip-path: none !important;
}

body.restructuring-page.privateequity-page .restructuring-banner-left h1 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-left: 55px;
	color: #ffffff;
	font-size: clamp(34px, 3.3vw, 56px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

@media (max-width: 767.98px) {
	body.restructuring-page.privateequity-page .restructuring-banner-left h1 {
		padding-left: 30px !important;
		font-size: clamp(24px, 8vw, 32px) !important;
		line-height: 1.05 !important;
		white-space: normal !important;
	}

	body.restructuring-page.privateequity-page
		.restructuring-banner-left
		h1::before {
		width: 45px !important;
		height: 45pxpx !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
	}
}

/* ==========================================================
   PRIVATE CREDIT BANNER - H1 ARROW
   ========================================================== */

.privatecredit-banner .restructuring-banner-left h1 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-left: 58px;

	color: #ffffff;
	font-size: clamp(34px, 3.3vw, 56px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.privatecredit-banner .restructuring-banner-left h1::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;

	width: 50px;
	height: 50px;

	background-image: url("../images/focus-arrow.png") !important;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;

	border: 0 !important;
	clip-path: none !important;
}

/* ==========================================================
   PRIVATE CREDIT PAGE - BANNER H1 ARROW
   ========================================================== */

body.restructuring-page.privatecredit-page .restructuring-banner-left h1 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-left: 58px;
	color: #ffffff;
	font-size: clamp(34px, 3.3vw, 56px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

body.restructuring-page.privatecredit-page
	.restructuring-banner-left
	h1::before {
	content: "";
	position: absolute;
	left: 0;
	top: 25px;
	width: 65px;
	height: 65px;
	background-image: url("../images/focus-arrow.png") !important;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	backgrnd-color: transparent;
	border: 0 !important;
	clip-path: none !important;
}

@media (max-width: 767.98px) {
	body.restructuring-page.privatecredit-page .restructuring-banner-left h1,
	.privatecredit-banner .restructuring-banner-left h1 {
		padding-left: 30px !important;
		font-size: clamp(30px, 8vw, 44px) !important;
		line-height: 1.05 !important;
		white-space: normal !important;
	}

	body.restructuring-page.privatecredit-page
		.restructuring-banner-left
		h1::before,
	.privatecredit-banner .restructuring-banner-left h1::before {
		width: 45px !important;
		height: 45px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
	}

	.privatecredit-page .restructuring-banner-right p {
		margin-left: 10px;
	}
}
