@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* ==========================================================
 * DAMPAK SLIDER — Frontend Styles v1.3
 * - Arkaplan görseli daha küçük, sağa yapışık (auto 100%)
 * - Oklar container'dan uzaklaştırıldı
 * - Mobilde görsel üstte görünür
 * - Counter kaldırıldı
 * ========================================================== */

.dmp-sld,
.dmp-sld *,
.dmp-sld *::before,
.dmp-sld *::after {
	box-sizing: border-box;
}

.dmp-sld {
	--dmp-accent: #ccd74d;
	--dmp-bg-fallback: #050505;
	--dmp-text: #ffffff;
	--dmp-container: 1440px;

	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	position: relative;
	width: 100%;
	height: 560px;
	background: var(--dmp-bg-fallback);
	border-radius: 0;
	overflow: hidden;
	color: var(--dmp-text);
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.dmp-sld.is-dragging {
	cursor: grabbing;
}

.dmp-sld__track {
	position: absolute;
	inset: 0;
}

/* ==========================================================
 * SLIDE — görsel CSS custom property ile geliyor
 * (Desktop ve mobile için ayrı görseller @media ile değişebilir)
 * ========================================================== */
.dmp-slide {
	position: absolute;
	inset: 0;
	background-color: var(--dmp-bg-fallback);
	background-image: var(--bg-desktop, none);
	background-size: auto 100%;
	background-position: var(--bg-position, right center);
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.9s ease, visibility 0.9s ease;
}

.dmp-slide.is-active {
	opacity: 1;
	visibility: visible;
}

/* Gradient overlay — sola doğru karartma */
.dmp-slide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.85) 25%,
		rgba(0, 0, 0, 0.55) 50%,
		rgba(0, 0, 0, 0.2) 75%,
		rgba(0, 0, 0, 0) 95%);
	z-index: 1;
}

.dmp-slide__overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
		rgba(0, 0, 0, 0.2) 0%,
		transparent 25%,
		transparent 75%,
		rgba(0, 0, 0, 0.3) 100%);
}

/* ==========================================================
 * 1440 CONTAINER
 * ========================================================== */
.dmp-slide__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--dmp-container);
	margin: 0 auto;
	height: 100%;
	padding: 0;
}

.dmp-slide__content {
	max-width: 580px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 0;
}

.dmp-slide__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--dmp-accent);
	margin-bottom: 20px;
}

.dmp-slide__eyebrow::before {
	content: "";
	width: 32px;
	height: 2px;
	background: var(--dmp-accent);
}

.dmp-slide__title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.5px;
	margin: 0 0 22px;
	color: var(--dmp-text);
}

.dmp-slide__lead {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 36px;
	max-width: 460px;
}

.dmp-slide__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--dmp-accent);
	color: #0a0a0a;
	padding: 16px 32px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-decoration: none;
	align-self: flex-start;
	transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dmp-slide__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(204, 215, 77, 0.3);
}

.dmp-slide__cta svg {
	width: 14px;
	height: 14px;
}

/* ==========================================================
 * OK BUTONLARI — container'dan 80px DIŞARDA
 * ========================================================== */
.dmp-sld .dmp-sld__nav,
.dmp-sld .dmp-sld__nav:link,
.dmp-sld .dmp-sld__nav:visited {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background-color: rgba(0, 0, 0, 0.4) !important;
	background-image: none !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 50% !important;
	color: #ffffff !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	padding: 0 !important;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
	box-shadow: none !important;
	text-decoration: none !important;
}

.dmp-sld .dmp-sld__nav:hover,
.dmp-sld .dmp-sld__nav:focus,
.dmp-sld .dmp-sld__nav:focus-visible,
.dmp-sld .dmp-sld__nav:active {
	background-color: var(--dmp-accent) !important;
	background-image: none !important;
	border-color: var(--dmp-accent) !important;
	color: #0a0a0a !important;
	outline: none !important;
	box-shadow: none !important;
}

.dmp-sld__nav--prev {
	left: max(20px, calc(50% - var(--dmp-container) / 2 - 80px));
}

.dmp-sld__nav--next {
	right: max(20px, calc(50% - var(--dmp-container) / 2 - 80px));
}

.dmp-sld .dmp-sld__nav svg {
	width: 18px;
	height: 18px;
}

/* ==========================================================
 * DOT NAVIGASYON
 * ========================================================== */
.dmp-sld__dots {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}

.dmp-sld .dmp-sld__dot,
.dmp-sld .dmp-sld__dot:link,
.dmp-sld .dmp-sld__dot:visited {
	width: 28px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.25) !important;
	background-image: none !important;
	border: none !important;
	cursor: pointer;
	padding: 0 !important;
	transition: background-color 0.25s ease, width 0.25s ease;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.dmp-sld .dmp-sld__dot:hover,
