/* Healthcare Insights page */

.insights-page {
	padding: 120px 0;
}

.insights-intro {
	padding: 0 0 10px;
}

.insights-page-charts {
	padding-top: 0;
}

.insights-testimonials {
	padding-bottom: 0;
}

.insights-geography {
	padding: 80px 0 60px;
}

.insights-geography .insights-section-header {
	margin-bottom: 40px;
}

/* Insights facts section */
.our-facts {
	padding: 120px 0;
}

.fact-item {
	position: relative;
	min-height: 325px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	gap: 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.fact-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.fact-item:hover::before {
	height: 100%;
}

.fact-item-header {
	position: relative;
	gap: 20px;
	z-index: 1;
}

.fact-item-counter-content h2 {
	font-size: 52px;
	line-height: 1em;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.fact-item-counter-content h3 {
	margin-top: 15px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.fact-item-header .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.fact-item:hover .fact-item-header .icon-box img {
	filter: brightness(0) invert(0);
}

.fact-item-content {
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	transition: all 0.3s ease-in-out;
	padding-top: 30px;
	z-index: 1;
}

.fact-item-content p {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
	margin: 0;
}

.fact-item:hover .fact-item-content {
	border-color: var(--divider-color);
}

.fact-item:hover .fact-item-content p,
.fact-item:hover .fact-item-counter-content h2,
.fact-item:hover .fact-item-counter-content h3 {
	color: var(--primary-color);
}

/* Text answers / testimonials */

.testimonial-slider .swiper-wrapper {
	cursor: grab;
}

.testimonial-slider .swiper-slide,
.testimonial-slider .swiper-wrapper,
.testimonial-slider .swiper,
.testimonial-slider {
	height: 100%;
}

.testimonial-item {
	min-height: 465px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	background: var(--white-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-item-quote {
	margin-bottom: 30px;
}

.testimonial-item-quote img {
	width: 100%;
	max-width: 60px;
}

.testimonial-item-content p {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.testimonial-item-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.testimonial-author-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-author-image figure {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.testimonial-author-initials {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-author-initials span {
	font-size: 16px;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
}

.testimonial-author-content {
	width: calc(100% - 65px);
}

.testimonial-author-content h2 {
	font-size: 20px;
}

.testimonial-author-content p {
	line-height: normal;
	margin: 5px 0 0 0;
}

.our-testimonial .section-footer-text {
	margin-top: 60px;
}

.insights-text-answers-empty {
	text-align: center;
	font-size: 16px;
	color: var(--text-color);
	margin: 0 0 20px;
}

.insights-highlight-row {
	margin-bottom: 50px;
}

.insight-stat-card {
	position: relative;
	background: var(--white-color);
	border-radius: 24px;
	padding: 32px 28px;
	height: 100%;
	margin-bottom: 24px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(8, 54, 59, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insight-stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #4ec9d8);
}

.insight-stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(8, 54, 59, 0.1);
}

.insight-stat-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	color: var(--accent-color);
	font-size: 22px;
	margin-bottom: 20px;
}

.insight-stat-value {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: var(--primary-color);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.insight-stat-suffix {
	font-size: 28px;
	font-weight: 600;
	color: var(--accent-color);
	margin-left: 2px;
}

.insight-stat-label {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 8px;
	line-height: 1.3em;
}

.insight-stat-desc {
	font-size: 14px;
	line-height: 1.5em;
	color: var(--text-color);
	margin: 0;
}

.insights-narrative-row {
	margin-bottom: 60px;
}

.insights-narrative-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.insight-narrative-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: linear-gradient(135deg, var(--primary-color) 0%, #0a4a52 100%);
	color: var(--white-color);
	border-radius: 20px;
	padding: 24px 26px;
}

.insight-narrative-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--accent-color);
}

.insight-narrative-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6em;
}

.insight-narrative-card strong {
	color: #7ee8f7;
	font-weight: 600;
}

.insights-section {
	margin-bottom: 30px;
}

.insights-section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
}

.insights-section-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent-color);
	background: var(--white-color);
	border-radius: 30px;
	padding: 8px 18px;
	margin-bottom: 14px;
}

.insights-section-header h2 {
	font-size: 36px;
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: -0.01em;
	margin-bottom: 12px;
	line-height: 1.2em;
}

.insights-section-header p {
	font-size: 16px;
	line-height: 1.5em;
	color: var(--text-color);
	margin: 0;
}

.insights-chart-row > [class*='col-'] {
	margin-bottom: 24px;
}

.insight-chart-card {
	background: var(--white-color);
	border-radius: 24px;
	padding: 28px 28px 24px;
	height: 100%;
	box-shadow: 0 10px 36px rgba(8, 54, 59, 0.05);
}

.insight-chart-card-featured {
	border: 2px solid rgba(0, 168, 188, 0.15);
}

.insight-chart-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 6px;
	line-height: 1.3em;
}

.insight-chart-meta {
	font-size: 13px;
	color: var(--text-color);
	margin-bottom: 22px;
	opacity: 0.85;
}

.insight-donut-wrap {
	position: relative;
	max-width: 260px;
	margin: 0 auto 16px;
	aspect-ratio: 1;
}

.insight-donut-wrap-lg {
	max-width: 280px;
}

.insight-donut-wrap-sm {
	max-width: 200px;
}

.insight-legend {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	justify-content: center;
}

.insight-legend-compact {
	gap: 8px 12px;
}

.insight-legend li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-color);
	line-height: 1.3em;
}

