.ib-public {
	--ibp-primary: #a92e45;
	--ibp-primary-dark: #6f1f31;
	--ibp-rose: #c95f73;
	--ibp-gold: #b88746;
	--ibp-ink: #241018;
	--ibp-muted: #70656a;
	--ibp-line: #e6dcdf;
	--ibp-soft: #f7f3f1;
	--ibp-white: #fff;
	width: min(1240px, calc(100% - 32px));
	margin: 42px auto 72px;
	color: var(--ibp-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ib-public,
.ib-public * {
	box-sizing: border-box;
}

.ib-public a {
	text-decoration: none;
}

.ib-public h1,
.ib-public h2,
.ib-public h3,
.ib-public p {
	margin-top: 0;
}

.ib-public-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
	min-height: 540px;
	overflow: hidden;
	border: 1px solid #efdce0;
	border-radius: 32px;
	background:
		radial-gradient(circle at 100% 0, rgba(232,116,138,.16), transparent 31%),
		linear-gradient(135deg, #fff 0%, #fcf6f8 62%, #f9edf0 100%);
	box-shadow: 0 26px 80px rgba(53,18,27,.09);
}

.ib-public-hero::before {
	position: absolute;
	right: 29%;
	bottom: -180px;
	width: 340px;
	height: 340px;
	border: 52px solid rgba(197,57,78,.045);
	border-radius: 50%;
	content: "";
}

.ib-public-hero-copy {
	position: relative;
	z-index: 1;
	align-self: center;
	padding: 68px 24px 68px 68px;
}

.ib-public-kicker {
	display: block;
	margin-bottom: 12px;
	color: var(--ibp-primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .16em;
}

.ib-public-hero h1 {
	max-width: 720px;
	margin-bottom: 20px;
	color: var(--ibp-ink);
	font-size: clamp(38px, 5.3vw, 66px);
	font-weight: 820;
	line-height: 1.02;
	letter-spacing: -.052em;
}

.ib-public-hero-copy > p {
	max-width: 670px;
	margin-bottom: 30px;
	color: var(--ibp-muted);
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.7;
}

.ib-public-quick-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	max-width: 690px;
	padding: 7px;
	border: 1px solid #e0cdd2;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 15px 40px rgba(53,18,27,.09);
}

.ib-public-quick-search input {
	width: 100%;
	min-height: 52px;
	padding: 0 17px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ibp-ink);
	font: inherit;
}

.ib-public-quick-search button,
.ib-public-filters button,
.ib-public-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 0;
	border-radius: 11px;
	background: linear-gradient(135deg, var(--ibp-primary), var(--ibp-primary-dark));
	box-shadow: 0 10px 24px rgba(197,57,78,.22);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.ib-public-quick-search button:hover,
.ib-public-filters button:hover,
.ib-public-button:hover {
	color: #fff;
	transform: translateY(-1px);
}

.ib-public-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 11px 22px;
	margin-top: 22px;
	color: #5f5357;
	font-size: 12px;
	font-weight: 700;
}

.ib-public-trust span::first-letter {
	color: #279b6b;
}

.ib-public-hero-panel {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	background: #e9d9d5;
}

.ib-public-hero-panel::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(252,246,248,.38), transparent 26%, rgba(28,11,16,.08));
	content: "";
	pointer-events: none;
}

.ib-public-hero-panel > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
}

.ib-public-hero-orbit {
	position: absolute;
	z-index: 2;
	top: 26px;
	left: 26px;
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	border: 8px solid rgba(255,255,255,.72);
	border-radius: 50%;
	background: linear-gradient(145deg, var(--ibp-primary), #a0283b);
	box-shadow: 0 16px 36px rgba(121,27,46,.3);
}

.ib-public-hero-orbit::before,
.ib-public-hero-orbit::after {
	display: none;
}

.ib-public-hero-orbit span {
	color: #fff;
	font-size: 21px;
	font-weight: 900;
	letter-spacing: -.08em;
}

.ib-public-hero-note {
	position: absolute;
	z-index: 3;
	display: grid;
	min-width: 150px;
	padding: 15px 18px;
	border: 1px solid rgba(234,221,225,.9);
	border-radius: 16px;
	background: rgba(255,255,255,.92);
	box-shadow: 0 18px 45px rgba(53,18,27,.12);
	backdrop-filter: blur(8px);
}

.ib-public-hero-note.is-top {
	top: 21%;
	right: 4%;
}

.ib-public-hero-note.is-bottom {
	bottom: 19%;
	left: -2%;
}

.ib-public-hero-note strong {
	color: var(--ibp-primary);
	font-size: 28px;
	line-height: 1;
}

.ib-public-hero-note span {
	margin-top: 5px;
	color: var(--ibp-muted);
	font-size: 12px;
	font-weight: 700;
}

.ib-public-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: -34px 36px 78px;
	position: relative;
	z-index: 2;
}