.dmp-sld .dmp-sld__dot:focus,
.dmp-sld .dmp-sld__dot:focus-visible {
	background-color: rgba(255, 255, 255, 0.5) !important;
	outline: none !important;
	box-shadow: none !important;
}

.dmp-sld .dmp-sld__dot.is-active {
	background-color: var(--dmp-accent) !important;
	width: 44px;
}

/* ==========================================================
 * PROGRESS BAR
 * ========================================================== */
.dmp-sld__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--dmp-accent);
	width: 0%;
	transition: width 0.15s linear;
	z-index: 5;
}

/* ==========================================================
 * RESPONSIVE
 * ========================================================== */
@media (max-width: 1280px) {
	.dmp-slide__container {
		padding: 0;
	}
	.dmp-slide__title {
		font-size: 46px;
	}
}

@media (max-width: 1024px) {
	.dmp-slide__container {
		padding: 0;
	}
	.dmp-slide__title {
		font-size: 42px;
	}
	.dmp-slide__content {
		padding: 70px 0;
	}
}

/* ==========================================================
 * MOBILE — Görsel ÜSTTE (mobile-specific image varsa o kullanılır)
 * ========================================================== */
@media (max-width: 900px) {
	.dmp-sld {
		height: auto !important;
		min-height: 680px;
	}

	/* Mobil-spesifik görsel varsa onu, yoksa desktop görselini kullan */
	.dmp-slide {
		background-image: var(--bg-mobile, var(--bg-desktop, none));
		background-size: cover;
		background-position: center top;
	}

	/* Üst tamamen şeffaf (görsel görünür), alt karanlık (yazı okunur) */
	.dmp-slide__overlay {
		background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0) 35%,
			rgba(0, 0, 0, 0.45) 50%,
			rgba(0, 0, 0, 0.85) 70%,
			rgba(0, 0, 0, 0.95) 100%);
	}
	.dmp-slide__overlay::after {
		display: none;
	}

	.dmp-slide__container {
		padding: 0;
	}

	.dmp-slide__content {
		max-width: 100%;
		min-height: 680px;
		justify-content: flex-end;
		padding: 380px 0 100px;
	}

	.dmp-slide__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.dmp-slide__lead {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.dmp-sld .dmp-sld__nav {
		display: none !important;
	}

	.dmp-sld__dots {
		bottom: 42px;
	}
}

@media (max-width: 600px) {
	.dmp-sld {
		min-height: 660px;
	}
	.dmp-slide__container {
		padding: 0;
	}
	.dmp-slide__content {
		min-height: 660px;
		padding: 340px 0 90px;
	}
	.dmp-slide__title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.dmp-sld {
		min-height: 620px;
	}
	.dmp-slide__content {
		min-height: 620px;
		padding: 300px 0 80px;
	}
	.dmp-slide__title {
		font-size: 26px;
		line-height: 1.15;
	}
	.dmp-slide__lead {
		font-size: 14px;
		line-height: 1.65;
	}
	.dmp-slide__cta {
		padding: 14px 26px;
		font-size: 12px;
	}
}

/* ==========================================================
 * DAMPAK PRODUCT CATEGORIES GRID
 * ========================================================== */
.dmp-catgrid,
.dmp-catgrid *,
.dmp-catgrid *::before,
.dmp-catgrid *::after {
	box-sizing: border-box;
}

.dmp-catgrid {
	--dmp-cat-accent: #ccd74d;
	--dmp-cat-columns: 3;
	width: 100%;
	background: #ffffff;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dmp-catgrid__grid {
	display: grid;
	grid-template-columns: repeat(var(--dmp-cat-columns), minmax(0, 1fr));
	gap: 26px 22px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

.dmp-catcard {
	background: #ffffff;
}

.dmp-catcard__media {
	position: relative;
	display: block;
	aspect-ratio: 321 / 145;
	background: #151515;
	overflow: hidden;
	text-decoration: none;
}

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

.dmp-catcard__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	letter-spacing: 0.4px;
}

.dmp-catcard__arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 54px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dmp-cat-accent);
	color: #141414;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.dmp-catcard__arrow svg {
	width: 17px;
	height: 17px;
}

.dmp-catcard__body {
	padding: 12px 2px 0;
}

.dmp-catcard__title {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: -0.3px;
	color: #111111;
}

.dmp-catcard__title a {
	color: inherit;
	text-decoration: none;
}

.dmp-catcard__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: #555555;
}