.insight-legend-swatch {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.insight-legend-value {
	font-weight: 600;
	color: var(--primary-color);
}

.insight-bar-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.insight-bar-list-compact {
	gap: 12px;
}

.insight-bar-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4px 12px;
	align-items: center;
}

.insight-bar-label {
	grid-column: 1 / -1;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-color);
	line-height: 1.35em;
}

.insight-bar-track {
	grid-column: 1;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
}

.insight-bar-fill {
	height: 100%;
	width: 0;
	border-radius: 20px;
	background: linear-gradient(90deg, var(--accent-color), #4ec9d8);
	transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.insight-bar-item:nth-child(2) .insight-bar-fill {
	background: linear-gradient(90deg, #0a6b78, var(--accent-color));
}

.insight-bar-item:nth-child(3) .insight-bar-fill {
	background: linear-gradient(90deg, var(--primary-color), #0a6b78);
}

.insight-bar-item:nth-child(4) .insight-bar-fill {
	background: linear-gradient(90deg, #4a8a94, var(--primary-color));
}

.insight-bar-item:nth-child(5) .insight-bar-fill {
	background: linear-gradient(90deg, #67787a, #4a8a94);
}

.insight-bar-percent {
	font-size: 14px;
	font-weight: 700;
	color: var(--accent-color);
	min-width: 38px;
	text-align: right;
}

.insights-cta {
	margin-top: 80px;
	text-align: center;
	background: linear-gradient(135deg, var(--primary-color) 0%, #0a4a52 100%);
	border-radius: 28px;
	padding: 50px 40px;
	color: var(--white-color);
}

.insights-cta h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 14px;
	color: var(--white-color);
	line-height: 1.2em;
}

.insights-cta p {
	font-size: 16px;
	line-height: 1.6em;
	max-width: 560px;
	margin: 0 auto 28px;
	opacity: 0.9;
}

.insights-cta .btn-default.btn-highlighted {
	background: var(--accent-color);
}

.insights-cta-row {
	margin-bottom: 30px;
}

.insights-footnote {
	text-align: center;
	font-size: 13px;
	color: var(--text-color);
	opacity: 0.8;
	margin: 0;
	line-height: 1.5em;
	padding-bottom: 60px;
}

.insights-empty {
	text-align: center;
	background: var(--white-color);
	border-radius: 28px;
	padding: 60px 40px;
	box-shadow: 0 12px 40px rgba(8, 54, 59, 0.06);
}

.insights-empty-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--secondary-color);
	color: var(--accent-color);
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.insights-empty h3 {
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.insights-empty p {
	font-size: 16px;
	line-height: 1.6em;
	max-width: 480px;
	margin: 0 auto 28px;
}

@media (max-width: 991px) {
	.insights-page {
		padding: 70px 0 60px;
	}

	.our-facts,
	.our-testimonial {
		padding: 60px 0;
	}

	.insights-geography {
		padding: 40px 0;
	}

	.fact-item {
		min-height: auto;
		border-radius: 20px;
		padding: 30px;
	}

	.fact-item-counter-content h2 {
		font-size: 40px;
	}

	.insights-section-header h2 {
		font-size: 30px;
	}

	.insight-stat-value {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.insight-stat-card {
		padding: 24px 22px;
	}

	.insights-cta {
		padding: 40px 24px;
	}

	.insights-cta h3 {
		font-size: 26px;
	}
}
