.dst-rep {
	--dst-rep-navy: #0B1528;
	--dst-rep-blue: #2552E4;
	--dst-rep-yellow: #FFC107;
	--dst-rep-text: #4B5563;
	--dst-rep-surface-bg: #F8FAFC;
	--dst-rep-surface-border: #D7E2EF;
	--dst-rep-surface-radius: 26px;
	--dst-rep-container-max: 1200px;
	--dst-rep-header-max: 850px;
	--dst-rep-header-mb: 46px;
	--dst-rep-grid-max: 1200px;
	--dst-rep-columns: 3;
	--dst-rep-grid-gap: 24px;
	--dst-rep-card-radius: 22px;
	--dst-rep-card-min-height: 260px;
	--dst-rep-card-lift: -8px;
	--dst-rep-card-title-hover: #2552E4;
	--dst-rep-icon-box: 58px;
	--dst-rep-icon-size: 24px;
	--dst-rep-icon-radius: 16px;
	--dst-rep-icon-mb: 22px;
	--dst-rep-badge-radius: 999px;
	--dst-rep-glow-yellow: rgba(255, 193, 7, .18);
	--dst-rep-glow-blue: rgba(37, 82, 228, .08);
	position: relative;
	padding: 40px 15px;
	font-family: inherit;
	isolation: isolate;
}

.dst-rep,
.dst-rep * {
	box-sizing: border-box;
}

.dst-rep__surface {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 60px 30px;
	border-radius: var(--dst-rep-surface-radius);
	background:
		radial-gradient(circle at top right, var(--dst-rep-glow-yellow), transparent 24%),
		radial-gradient(circle at bottom left, var(--dst-rep-glow-blue), transparent 28%),
		var(--dst-rep-surface-bg);
	border: 1px solid var(--dst-rep-surface-border);
	overflow: hidden;
}

.dst-rep__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--dst-rep-container-max);
	margin: 0 auto;
}

.dst-rep__bg-layer {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.dst-rep__orb {
	position: absolute;
	border-radius: 999px;
	filter: blur(32px);
	opacity: .72;
	animation: dstRepFloat 15s ease-in-out infinite;
}

.dst-rep__orb--1 {
	width: 260px;
	height: 260px;
	top: -90px;
	right: -70px;
	background: radial-gradient(circle, rgba(255, 193, 7, .22), rgba(255, 193, 7, .05) 58%, transparent 74%);
}

.dst-rep__orb--2 {
	width: 300px;
	height: 300px;
	left: -90px;
	bottom: -100px;
	background: radial-gradient(circle, rgba(37, 82, 228, .14), rgba(37, 82, 228, .04) 58%, transparent 74%);
	animation-delay: -6s;
}

.dst-rep__bg-grid {
	position: absolute;
	inset: 0;
	opacity: .22;
	background-image:
		linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: radial-gradient(circle at center, black 35%, transparent 86%);
	-webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 86%);
}

.dst-rep--no-bg-effects .dst-rep__bg-layer {
	display: none;
}

@keyframes dstRepFloat {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

.dst-rep__header {
	width: 100%;
	max-width: var(--dst-rep-header-max);
	margin: 0 auto var(--dst-rep-header-mb);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.dst-rep__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0 0 18px;
	padding: 0;
	border-radius: var(--dst-rep-badge-radius);
	background: transparent;
	color: var(--dst-rep-navy);
	font-size: clamp(.76rem, .73rem + .18vw, .88rem);
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: .08em;
	text-transform: uppercase;
	box-shadow: none;
}

.dst-rep__badge::before {
	content: "";
	width: 10px;
	height: 10px;
	flex: 0 0 10px;
	border-radius: 50%;
	background: var(--dst-rep-yellow);
	box-shadow: 0 0 0 6px rgba(255, 193, 7, .16);
}

.dst-rep__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dst-rep-yellow);
	font-size: 1em;
	line-height: 1;
}

.dst-rep__badge-icon svg,
.dst-rep-card__icon svg {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
}

.dst-rep__badge-icon svg path,
.dst-rep-card__icon svg path {
	fill: currentColor;
}

.dst-rep__badge-icon i,
.dst-rep-card__icon i {
	color: inherit;
}