.dmp-catcard:hover .dmp-catcard__arrow {
	transform: translateX(3px);
}

@media (max-width: 1024px) {
	.dmp-catgrid__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dmp-catcard__title {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.dmp-catgrid__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.dmp-catcard__title {
		font-size: 20px;
	}

	.dmp-catcard__desc {
		font-size: 14px;
	}
}

/* ==========================================================
 * DAMPAK FOOTER
 * ========================================================== */
.dmp-footer,
.dmp-footer *,
.dmp-footer *::before,
.dmp-footer *::after {
	box-sizing: border-box;
}

.dmp-footer {
	--dmp-footer-accent: #ccd74d;
	--dmp-footer-bg: #050505;
	--dmp-footer-text: #ffffff;
	--dmp-footer-muted: rgba(255, 255, 255, 0.62);
	--dmp-footer-line: rgba(255, 255, 255, 0.12);
	--dmp-footer-container: 1440px;

	width: 100%;
	background: var(--dmp-footer-bg);
	color: var(--dmp-footer-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dmp-footer__inner {
	width: 100%;
	max-width: var(--dmp-footer-container);
	margin: 0 auto;
	padding: 76px 0 30px;
}

.dmp-footer__top {
	display: grid;
	grid-template-columns: minmax(260px, 1.45fr) minmax(150px, 0.72fr) minmax(150px, 0.72fr) minmax(230px, 0.95fr);
	gap: 54px;
	align-items: start;
}

.dmp-footer__brand {
	max-width: 430px;
}

.dmp-footer__logo {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 74px;
	object-fit: contain;
	margin-bottom: 24px;
}

.dmp-footer__brand-title {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: var(--dmp-footer-accent);
	font-size: 34px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0;
}

.dmp-footer__brand-title::before {
	content: "";
	width: 36px;
	height: 3px;
	background: var(--dmp-footer-accent);
}

.dmp-footer__description {
	margin: 0 0 28px;
	color: var(--dmp-footer-muted);
	font-size: 15px;
	line-height: 1.75;
}

.dmp-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 14px 22px;
	background: var(--dmp-footer-accent);
	color: #0a0a0a;
	border-radius: 6px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dmp-footer__cta:hover,
.dmp-footer__cta:focus {
	color: #0a0a0a;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(204, 215, 77, 0.25);
}

.dmp-footer__cta svg {
	width: 14px;
	height: 14px;
}

.dmp-footer__heading {
	margin: 0 0 18px;
	color: var(--dmp-footer-text);
	font-size: 13px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.dmp-footer__links {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dmp-footer__links a,
.dmp-footer__contact-list a,
.dmp-footer__bottom-links a {
	color: var(--dmp-footer-muted);
	text-decoration: none;
	transition: color 0.18s ease, transform 0.18s ease;
}

.dmp-footer__links a {
	display: inline-flex;
	font-size: 14px;
	line-height: 1.45;
}

.dmp-footer__links a:hover,
.dmp-footer__links a:focus,
.dmp-footer__contact-list a:hover,
.dmp-footer__contact-list a:focus,
.dmp-footer__bottom-links a:hover,
.dmp-footer__bottom-links a:focus {
	color: var(--dmp-footer-accent);
}

.dmp-footer__contact-list {
	display: grid;
	gap: 10px;
	color: var(--dmp-footer-muted);
	font-size: 14px;
	line-height: 1.65;
}

.dmp-footer__contact-list p {
	margin: 0;
}

.dmp-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.dmp-footer__social-link {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dmp-footer-line);
	border-radius: 50%;
	color: var(--dmp-footer-accent);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.04);
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dmp-footer__social-link:hover,
.dmp-footer__social-link:focus {
	background: var(--dmp-footer-accent);
	border-color: var(--dmp-footer-accent);
	color: #0a0a0a;
	transform: translateY(-2px);
}

.dmp-footer__social-link svg,
.dmp-footer__social-link i {
	width: 17px;
	height: 17px;
	font-size: 17px;
	color: currentColor !important;
	fill: currentColor !important;
}

.dmp-footer__social-link svg path {
	fill: currentColor !important;
}

.dmp-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 58px;
	padding-top: 24px;
	border-top: 1px solid var(--dmp-footer-line);
	color: rgba(255, 255, 255, 0.48);
	font-size: 13px;
	line-height: 1.5;
}

.dmp-footer__bottom p {
	margin: 0;
}

.dmp-footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px 24px;
}

.dmp-footer__bottom-links a {
	color: rgba(255, 255, 255, 0.48);
	font-size: 13px;
}

@media (max-width: 1100px) {
	.dmp-footer__inner {
		padding-right: 0;
		padding-left: 0;
	}

	.dmp-footer__top {
		grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(150px, 0.8fr));
		gap: 42px 34px;
	}

	.dmp-footer__contact {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(180px, 0.35fr) minmax(260px, 1fr);
		gap: 18px 32px;
		padding-top: 30px;
		border-top: 1px solid var(--dmp-footer-line);
	}

	.dmp-footer__contact .dmp-footer__heading {
		margin-bottom: 0;
	}

	.dmp-footer__social {
		grid-column: 2;
		margin-top: 4px;
	}
}

@media (max-width: 767px) {
	.dmp-footer__inner {
		padding: 54px 0 28px;
	}

	.dmp-footer__top {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.dmp-footer__brand {
		max-width: none;
	}

	.dmp-footer__logo {
		max-width: 160px;
		margin-bottom: 20px;
	}

	.dmp-footer__brand-title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.dmp-footer__description {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.dmp-footer__cta {
		width: 100%;
		max-width: 320px;
	}

	.dmp-footer__contact {
		display: block;
		grid-column: auto;
		padding-top: 0;
		border-top: 0;
	}

	.dmp-footer__contact .dmp-footer__heading {
		margin-bottom: 18px;
	}

	.dmp-footer__social {
		margin-top: 22px;
	}

	.dmp-footer__bottom {
		display: grid;
		gap: 14px;
		margin-top: 40px;
		text-align: left;
	}

	.dmp-footer__bottom-links {
		justify-content: flex-start;
		gap: 10px 18px;
	}
}

.dmp-sld .dmp-sld__nav {
	display: none !important;
}

/* ==========================================================
 * DAMPAK FEATURED PRODUCTS
 * ========================================================== */
.dmp-products,
.dmp-products *,
.dmp-products *::before,
.dmp-products *::after {
	box-sizing: border-box;
}

.dmp-products {
	--dmp-products-accent: #ccd74d;
	--dmp-products-bg: #050505;
	--dmp-products-text: #ffffff;
	--dmp-products-muted: rgba(255, 255, 255, 0.68);
	--dmp-products-line: rgba(204, 215, 77, 0.2);
	position: relative;
	width: 100%;
	background:
		radial-gradient(circle at 18% 0%, rgba(204, 215, 77, 0.14), transparent 30%),
		radial-gradient(circle at 82% 22%, rgba(204, 215, 77, 0.09), transparent 28%),
		linear-gradient(90deg, rgba(204, 215, 77, 0.055) 1px, transparent 1px),
		linear-gradient(180deg, rgba(204, 215, 77, 0.04) 1px, transparent 1px),
		var(--dmp-products-bg);
	background-size: auto, auto, 96px 96px, 96px 96px, auto;
	color: var(--dmp-products-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	overflow: hidden;
}

.dmp-products::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
		linear-gradient(110deg, transparent 0 55%, rgba(255, 255, 255, 0.035) 55.2% 59%, transparent 59.2%);
	pointer-events: none;
}

.dmp-products__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 76px 0 66px;
}

.dmp-products__head {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.75fr);
	align-items: end;
	gap: 34px;
	margin-bottom: 34px;
}

.dmp-products__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	color: var(--dmp-products-accent);
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.dmp-products__eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--dmp-products-accent);
}