.ib-public-metrics article {
	display: flex;
	min-height: 112px;
	align-items: center;
	gap: 17px;
	padding: 24px 28px;
	border: 1px solid var(--ibp-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(53,18,27,.08);
}

.ib-public-metrics strong {
	color: var(--ibp-primary);
	font-size: 38px;
	line-height: 1;
}

.ib-public-metrics span {
	color: var(--ibp-muted);
	font-size: 14px;
	font-weight: 800;
}

.ib-public-section-head,
.ib-public-directory-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin: 70px 0 26px;
}

.ib-public-section-head h2,
.ib-public-directory-head h1,
.ib-public-cta h2 {
	margin: 0 0 8px;
	color: var(--ibp-ink);
	font-size: clamp(29px, 3vw, 40px);
	line-height: 1.15;
	letter-spacing: -.035em;
}

.ib-public-section-head p,
.ib-public-directory-head p,
.ib-public-cta p {
	margin: 0;
	color: var(--ibp-muted);
	font-size: 15px;
	line-height: 1.65;
}

.ib-public-section-head > a {
	flex: 0 0 auto;
	padding: 10px 0;
	color: var(--ibp-primary);
	font-weight: 800;
}

.ib-public-section-head > a span {
	display: inline-block;
	margin-left: 5px;
	transition: transform .2s;
}

.ib-public-section-head > a:hover span,
.ib-public-card-link:hover span {
	transform: translateX(4px);
}

.ib-public-card-grid {
	display: grid;
	gap: 22px;
}

.ib-public-brand-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ib-public-brand-card,
.ib-public-opportunity-card {
	overflow: hidden;
	border: 1px solid var(--ibp-line);
	border-radius: 21px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(53,18,27,.055);
	transition: transform .2s, box-shadow .2s;
}

.ib-public-brand-card:hover,
.ib-public-opportunity-card:hover {
	box-shadow: 0 22px 50px rgba(53,18,27,.1);
	transform: translateY(-4px);
}

.ib-public-brand-logo {
	display: grid;
	height: 174px;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 75% 20%, rgba(232,116,138,.17), transparent 28%),
		var(--ibp-soft);
}

.ib-public-brand-logo img {
	width: 74%;
	height: 74%;
	object-fit: contain;
}

.ib-public-brand-logo > span {
	display: grid;
	width: 82px;
	height: 82px;
	place-items: center;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 15px 32px rgba(53,18,27,.1);
	color: var(--ibp-primary);
	font-size: 28px;
	font-weight: 900;
}

.ib-public-brand-body,
.ib-public-opportunity-body {
	padding: 23px;
}

.ib-public-badge {
	display: inline-flex;
	padding: 6px 9px;
	border-radius: 999px;
	background: #e8f6f0;
	color: #167449;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .03em;
}

.ib-public-brand-card h3,
.ib-public-opportunity-card h3 {
	margin: 14px 0 6px;
	font-size: 20px;
	line-height: 1.25;
}

.ib-public-brand-card h3 a,
.ib-public-opportunity-card h3 a {
	color: var(--ibp-ink);
}

.ib-public-brand-body > p:not(.ib-public-meta) {
	min-height: 43px;
	margin: 14px 0;
	color: var(--ibp-muted);
	font-size: 13px;
	line-height: 1.6;
}

.ib-public-meta,
.ib-public-brand-name {
	margin-bottom: 0;
	color: var(--ibp-muted);
	font-size: 12px;
	font-weight: 700;
}

.ib-public-card-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
	color: var(--ibp-primary);
	font-size: 13px;
	font-weight: 900;
}

.ib-public-card-link span {
	transition: transform .2s;
}