.dst-rep__title {
	margin: 0 0 16px;
	color: var(--dst-rep-navy);
	font-size: clamp(2rem, 1.45rem + 2vw, 3.5rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -.03em;
}

.dst-rep__title span {
	color: var(--dst-rep-blue);
}

.dst-rep__desc {
	max-width: 800px;
	margin: 0;
	color: var(--dst-rep-text);
	font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
	line-height: 1.8;
}

.dst-rep__grid {
	width: 100%;
	max-width: var(--dst-rep-grid-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(var(--dst-rep-columns), minmax(0, 1fr));
	gap: var(--dst-rep-grid-gap);
	align-items: stretch;
}

.dst-rep-card {
	position: relative;
	min-width: 0;
	min-height: var(--dst-rep-card-min-height);
	padding: 34px 26px;
	border-radius: var(--dst-rep-card-radius);
	background: #fff;
	border: 1px solid rgba(226, 232, 240, .95);
	box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
	will-change: transform;
}

.dst-rep-card:hover {
	transform: translate3d(0, var(--dst-rep-card-lift), 0);
	box-shadow: 0 24px 52px rgba(37, 82, 228, .11);
	border-color: rgba(37, 82, 228, .22);
}

.dst-rep--reveal .dst-rep-card.dst-rep-reveal:hover,
body.elementor-editor-active .dst-rep--reveal .dst-rep-card.dst-rep-reveal:hover {
	transform: translate3d(0, var(--dst-rep-card-lift), 0);
}

.dst-rep-card__icon {
	width: var(--dst-rep-icon-box);
	height: var(--dst-rep-icon-box);
	margin-bottom: var(--dst-rep-icon-mb);
	border-radius: var(--dst-rep-icon-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 82, 228, .08);
	color: var(--dst-rep-blue);
	font-size: var(--dst-rep-icon-size);
	line-height: 1;
	transition: transform .28s ease, background-color .28s ease, color .28s ease;
}

.dst-rep-card:hover .dst-rep-card__icon {
	background: var(--dst-rep-blue);
	color: #fff;
	transform: scale(1.06) rotate(-5deg);
}

.dst-rep-card__title {
	margin: 0 0 12px;
	color: var(--dst-rep-navy);
	font-size: clamp(1.18rem, 1.06rem + .48vw, 1.38rem);
	font-weight: 900;
	line-height: 1.25;
	transition: color .25s ease;
}

.dst-rep-card:hover .dst-rep-card__title,
.dst-rep-card__title-link:hover {
	color: var(--dst-rep-card-title-hover);
}

.dst-rep-card__title-link {
	color: inherit;
	text-decoration: none;
}

.dst-rep-card__title-link:focus-visible {
	outline: 3px solid rgba(37, 82, 228, .35);
	outline-offset: 4px;
	border-radius: 8px;
}

.dst-rep-card__desc {
	margin: 0;
	color: var(--dst-rep-text);
	font-size: .96rem;
	line-height: 1.75;
}

.dst-rep-reveal {
	opacity: 1;
	transform: none;
}

.dst-rep--reveal .dst-rep-reveal {
	opacity: 0;
	transform: translateY(28px);
}

.dst-rep--reveal .dst-rep-card.dst-rep-reveal {
	transform: none;
}

.dst-rep--reveal.dst-is-visible .dst-rep-reveal,
body.elementor-editor-active .dst-rep--reveal .dst-rep-reveal {
	animation: dstRepReveal .78s cubic-bezier(.22, 1, .36, 1) forwards;
	animation-delay: var(--anim-delay, 0s);
}

.dst-rep--reveal.dst-is-visible .dst-rep-card.dst-rep-reveal,
body.elementor-editor-active .dst-rep--reveal .dst-rep-card.dst-rep-reveal {
	animation-name: dstRepCardReveal;
}

@keyframes dstRepReveal {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes dstRepCardReveal {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media (max-width: 1024px) {
	.dst-rep {
		--dst-rep-columns: 2;
		padding: 30px 15px;
	}
	.dst-rep__surface {
		padding: 50px 25px;
	}
}

@media (max-width: 767px) {
	.dst-rep {
		--dst-rep-columns: 1;
		padding: 20px 10px;
	}
	.dst-rep__surface {
		padding: 40px 15px;
	}
	.dst-rep-card {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dst-rep__orb,
	.dst-rep-reveal,
	.dst-rep-card,
	.dst-rep-card__icon {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}