.dmp-products__title {
	margin: 0;
	color: var(--dmp-products-text);
	font-size: 44px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dmp-products__title mark,
.dmp-products__title span {
	display: table;
	width: fit-content;
	margin-top: 8px;
	padding: 0 10px 2px;
	background: var(--dmp-products-accent);
	color: #090b0f;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.dmp-products__desc {
	margin: 0;
	color: var(--dmp-products-muted);
	font-size: 15px;
	line-height: 1.75;
	font-weight: 500;
}

.dmp-products__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.dmp-products__viewport::-webkit-scrollbar {
	display: none;
}

.dmp-products__viewport.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.dmp-products__track {
	display: flex;
	gap: 24px;
	padding: 2px 0 8px;
}

.dmp-product-card {
	flex: 0 0 calc((100% - 72px) / 4);
	min-width: 280px;
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
	border: 1px solid var(--dmp-products-line);
	border-radius: 8px;
	cursor: pointer;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
		linear-gradient(135deg, rgba(204, 215, 77, 0.07), transparent 48%),
		#101010;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 24px 62px rgba(0, 0, 0, 0.42);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dmp-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(204, 215, 77, 0.64);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 30px 74px rgba(0, 0, 0, 0.5),
		0 0 28px rgba(204, 215, 77, 0.1);
}

.dmp-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(circle at 50% 52%, rgba(204, 215, 77, 0.22), transparent 43%),
		linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
		#151515;
	text-decoration: none;
	overflow: hidden;
}