.ib-public-opportunity-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ib-public-opportunity-image {
	position: relative;
	display: grid;
	height: 220px;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(145deg, #f9e9ed, #fff4f6);
}

.ib-public-opportunity-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.ib-public-opportunity-card:hover .ib-public-opportunity-image img {
	transform: scale(1.035);
}

.ib-public-opportunity-image > span {
	display: grid;
	width: 92px;
	height: 92px;
	place-items: center;
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(53,18,27,.11);
	color: var(--ibp-primary);
	font-size: 30px;
	font-weight: 900;
}

.ib-public-opportunity-image small {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(28,11,16,.82);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.ib-public-brand-name span {
	color: #1b9a62;
}

.ib-public-investment {
	display: grid;
	gap: 3px;
	margin: 18px 0 12px;
	padding: 14px;
	border-radius: 12px;
	background: var(--ibp-soft);
}

.ib-public-investment small {
	color: var(--ibp-muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.ib-public-investment strong {
	font-size: 15px;
}

.ib-public-empty {
	grid-column: 1 / -1;
	display: grid;
	justify-items: center;
	padding: 62px 24px;
	border: 1px dashed #dcc9ce;
	border-radius: 22px;
	background: var(--ibp-soft);
	text-align: center;
}

.ib-public-empty > span {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	margin-bottom: 15px;
	border-radius: 20px;
	background: #fff;
	color: var(--ibp-primary);
	font-size: 20px;
	font-weight: 900;
	box-shadow: 0 10px 28px rgba(53,18,27,.07);
}

.ib-public-empty h3 {
	margin-bottom: 7px;
	font-size: 21px;
}

.ib-public-empty p {
	margin-bottom: 0;
	color: var(--ibp-muted);
}

.ib-public-empty a {
	margin-top: 15px;
	color: var(--ibp-primary);
	font-weight: 800;
}

.ib-public-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-top: 76px;
	padding: 48px 54px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 90% 20%, rgba(255,255,255,.16), transparent 24%),
		linear-gradient(135deg, #a92e43, var(--ibp-primary-dark));
	box-shadow: 0 26px 60px rgba(143,35,52,.24);
}

.ib-public-cta .ib-public-kicker,
.ib-public-cta h2,
.ib-public-cta p {
	color: #fff;
}

.ib-public-cta p {
	max-width: 750px;
	opacity: .78;
}

.ib-public-button.is-light {
	flex: 0 0 auto;
	background: #fff;
	box-shadow: none;
	color: var(--ibp-primary-dark);
}

.ib-public-button.is-light:hover {
	color: var(--ibp-primary-dark);
}

.ib-public-directory-head {
	align-items: center;
	margin-top: 0;
	padding: 42px 46px;
	border: 1px solid #efdce0;
	border-radius: 25px;
	background:
		radial-gradient(circle at 92% 42%, rgba(197,57,78,.12), transparent 23%),
		linear-gradient(135deg, #fff, var(--ibp-soft));
}

.ib-public-directory-head > strong {
	flex: 0 0 auto;
	padding: 12px 16px;
	border: 1px solid var(--ibp-line);
	border-radius: 12px;
	background: #fff;
	color: var(--ibp-primary);
	font-size: 14px;
}

.ib-public-filters {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 26px 0 34px;
	padding: 25px;
	border: 1px solid var(--ibp-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(53,18,27,.045);
}

.ib-public-filters.is-compact {
	grid-template-columns: minmax(260px, 1.4fr) minmax(200px, 1fr) auto auto;
	align-items: end;
}

.ib-public-filters label {
	display: grid;
	gap: 7px;
	margin: 0;
}

.ib-public-filters label > span {
	color: #594c50;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.ib-public-filters input,
.ib-public-filters select {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 10px 13px;
	border: 1px solid #ddcfd3;
	border-radius: 10px;
	outline: 0;
	background: #fff;
	color: var(--ibp-ink);
	font: inherit;
}

.ib-public-filters input:focus,
.ib-public-filters select:focus {
	border-color: var(--ibp-primary);
	box-shadow: 0 0 0 3px rgba(197,57,78,.1);
}

.ib-public-filter-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.ib-public-filters > a,
.ib-public-filter-actions a {
	color: var(--ibp-primary);
	font-size: 13px;
	font-weight: 800;
}

.ib-public-pagination {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 38px;
}

.ib-public-pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding: 0 10px;
	border: 1px solid var(--ibp-line);
	border-radius: 10px;
	background: #fff;
	color: var(--ibp-ink);
	font-weight: 800;
}

.ib-public-pagination .page-numbers.current,
.ib-public-pagination .page-numbers:hover {
	border-color: var(--ibp-primary);
	background: var(--ibp-primary);
	color: #fff;
}

.ib-public-back {
	margin-bottom: 18px;
}

.ib-public-back a {
	color: var(--ibp-primary);
	font-size: 13px;
	font-weight: 850;
}

.ib-public-detail-hero {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	min-height: 490px;
	overflow: hidden;
	border: 1px solid var(--ibp-line);
	border-radius: 30px;
	background:
		radial-gradient(circle at 92% 14%, rgba(232,116,138,.15), transparent 25%),
		linear-gradient(135deg, #fff, var(--ibp-soft));
	box-shadow: 0 25px 70px rgba(53,18,27,.09);
}

.ib-public-detail-logo,
.ib-public-detail-cover {
	display: grid;
	min-height: 420px;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 20%, rgba(201,151,58,.16), transparent 28%),
		linear-gradient(145deg, #f8eaed, #fff);
}

.ib-public-detail-logo img {
	width: min(72%, 330px);
	height: min(72%, 330px);
	object-fit: contain;
}

.ib-public-detail-logo > span,
.ib-public-detail-cover > span {
	display: grid;
	width: 136px;
	height: 136px;
	place-items: center;
	border-radius: 36px;
	background: #fff;
	box-shadow: 0 24px 55px rgba(53,18,27,.12);
	color: var(--ibp-primary);
	font-size: 44px;
	font-weight: 900;
}

.ib-public-detail-cover {
	position: relative;
}

.ib-public-detail-cover img {
	width: 100%;
	height: 100%;
	min-height: 490px;
	object-fit: cover;
}

.ib-public-detail-copy {
	align-self: center;
	padding: 58px clamp(32px, 6vw, 76px);
}

.ib-public-detail-meta {
	margin: 17px 0 7px;
	color: var(--ibp-muted);
	font-size: 13px;
	font-weight: 800;
}

.ib-public-detail-copy h1 {
	max-width: 760px;
	margin-bottom: 18px;
	color: var(--ibp-ink);
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 850;
	line-height: 1.03;
	letter-spacing: -.05em;
}

.ib-public-detail-lead {
	max-width: 760px;
	margin-bottom: 28px;
	color: var(--ibp-muted);
	font-size: clamp(16px, 1.7vw, 19px);
	line-height: 1.7;
}

.ib-public-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ib-public-button.is-outline {
	border: 1px solid #d8c5ca;
	background: #fff;
	box-shadow: none;
	color: var(--ibp-primary-dark);
}

.ib-public-button.is-outline:hover {
	color: var(--ibp-primary-dark);
}

.ib-public-detail-facts {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: -32px 34px 64px;
}

.ib-public-detail-facts article {
	display: grid;
	align-content: center;
	min-height: 112px;
	padding: 22px 24px;
	border: 1px solid var(--ibp-line);
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 15px 40px rgba(53,18,27,.075);
}

.ib-public-detail-facts small {
	margin-bottom: 6px;
	color: var(--ibp-primary);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.ib-public-detail-facts strong {
	overflow-wrap: anywhere;
	color: var(--ibp-ink);
	font-size: 15px;
	line-height: 1.4;
}

.ib-public-detail-section {
	margin-top: 62px;
	scroll-margin-top: 110px;
}

.ib-public-detail-section > h2 {
	max-width: 820px;
	margin-bottom: 22px;
	color: var(--ibp-ink);
	font-size: clamp(29px, 3.5vw, 43px);
	line-height: 1.12;
	letter-spacing: -.035em;
}

.ib-public-detail-content {
	max-width: 900px;
	color: var(--ibp-muted);
	font-size: 16px;
	line-height: 1.8;
}

.ib-public-detail-content > *:last-child {
	margin-bottom: 0;
}

.ib-public-application-section {
	padding: 36px;
	border: 1px solid var(--ibp-line);
	border-radius: 24px;
	background: var(--ibp-soft);
}

@media (max-width: 1100px) {
	.ib-public-hero {
		grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
	}
	.ib-public-hero-copy {
		padding-left: 44px;
	}
	.ib-public-brand-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ib-public-detail-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 880px) {
	.ib-public-hero {
		grid-template-columns: 1fr;
	}
	.ib-public-hero-copy {
		padding: 48px 36px;
	}
	.ib-public-hero-panel {
		display: none;
	}
	.ib-public-metrics {
		margin-right: 18px;
		margin-left: 18px;
	}
	.ib-public-opportunity-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ib-public-filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ib-public-filters.is-compact {
		grid-template-columns: 1fr 1fr;
	}
	.ib-public-cta {
		align-items: flex-start;
		flex-direction: column;
	}
	.ib-public-detail-hero {
		grid-template-columns: 1fr;
	}
	.ib-public-detail-logo,
	.ib-public-detail-cover,
	.ib-public-detail-cover img {
		min-height: 340px;
	}
}

@media (max-width: 640px) {
	.ib-public {
		width: min(100% - 20px, 1240px);
		margin: 22px auto 48px;
	}
	.ib-public-hero {
		min-height: auto;
		border-radius: 21px;
	}
	.ib-public-hero-copy {
		padding: 36px 22px;
	}
	.ib-public-hero h1 {
		font-size: 37px;
	}
	.ib-public-quick-search {
		grid-template-columns: 1fr;
	}
	.ib-public-quick-search button {
		width: 100%;
	}
	.ib-public-metrics {
		grid-template-columns: 1fr;
		margin: 16px 0 54px;
	}
	.ib-public-metrics article {
		min-height: 88px;
	}
	.ib-public-section-head,
	.ib-public-directory-head {
		align-items: flex-start;
		flex-direction: column;
	}
	.ib-public-brand-grid,
	.ib-public-opportunity-grid,
	.ib-public-filters,
	.ib-public-filters.is-compact {
		grid-template-columns: 1fr;
	}
	.ib-public-directory-head {
		padding: 29px 23px;
	}
	.ib-public-filters {
		padding: 18px;
	}
	.ib-public-cta {
		padding: 34px 25px;
		border-radius: 21px;
	}
	.ib-public-button.is-light {
		width: 100%;
	}
	.ib-public-detail-hero {
		border-radius: 21px;
	}
	.ib-public-detail-copy {
		padding: 34px 23px 42px;
	}
	.ib-public-detail-copy h1 {
		font-size: 38px;
	}
	.ib-public-detail-actions,
	.ib-public-detail-actions .ib-public-button {
		width: 100%;
	}
	.ib-public-detail-facts {
		grid-template-columns: 1fr;
		margin: 14px 0 50px;
	}
	.ib-public-detail-facts article {
		min-height: 88px;
	}
	.ib-public-application-section {
		padding: 18px;
	}
}

/* Zengin marka profili: Impreza Page Template içindeki dinamik içerik katmanı. */
.ib-brand-rich {
	--ib-brand-accent: #c5394e;
	width: min(1380px, calc(100% - 34px));
}

.ib-brand-hero {
	display: grid;
	grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
	min-height: 590px;
	overflow: hidden;
	border: 1px solid #eadde1;
	border-radius: 34px;
	background: #fff;
	box-shadow: 0 28px 90px rgba(48, 17, 27, .12);
}

.ib-brand-hero-visual {
	position: relative;
	min-height: 500px;
	background-color: #27161b;
	background-position: center;
	background-size: cover;
}

.ib-brand-hero-visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 7, 11, .04), rgba(20, 7, 11, .66));
	content: "";
}

.ib-brand-hero-logo {
	position: absolute;
	z-index: 2;
	top: 32px;
	left: 32px;
	display: grid;
	width: 132px;
	height: 132px;
	place-items: center;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, .9);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.ib-brand-hero-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ib-brand-hero-logo span {
	color: var(--ib-brand-accent);
	font-size: 36px;
	font-weight: 900;
}

.ib-brand-hero-ribbon {
	position: absolute;
	z-index: 2;
	right: 28px;
	bottom: 28px;
	padding: 11px 17px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 999px;
	background: rgba(28,11,16,.72);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
}

.ib-brand-hero-copy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(44px, 6vw, 88px);
	background:
		radial-gradient(circle at 100% 0, color-mix(in srgb, var(--ib-brand-accent) 14%, transparent), transparent 34%),
		linear-gradient(135deg, #fff 0%, #fff9fa 100%);
}

.ib-brand-hero-copy::before {
	position: absolute;
	right: -75px;
	bottom: -105px;
	width: 290px;
	height: 290px;
	border: 42px solid color-mix(in srgb, var(--ib-brand-accent) 7%, transparent);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.ib-brand-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	color: var(--ibp-muted);
	font-size: 13px;
	font-weight: 800;
}

.ib-brand-hero-copy h1 {
	position: relative;
	margin-bottom: 22px;
	color: var(--ibp-ink);
	font-size: clamp(48px, 6vw, 78px);
	font-weight: 880;
	line-height: .98;
	letter-spacing: -.06em;
}

.ib-brand-hero-copy > p {
	position: relative;
	max-width: 650px;
	margin-bottom: 30px;
	color: #665a5e;
	font-size: 18px;
	line-height: 1.75;
}

.ib-brand-demo-note {
	position: relative;
	margin-top: 20px;
	color: #8a7b80;
	font-size: 11px;
	line-height: 1.5;
}

.ib-brand-anchor-nav {
	position: sticky;
	z-index: 90;
	top: var(--ib-anchor-top, 12px);
	display: flex;
	min-height: 0;
	align-items: center;
	gap: 8px;
	margin: 20px 0 54px;
	padding: 8px;
	overflow-x: auto;
	border: 1px solid var(--ibp-line);
	border-radius: 15px;
	background: rgba(255,255,255,.97);
	box-shadow: 0 12px 35px rgba(48,17,27,.08);
	backdrop-filter: blur(12px);
	scrollbar-width: none;
	transition: border-radius .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ib-brand-anchor-nav.is-stuck {
	border-color: color-mix(in srgb, var(--ibp-primary) 24%, white);
	border-radius: 12px;
	box-shadow: 0 16px 42px rgba(36,16,24,.15);
}

.ib-brand-anchor-nav::-webkit-scrollbar {
	display: none;
}

.ib-brand-anchor-nav a {
	flex: 0 0 auto;
	padding: 11px 16px;
	border-radius: 10px;
	color: #63575b;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	white-space: nowrap;
}

.ib-brand-anchor-nav a:hover,
.ib-brand-anchor-nav a.is-active {
	background: var(--ibp-ink);
	color: #fff;
}

.ib-brand-anchor-nav a.is-active {
	box-shadow: inset 0 -3px 0 var(--ibp-gold);
}

.ib-brand-overview {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
	gap: 42px;
	align-items: start;
	margin-bottom: 42px;
}

.ib-brand-overview h2,
.ib-brand-section h2 {
	margin-bottom: 16px;
	color: var(--ibp-ink);
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.07;
	letter-spacing: -.04em;
}

.ib-brand-overview .ib-public-detail-content {
	color: #665a5e;
	font-size: 16px;
	line-height: 1.85;
}

.ib-brand-identity,
.ib-brand-finance-stack {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid #ebdfe2;
	border-radius: 20px;
	background: #ebdfe2;
	box-shadow: 0 18px 50px rgba(48,17,27,.07);
}

.ib-brand-identity article,
.ib-brand-finance-stack article {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	background: #fff;
}

.ib-brand-identity small,
.ib-brand-finance-stack small {
	color: #8d7f84;
	font-size: 12px;
	font-weight: 700;
}

.ib-brand-identity strong,
.ib-brand-finance-stack strong {
	color: var(--ibp-ink);
	font-size: 14px;
	text-align: right;
}

.ib-brand-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 17px;
	margin-bottom: 70px;
}

.ib-brand-metrics article {
	display: flex;
	min-height: 150px;
	align-items: center;
	gap: 18px;
	padding: 25px;
	border: 1px solid #eadde1;
	border-radius: 23px;
	background: #fff;
	box-shadow: 0 14px 44px rgba(48,17,27,.065);
}

.ib-brand-metrics img {
	flex: 0 0 70px;
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.ib-brand-metrics div {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.ib-brand-metrics small,
.ib-brand-metrics span {
	color: #887a7f;
	font-size: 11px;
	font-weight: 700;
}

.ib-brand-metrics strong {
	margin: 5px 0 3px;
	color: var(--ibp-ink);
	font-size: clamp(19px, 2vw, 27px);
	line-height: 1.12;
}

.ib-brand-section {
	margin: 0 0 76px;
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid #ebdfe2;
	border-radius: 29px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(48,17,27,.07);
	scroll-margin-top: 110px;
}

.ib-brand-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 34px;
}

.ib-brand-section-head > div {
	max-width: 850px;
}

.ib-brand-section-head h2 {
	margin-bottom: 11px;
}

.ib-brand-section-head p {
	margin-bottom: 0;
	color: #766a6e;
	font-size: 15px;
	line-height: 1.65;
}

.ib-brand-section-head > img {
	width: 100px;
	height: 100px;
	flex: 0 0 100px;
	object-fit: contain;
}

.ib-brand-earnings {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 93% 8%, color-mix(in srgb, var(--ib-brand-accent) 14%, transparent), transparent 25%),
		linear-gradient(135deg, #fff 0%, #fff8f9 100%);
}

.ib-brand-earnings-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
	gap: 26px;
}

.ib-brand-calculator {
	padding: clamp(24px, 3vw, 40px);
	border: 1px solid color-mix(in srgb, var(--ib-brand-accent) 22%, white);
	border-radius: 22px;
	background: #fff;
}

.ib-brand-calculator label {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.ib-brand-calculator label span {
	color: #766a6e;
	font-size: 13px;
	font-weight: 800;
}

.ib-brand-calculator label strong {
	color: var(--ib-brand-accent);
	font-size: clamp(23px, 3vw, 36px);
}

.ib-brand-calculator input[type="range"] {
	width: 100%;
	accent-color: var(--ib-brand-accent);
	cursor: pointer;
}

.ib-brand-calculator-result {
	margin-top: 28px;
	padding: 25px;
	border-radius: 18px;
	background: var(--ibp-ink);
	color: #fff;
}

.ib-brand-calculator-result small,
.ib-brand-calculator-result span {
	display: block;
	color: #d9cbd0;
	font-size: 11px;
}

.ib-brand-calculator-result strong {
	display: block;
	margin: 7px 0;
	color: #fff;
	font-size: clamp(29px, 4vw, 46px);
}

.ib-brand-calculator > p {
	margin: 18px 0 0;
	color: #8b7d82;
	font-size: 11px;
	line-height: 1.65;
}

.ib-brand-news-grid,
.ib-brand-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ib-brand-news-grid article {
	position: relative;
	min-height: 335px;
	padding: 27px;
	overflow: hidden;
	border: 1px solid #ebdfe2;
	border-radius: 21px;
	background: linear-gradient(145deg, #fff, #fbf5f7);
}

.ib-brand-news-grid img {
	width: 70px;
	height: 70px;
	margin-bottom: 21px;
	object-fit: contain;
}

.ib-brand-news-grid span,
.ib-brand-product-grid span {
	display: block;
	margin-bottom: 9px;
	color: var(--ib-brand-accent);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.ib-brand-news-grid h3,
.ib-brand-product-grid h3 {
	margin-bottom: 12px;
	color: var(--ibp-ink);
	font-size: 21px;
	line-height: 1.25;
}

.ib-brand-news-grid p,
.ib-brand-product-grid p {
	color: #74686c;
	font-size: 13px;
	line-height: 1.65;
}

.ib-brand-news-grid time {
	position: absolute;
	right: 27px;
	bottom: 24px;
	left: 27px;
	padding-top: 14px;
	border-top: 1px solid #eadde1;
	color: #9b8d92;
	font-size: 11px;
}

.ib-brand-product-grid article {
	overflow: hidden;
	border: 1px solid #eadde1;
	border-radius: 22px;
	background: #fff;
}

.ib-brand-product-grid article > img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ib-brand-product-grid article > div {
	padding: 25px;
}

.ib-brand-gallery {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	grid-template-rows: repeat(2, minmax(220px, 1fr));
	gap: 13px;
}

.ib-brand-gallery figure {
	min-height: 220px;
	margin: 0;
	overflow: hidden;
	border-radius: 18px;
	background: #f3e8eb;
}

.ib-brand-gallery figure:first-child {
	grid-row: 1 / span 2;
}

.ib-brand-gallery figure:last-child {
	grid-column: 2 / span 2;
}

.ib-brand-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.ib-brand-gallery figure:hover img {
	transform: scale(1.035);
}

.ib-brand-map {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr);
	gap: 23px;
}

.ib-brand-map-stage {
	position: relative;
	display: grid;
	min-height: 530px;
	place-items: center;
	overflow: hidden;
	border: 1px solid #eadde1;
	border-radius: 22px;
	background:
		radial-gradient(circle at 20% 25%, rgba(232,116,138,.12), transparent 25%),
		linear-gradient(145deg, #fffafc, #f5ecef);
}

.ib-brand-map svg {
	width: 94%;
	max-height: 500px;
	overflow: visible;
	transition: all .45s ease;
}

.ib-brand-map path {
	fill: #e4d7db;
	stroke: #fff;
	stroke-width: 1.1px;
	cursor: pointer;
	outline: none;
	transition: fill .18s ease, opacity .18s ease;
}

.ib-brand-map path:hover,
.ib-brand-map path:focus {
	fill: #cbb9bf;
}

.ib-brand-map path.has-location {
	fill: color-mix(in srgb, var(--ib-brand-accent) 75%, #fff);
}

.ib-brand-map path.has-location:hover,
.ib-brand-map path.has-location:focus,
.ib-brand-map path.is-active {
	fill: var(--ibp-gold);
}

.ib-brand-map.is-focused path:not(.is-active) {
	opacity: .45;
}

.ib-brand-map-tooltip {
	position: absolute;
	z-index: 4;
	max-width: 190px;
	padding: 8px 11px;
	border-radius: 8px;
	background: var(--ibp-ink);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	pointer-events: none;
}

.ib-brand-map aside {
	display: flex;
	min-height: 530px;
	flex-direction: column;
	padding: 23px;
	border-radius: 22px;
	background: var(--ibp-ink);
	color: #fff;
}

.ib-brand-map-summary {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,.13);
}

.ib-brand-map-summary strong {
	color: #fff;
	font-size: 44px;
	line-height: 1;
}

.ib-brand-map-summary span {
	padding-bottom: 4px;
	color: #d4c6ca;
	font-size: 11px;
}

.ib-brand-map-reset {
	margin: 16px 0;
	padding: 10px 13px;
	border: 1px solid rgba(255,255,255,.17);
	border-radius: 9px;
	background: rgba(255,255,255,.07);
	color: #fff;
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.ib-brand-city-list {
	display: grid;
	gap: 6px;
	max-height: 230px;
	overflow-y: auto;
}

.ib-brand-city-list button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 11px;
	border: 0;
	border-radius: 8px;
	background: rgba(255,255,255,.06);
	color: #fff;
	font: inherit;
	font-size: 12px;
	cursor: pointer;
}

.ib-brand-city-list button:hover {
	background: var(--ib-brand-accent);
}

.ib-brand-city-list strong {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255,255,255,.13);
	font-size: 10px;
}

.ib-brand-city-detail {
	display: flex;
	min-height: 94px;
	flex-direction: column;
	justify-content: center;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.13);
}

.ib-brand-city-detail small,
.ib-brand-city-detail span {
	color: #cdbfc4;
	font-size: 10px;
	line-height: 1.5;
}

.ib-brand-city-detail strong {
	margin: 4px 0;
	color: #fff;
	font-size: 15px;
}

.ib-brand-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
	gap: 35px;
}

.ib-brand-contact .ib-brand-section-head {
	align-items: flex-start;
}

.ib-brand-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ib-brand-socials a,
.ib-brand-socials > span {
	padding: 12px 17px;
	border: 1px solid #e6d8dc;
	border-radius: 999px;
	color: #615559;
	font-size: 12px;
	font-weight: 800;
}

.ib-brand-socials a:hover {
	border-color: var(--ib-brand-accent);
	color: var(--ib-brand-accent);
}

.ib-brand-whatsapp {
	position: relative;
	padding: 29px;
	overflow: hidden;
	border-radius: 23px;
	background: linear-gradient(145deg, #102a22, #163b31);
	color: #fff;
}

.ib-brand-whatsapp::after {
	position: absolute;
	right: -40px;
	bottom: -65px;
	width: 180px;
	height: 180px;
	border: 28px solid rgba(255,255,255,.055);
	border-radius: 50%;
	content: "";
}

.ib-brand-whatsapp img {
	width: 82px;
	height: 82px;
	object-fit: contain;
}

.ib-brand-whatsapp > span:first-of-type {
	display: block;
	margin: 14px 0 6px;
	color: #8ee2b5;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .12em;
}

.ib-brand-whatsapp h3 {
	color: #fff;
	font-size: 24px;
}

.ib-brand-whatsapp p {
	color: #c8dbd3;
	font-size: 13px;
	line-height: 1.6;
}

.ib-brand-whatsapp a,
.ib-brand-locked-label {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-top: 8px;
	padding: 12px 16px;
	border-radius: 10px;
	background: #31b66f;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.ib-brand-whatsapp.is-locked {
	filter: saturate(.72);
}

.ib-brand-locked-label {
	background: rgba(255,255,255,.1);
	color: #ded3d6;
}

.ib-brand-faq {
	display: grid;
	gap: 10px;
}

.ib-brand-faq details {
	border: 1px solid #eadde1;
	border-radius: 15px;
	background: #fff;
}

.ib-brand-faq summary {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 21px;
	color: var(--ibp-ink);
	font-size: 14px;
	font-weight: 850;
	cursor: pointer;
	list-style: none;
}

.ib-brand-faq summary::-webkit-details-marker {
	display: none;
}

.ib-brand-faq summary span {
	display: grid;
	width: 29px;
	height: 29px;
	flex: 0 0 29px;
	place-items: center;
	border-radius: 50%;
	background: #f7ecef;
	color: var(--ib-brand-accent);
	font-size: 18px;
	transition: transform .2s ease;
}

.ib-brand-faq details[open] summary span {
	transform: rotate(45deg);
}

.ib-brand-faq details p {
	margin: 0;
	padding: 0 21px 22px;
	color: #74686c;
	font-size: 13px;
	line-height: 1.75;
}

@media (max-width: 1100px) {
	.ib-brand-hero {
		grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
	}
	.ib-brand-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ib-brand-news-grid,
	.ib-brand-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ib-brand-news-grid article:last-child,
	.ib-brand-product-grid article:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 880px) {
	.ib-brand-hero,
	.ib-brand-overview,
	.ib-brand-earnings-grid,
	.ib-brand-map,
	.ib-brand-contact {
		grid-template-columns: 1fr;
	}
	.ib-brand-hero-visual {
		min-height: 430px;
	}
	.ib-brand-map aside {
		min-height: auto;
	}
	.ib-brand-city-detail {
		margin-top: 18px;
	}
	.ib-brand-gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, minmax(220px, 1fr));
	}
	.ib-brand-gallery figure:first-child,
	.ib-brand-gallery figure:last-child {
		grid-row: auto;
		grid-column: auto;
	}
}

@media (max-width: 640px) {
	.ib-brand-rich {
		width: min(100% - 18px, 1380px);
	}
	.ib-brand-hero,
	.ib-brand-section {
		border-radius: 22px;
	}
	.ib-brand-hero-visual {
		min-height: 330px;
	}
	.ib-brand-hero-logo {
		top: 20px;
		left: 20px;
		width: 102px;
		height: 102px;
		border-width: 6px;
		border-radius: 21px;
	}
	.ib-brand-hero-ribbon {
		right: 18px;
		bottom: 18px;
	}
	.ib-brand-hero-copy {
		padding: 36px 23px 42px;
	}
	.ib-brand-hero-copy h1 {
		font-size: 44px;
	}
	.ib-brand-eyebrow {
		align-items: flex-start;
		flex-direction: column;
	}
	.ib-brand-anchor-nav {
		top: 5px;
		margin-bottom: 40px;
	}
	.ib-brand-metrics,
	.ib-brand-news-grid,
	.ib-brand-product-grid,
	.ib-brand-gallery {
		grid-template-columns: 1fr;
	}
	.ib-brand-news-grid article:last-child,
	.ib-brand-product-grid article:last-child {
		grid-column: auto;
	}
	.ib-brand-section {
		margin-bottom: 38px;
		padding: 25px 19px;
	}
	.ib-brand-section-head {
		align-items: flex-start;
	}
	.ib-brand-section-head > img {
		width: 74px;
		height: 74px;
		flex-basis: 74px;
	}
	.ib-brand-calculator label {
		align-items: flex-start;
		flex-direction: column;
	}
	.ib-brand-map-stage {
		min-height: 350px;
	}
	.ib-brand-gallery figure {
		min-height: 260px;
	}
}
