/* ══════════════════════════════════════════════
   CONTENT INTRO BLOCK
   ══════════════════════════════════════════════ */

/* ── SECTION ── */
.content-intro-section {
	padding: 58px 0;
	position: relative;
	/* overflow: hidden; */
}

.content-intro-section [data-dot-sphere] {
	left: 200px;
}

/* ── DOTS CANVAS ── */
#ci-canvas {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
@media (max-width: 991.98px) {
	#ci-canvas { display: none; }
}

/* ── CONTAINER ── */
.content-intro-section > .container {
	position: relative;
	z-index: 1;
}

/* ── INNER WRAPPER ── */
.content-intro-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 53px;
}
.content-intro-inner.has-background {
	background-color: var(--clr-primary);
	padding: 51px 15px;
	border-radius: 10px;
}

.content-intro-inner.has-background  .content-intro-eyebrow {
	color: var(--clr-white);
}

.content-intro-inner.has-background .content-intro-heading {
	color: var(--clr-black);
}

.content-intro-inner.has-background .separator {
	background-color: var(--clr-white);
}

.content-intro-inner.has-background .content-intro-body {
 	color: var(--clr-black);
}

/* ── HEADER GROUP (eyebrow + heading + separator) ── */
.content-intro-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

/* ── EYEBROW ── */
.content-intro-eyebrow {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--clr-primary);
	text-align: center;
	display: block;
}

/* ── HEADING ── */
.content-intro-heading {
	font-family: var(--font-main);
	font-size: 50px;
	font-weight: 700;
	line-height: 57px;
	letter-spacing: -1.86px;
	color: var(--clr-white);
	text-align: center;
	margin-bottom: 0;
	max-width: 780px;
}

/* ── BODY TEXT ── */
.content-intro-body {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	color: var(--clr-white);
	text-align: center;
	max-width: 800px;
	width: 100%;
}
.content-intro-body.unwrapped {
	max-width: 1044px;
}

.content-intro-body p {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 30px;
	font-size: 20px;
	font-weight: 300;
}

.content-intro-body p:last-child {
	margin-bottom: 0;
}

.content-intro-body strong,
.content-intro-body b {
	font-weight: 800;
}

.content-intro-body .clr-primary{
	color: var(--clr-primary);
}

.content-intro-body .ul-styled{
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.content-intro-body .ul-styled li{
	border: 1px solid #fff;
	padding: 13px 20px 13px 50px;
	text-align: left;
	border-radius: 15px;
	position: relative;
	margin-bottom: 12px;
	line-height: 1.3;
	background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
	overflow: hidden;
	z-index: 1;
}
.content-intro-body .ul-styled li:last-child{
	margin-bottom: 0;
}
.content-intro-body .ul-styled li::before{	
	content: '';
    position: absolute;
    top: 50%;
    left: 21px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #03CFFF;
    box-shadow: 0 0 12px #00D4FF;
    transform: translateY(-50%);
}
.content-intro-body .ul-styled li::after{
	content: '';
    background-image: url(dots-background.png);
    position: absolute;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    right: 0;
    top: 50%;
    width: 250px;
    height: 250px;
    transform: translateY(-50%);
    opacity: 0.7;
    z-index: -1;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 991.98px) {
	.content-intro-section { padding: 48px 0; }
	.content-intro-heading {
		font-size: 40px;
		line-height: 1.1;
		letter-spacing: -1px;
	}
}

@media (max-width: 767.98px) {
	.content-intro-section { padding: 40px 0; }
	.content-intro-inner { gap: 36px; }
	.content-intro-heading { font-size: 32px; }
	.content-intro-body { font-size: 18px; }
}

@media (max-width: 575.98px) {
	.content-intro-section { padding: 32px 0; }
	.content-intro-inner { gap: 28px; }
	.content-intro-header { gap: 20px; }
	.content-intro-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
		line-height: 1.15;
	}
	.content-intro-body { font-size: 16px; line-height: 26px; }
	.content-intro-body p { line-height: 26px; font-size: 16px; margin-bottom: 26px; }
}