.dmp-product-card__media::before {
	content: "";
	position: absolute;
	left: 22px;
	top: 22px;
	width: 42px;
	height: 6px;
	border-radius: 999px;
	background: var(--dmp-products-accent);
	box-shadow: 16px 10px 0 rgba(204, 215, 77, 0.42), 32px 20px 0 rgba(204, 215, 77, 0.2);
	z-index: 1;
}

.dmp-product-card__media::after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -64px;
	width: 160px;
	height: 190px;
	background: rgba(255, 255, 255, 0.055);
	transform: rotate(12deg);
}

.dmp-product-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 26px;
	transition: transform 0.22s ease;
	position: relative;
	z-index: 2;
}

.dmp-product-card:hover .dmp-product-card__img {
	transform: scale(1.045);
}

.dmp-product-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dmp-products-accent);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 4px;
}

.dmp-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.dmp-product-card__title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 0;
}

.dmp-product-card__title a {
	color: var(--dmp-products-text);
	text-decoration: none;
}

.dmp-product-card__excerpt {
	margin: 0 0 18px;
	color: var(--dmp-products-muted);
	font-size: 14px;
	line-height: 1.58;
}

.dmp-product-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dmp-product-card__price {
	color: var(--dmp-products-text);
	font-size: 15px;
	line-height: 1.3;
	font-weight: 800;
}

.dmp-product-card__price del {
	color: rgba(255, 255, 255, 0.42);
	font-weight: 600;
}

.dmp-product-card__price ins {
	color: var(--dmp-products-accent);
	text-decoration: none;
}

.dmp-product-card__button {
	min-height: 40px;
	padding: 12px 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--dmp-products-accent);
	color: #0a0a0a;
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 1px;
	white-space: nowrap;
}

.dmp-products__nav {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}

.dmp-products__arrow {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dmp-products-line);
	border-radius: 50%;
	background: #101010;
	color: var(--dmp-products-accent);
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dmp-products__arrow:hover,
.dmp-products__arrow:focus {
	background: var(--dmp-products-accent);
	border-color: var(--dmp-products-accent);
	color: #0a0a0a;
	transform: translateY(-2px);
}

.dmp-products__arrow svg {
	width: 18px;
	height: 18px;
}

.dmp-products__notice {
	max-width: 1440px;
	margin: 0 auto;
	padding: 28px;
	background: #101010;
	color: #ffffff;
	border: 1px solid rgba(204, 215, 77, 0.22);
	border-radius: 8px;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 1100px) {
	.dmp-product-card {
		flex-basis: calc((100% - 48px) / 3);
	}
}

@media (max-width: 900px) {
	.dmp-products__inner {
		padding: 56px 0 46px;
	}

	.dmp-products__head {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 16px;
	}

	.dmp-products__title {
		font-size: 34px;
	}

	.dmp-product-card {
		flex-basis: calc((100% - 24px) / 2);
	}
}

@media (max-width: 640px) {
	.dmp-products__inner {
		padding: 46px 0 40px;
	}

	.dmp-products__title {
		font-size: 28px;
		line-height: 1.15;
	}

	.dmp-product-card {
		flex-basis: 82%;
		min-width: 0;
	}

	.dmp-product-card__foot {
		align-items: stretch;
		flex-direction: column;
	}
}

/* ==========================================================
 * DAMPAK PRODUCT FEATURES
 * ========================================================== */
.dmp-features,
.dmp-features *,
.dmp-features *::before,
.dmp-features *::after {
	box-sizing: border-box;
}

.dmp-features {
	--dmp-features-accent: #ccd74d;
	--dmp-features-bg: #050505;
	--dmp-features-text: #ffffff;
	--dmp-features-muted: rgba(255, 255, 255, 0.68);
	--dmp-features-line: rgba(204, 215, 77, 0.22);
	--dmp-features-container: 1440px;

	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--dmp-features-bg);
	background-size: cover;
	background-position: center;
	color: var(--dmp-features-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dmp-features::before {
	content: none;
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(204, 215, 77, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(204, 215, 77, 0.045) 1px, transparent 1px);
	background-size: 104px 104px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 74%);
	pointer-events: none;
}

.dmp-features__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1440px !important;
	margin: 0 auto;
	padding: 56px 0 48px;
}

.dmp-features__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 0 16px;
	color: var(--dmp-features-accent);
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 3px;
	text-align: center;
	text-transform: uppercase;
}

.dmp-features__eyebrow::before,
.dmp-features__eyebrow::after {
	content: "";
	width: 38px;
	height: 2px;
	background: var(--dmp-features-accent);
}

.dmp-features__title {
	margin: 0 0 18px;
	color: var(--dmp-features-text);
	font-size: 28px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
}

.dmp-features__lead {
	max-width: 720px;
	margin: 0 auto 42px;
	color: var(--dmp-features-muted);
	font-size: 16px;
	line-height: 1.75;
	font-weight: 500;
	text-align: center;
}

.dmp-features__viewport {
	overflow: visible;
	cursor: default;
	touch-action: auto;
	user-select: auto;
}

.dmp-features__viewport::-webkit-scrollbar {
	display: none;
}

.dmp-features__track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
}

.dmp-feature-card {
	position: relative;
	min-width: 0;
	min-height: 260px;
	padding: 24px 16px 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	scroll-snap-align: start;
	border: 1px solid rgba(204, 215, 77, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		linear-gradient(135deg, rgba(204, 215, 77, 0.07), transparent 42%),
		#101010;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 22px 58px rgba(0, 0, 0, 0.38);
}

.dmp-feature-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: radial-gradient(circle at 50% 30%, rgba(204, 215, 77, 0.16), transparent 40%);
	opacity: 0.95;
	pointer-events: none;
}

.dmp-feature-card__icon {
	position: relative;
	width: 76px;
	height: 76px;
	margin: 0 auto 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #0a0a0a;
	background:
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.55), var(--dmp-feature-icon, #ccd74d) 38%, rgba(204, 215, 77, 0.18) 39%, rgba(255, 255, 255, 0.035) 66%, transparent 67%);
	box-shadow:
		inset 0 0 0 1px rgba(204, 215, 77, 0.34),
		0 0 34px rgba(204, 215, 77, 0.22);
}

.dmp-feature-card__icon i,
.dmp-feature-card__icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 24px;
	line-height: 1;
	filter: none;
}

.dmp-feature-card__icon > .elementor-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0;
	line-height: 1;
}

.dmp-feature-card__icon > .elementor-icon svg {
	position: static;
	transform: none;
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
}

.dmp-feature-card__icon i::before {
	display: block;
	line-height: 1;
}

.dmp-feature-card__title {
	position: relative;
	margin: 0 0 12px;
	color: var(--dmp-features-text);
	font-size: 16px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 0;
}

.dmp-feature-card__desc {
	position: relative;
	margin: 0;
	color: var(--dmp-features-muted);
	font-size: 13px;
	line-height: 1.55;
	font-weight: 600;
}

.dmp-features__actions {
	display: none;
	justify-items: center;
	gap: 22px;
	margin-top: 42px;
}

.dmp-features__nav {
	display: flex;
	gap: 14px;
}

.dmp-features__arrow {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dmp-features-line);
	border-radius: 50%;
	background: #101010;
	color: var(--dmp-features-accent);
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dmp-features__arrow:hover,
.dmp-features__arrow:focus {
	background: var(--dmp-features-accent);
	border-color: var(--dmp-features-accent);
	color: #0a0a0a;
	transform: translateY(-2px);
}

.dmp-features__arrow svg {
	width: 18px;
	height: 18px;
}

.dmp-features__cta {
	min-width: 250px;
	min-height: 58px;
	padding: 18px 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: var(--dmp-features-accent);
	color: #0a0a0a;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dmp-features__cta:hover,
.dmp-features__cta:focus {
	background: #dce75a;
	border-color: var(--dmp-features-accent);
	color: #0a0a0a;
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.dmp-feature-card {
		min-height: 280px;
	}
}

@media (max-width: 900px) {
	.dmp-features__inner {
		padding: 48px 0 42px;
	}

	.dmp-features__title {
		font-size: 24px;
		margin-bottom: 18px;
	}

	.dmp-features__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.dmp-features__inner {
		padding: 42px 0 36px;
	}

	.dmp-features__title {
		font-size: 22px;
		line-height: 1.15;
	}

	.dmp-features__track {
		grid-template-columns: 1fr;
	}

	.dmp-feature-card__icon {
		width: 96px;
		height: 96px;
		margin-bottom: 28px;
	}

	.dmp-features__cta {
		width: 100%;
		min-width: 0;
	}
}

/* ==========================================================
 * DAMPAK SUPPORT CARDS
 * ========================================================== */
.dmp-support,
.dmp-support *,
.dmp-support *::before,
.dmp-support *::after {
	box-sizing: border-box;
}

.dmp-support {
	--dmp-support-accent: #ccd74d;
	--dmp-support-bg: #050505;
	--dmp-support-text: #ffffff;
	--dmp-support-muted: rgba(255, 255, 255, 0.68);
	--dmp-support-line: rgba(255, 255, 255, 0.14);

	position: relative;
	width: 100%;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.94)),
		var(--dmp-support-image, none),
		radial-gradient(circle at 16% 0%, rgba(204, 215, 77, 0.14), transparent 34%),
		var(--dmp-support-bg);
	background-size: cover, cover, auto, auto;
	background-position: center, center, center, center;
	color: var(--dmp-support-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dmp-support::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(204, 215, 77, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(204, 215, 77, 0.035) 1px, transparent 1px);
	background-size: 100px 100px;
	pointer-events: none;
}

.dmp-support__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 86px 0 96px;
}

.dmp-support__head {
	max-width: 850px;
	margin: 0 auto 54px;
	text-align: center;
}

.dmp-support__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 0 18px;
	color: var(--dmp-support-accent);
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.dmp-support__eyebrow::before,
.dmp-support__eyebrow::after {
	content: "";
	width: 48px;
	height: 2px;
	background: var(--dmp-support-accent);
}

.dmp-support__title {
	margin: 0;
	color: var(--dmp-support-text);
	font-size: 44px;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: 0;
}

.dmp-support__desc {
	max-width: 780px;
	margin: 22px auto 0;
	color: var(--dmp-support-muted);
	font-size: 17px;
	line-height: 1.75;
	font-weight: 500;
}

.dmp-support__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	max-width: 1440px;
	margin: 0 auto;
}

.dmp-support-card {
	position: relative;
	min-height: 370px;
	padding: 42px 34px 34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	border: 1px solid var(--dmp-support-line);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
		rgba(18, 18, 18, 0.76);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 28px 70px rgba(0, 0, 0, 0.46);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dmp-support-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 22%, rgba(204, 215, 77, 0.17), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%);
	opacity: 1;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.dmp-support-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 138px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 50% 56%, rgba(204, 215, 77, 0.2), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.02));
	pointer-events: none;
}

.dmp-support-card:hover {
	transform: translateY(-5px);
	border-color: rgba(204, 215, 77, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 34px 84px rgba(0, 0, 0, 0.56),
		0 0 34px rgba(204, 215, 77, 0.09);
}

.dmp-support-card:hover::before {
	opacity: 1;
}

.dmp-support-card__icon {
	position: relative;
	z-index: 1;
	width: 92px;
	height: 92px;
	margin: 0 auto 70px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #0a0a0a;
	background:
		radial-gradient(circle at 50% 50%, #edf76a 0 34%, rgba(204, 215, 77, 0.34) 35% 58%, rgba(255, 255, 255, 0.06) 59% 100%);
	box-shadow: 0 0 36px rgba(204, 215, 77, 0.24);
}

.dmp-support-card__icon i,
.dmp-support-card__icon > svg,
.dmp-support-card__icon > .elementor-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0;
	font-size: 36px;
	line-height: 1;
	color: currentColor;
	fill: currentColor;
}

.dmp-support-card__icon > .elementor-icon svg {
	position: static;
	transform: none;
	display: block;
	width: 36px;
	height: 36px;
	margin: 0;
}

.dmp-support-card__icon i::before {
	display: block;
	line-height: 1;
}

.dmp-support-card__title {
	position: relative;
	z-index: 1;
	margin: 0 0 16px;
	color: var(--dmp-support-text);
	font-size: 22px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 0;
}

.dmp-support-card__desc {
	position: relative;
	z-index: 1;
	max-width: 280px;
	margin: 0 auto 30px;
	color: var(--dmp-support-muted);
	font-size: 15px;
	line-height: 1.65;
	font-weight: 500;
}

.dmp-support-card__button {
	position: relative;
	z-index: 1;
	min-height: 48px;
	padding: 14px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--dmp-support-accent);
	color: #0a0a0a;
	text-decoration: none;
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dmp-support-card__button:hover,
.dmp-support-card__button:focus {
	background: #dce75a;
	color: #0a0a0a;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(204, 215, 77, 0.22);
}

@media (max-width: 1100px) {
	.dmp-support__grid {
		max-width: 920px;
		gap: 22px;
	}

	.dmp-support-card {
		padding-right: 24px;
		padding-left: 24px;
	}
}

@media (max-width: 900px) {
	.dmp-support__inner {
		padding: 68px 0 74px;
	}

	.dmp-support__title {
		font-size: 34px;
	}

	.dmp-support__desc {
		font-size: 15px;
	}

	.dmp-support__grid {
		grid-template-columns: 1fr;
		max-width: 520px;
	}
}

@media (max-width: 640px) {
	.dmp-support__inner {
		padding: 56px 0 62px;
	}

	.dmp-support__head {
		margin-bottom: 34px;
	}

	.dmp-support__eyebrow {
		gap: 10px;
		font-size: 11px;
		letter-spacing: 2px;
	}

	.dmp-support__eyebrow::before,
	.dmp-support__eyebrow::after {
		width: 28px;
	}

	.dmp-support__title {
		font-size: 28px;
		line-height: 1.16;
	}

	.dmp-support-card {
		min-height: 300px;
		padding: 34px 22px 28px;
	}

	.dmp-support-card__icon {
		margin-bottom: 56px;
	}
}

/* ==========================================================
 * DAMPAK FEATURED SECTORS
 * ========================================================== */
.dmp-sectors,
.dmp-sectors *,
.dmp-sectors *::before,
.dmp-sectors *::after {
	box-sizing: border-box;
}

.dmp-sectors {
	--dmp-sectors-accent: #ccd74d;
	--dmp-sectors-bg: #ffffff;
	--dmp-sectors-text: #111111;
	--dmp-sectors-muted: #5f6368;
	--dmp-sectors-line: rgba(0, 0, 0, 0.1);

	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--dmp-sectors-bg);
	color: var(--dmp-sectors-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dmp-sectors__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 76px 0 82px;
}

.dmp-sectors__head {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.78fr);
	align-items: end;
	gap: 42px;
	margin-bottom: 38px;
}

.dmp-sectors__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	color: var(--dmp-sectors-accent);
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.dmp-sectors__eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--dmp-sectors-accent);
}

.dmp-sectors__title {
	margin: 0;
	color: var(--dmp-sectors-text);
	font-size: 42px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dmp-sectors__desc {
	margin: 0;
	color: var(--dmp-sectors-muted);
	font-size: 15px;
	line-height: 1.75;
	font-weight: 500;
}

.dmp-sectors__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.dmp-sector-card {
	position: relative;
	min-height: 330px;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.78fr);
	border: 1px solid var(--dmp-sectors-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dmp-sector-card::before {
	content: none;
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 0%, rgba(204, 215, 77, 0.14), transparent 38%);
	pointer-events: none;
}

.dmp-sector-card:hover {
	transform: translateY(-4px);
	border-color: rgba(204, 215, 77, 0.6);
	box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.dmp-sector-card__content {
	position: relative;
	z-index: 1;
	padding: 34px 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.dmp-sector-card__title {
	margin: 0 0 14px;
	color: var(--dmp-sectors-text);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 0;
}

.dmp-sector-card__text {
	margin: 0 0 20px;
	color: var(--dmp-sectors-muted);
	font-size: 14px;
	line-height: 1.65;
	font-weight: 500;
}

.dmp-sector-card__groups {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: auto 0 24px;
}

.dmp-sector-card__groups a {
	display: inline-flex;
	padding: 7px 10px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	background: #f6f7f3;
	color: #242712;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.dmp-sector-card__groups a:hover,
.dmp-sector-card__groups a:focus {
	background: var(--dmp-sectors-accent);
	border-color: var(--dmp-sectors-accent);
	color: #0a0a0a;
}

.dmp-sector-card__media {
	position: relative;
	display: block;
	min-height: 100%;
	background:
		radial-gradient(circle at 50% 50%, rgba(204, 215, 77, 0.2), transparent 42%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	overflow: hidden;
	text-decoration: none;
}

.dmp-sector-card__media::after {
	content: "";
	position: absolute;
	left: -44px;
	bottom: -80px;
	width: 155px;
	height: 220px;
	background: rgba(255, 255, 255, 0.06);
	transform: rotate(12deg);
}

.dmp-sector-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.95) contrast(1.05);
	transition: transform 0.24s ease;
}

.dmp-sector-card:hover .dmp-sector-card__media img {
	transform: scale(1.045);
}

.dmp-sector-card__media span {
	width: 100%;
	height: 100%;
	min-height: 330px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dmp-sectors-accent);
	font-size: 72px;
	line-height: 1;
	font-weight: 800;
}

@media (max-width: 1100px) {
	.dmp-sectors__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.dmp-sectors__inner {
		padding: 58px 0 64px;
	}

	.dmp-sectors__head {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 16px;
	}

	.dmp-sectors__title {
		font-size: 34px;
	}
}

@media (max-width: 640px) {
	.dmp-sectors__title {
		font-size: 28px;
	}

	.dmp-sector-card {
		grid-template-columns: 1fr;
	}

	.dmp-sector-card__content {
		padding: 28px 22px;
	}

	.dmp-sector-card__media {
		min-height: 220px;
		order: -1;
	}

	.dmp-sector-card__media span {
		min-height: 220px;
	}
}
